@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primary-color: #418C73;
    --secondary-color: #2d6352;
    --light-bg: #f8f9fa;
}

body {
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand img {
    width: 80px;
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: #333 !important;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-get-started {
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-get-started:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(65, 140, 115, 0.3);
}

/* Slider Styles */
.carousel-item {
    height: 600px;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

/* About Section */
#about {
    background-color: var(--light-bg);
}

.about-content {
    padding-left: 30px;
}

.about-content .section-title {
    margin-bottom: 2rem;
    text-align: left;
}

.about-content .section-title::after {
    left: 0;
    transform: translateX(-0%);
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us Section */
.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Services Section */
#services {
    background-color: var(--light-bg);
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(65, 140, 115, 0.25);
}

.service-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(65, 140, 115, 0.1), rgba(65, 140, 115, 0.4));
    transition: opacity 0.4s;
}

.service-card:hover .service-img-wrapper::after {
    opacity: 0.8;
}

.service-content {
    padding: 2rem;
    text-align: center;
}

.service-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: #666;
    line-height: 1.7;
}

/* Customers Section */
.testimonial-card {
    background: #2c3e50;
    color: white;
    padding: 2.5rem;
    border-radius: 10px;
    position: relative;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.testimonial-position {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.service-list-card {
    background: var(--primary-color);
    color: white;
    padding: 2.5rem;
    border-radius: 10px;
    height: 100%;
}

.service-list-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.service-list-card ul {
    list-style: none;
    padding: 0;
}

.service-list-card li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.service-list-card li:last-child {
    border-bottom: none;
}

.service-list-card li:before {
    content: "•";
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

footer h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-color);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 50px 0;
    }
}


/* about us page sec */
.hero-section {
    background: linear-gradient(135deg, #418C73 0%, #2d6354 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    margin-top: 118px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.story-section {
    padding: 80px 0;
}

.story-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2d3748;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.values-section {
    background-color: #f7fafc;
    padding: 80px 0;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.value-card i {
    font-size: 3rem;
    color: #418C73;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3748;
}

.value-card p {
    color: #718096;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #418C73;
}

.team-member h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2d3748;
}

.team-member .position {
    color: #418C73;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-member p {
    color: #718096;
    font-size: 0.95rem;
}

.stats-section {
    background: linear-gradient(135deg, #418C73 0%, #2d6354 100%);
    color: white;
    padding: 60px 0;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-box h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
}

.cta-section p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 30px;
}

.btn-custom {
    background: linear-gradient(135deg, #418C73 0%, #2d6354 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(65, 140, 115, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .story-section h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .stat-box h3 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 60px 0 40px;
    }

    .story-section,
    .values-section,
    .team-section,
    .cta-section {
        padding: 50px 0;
    }
}

/* about us page sec */

/* services page section start */
.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #718096;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card-body {
    padding: 30px;
}

.service-card-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.service-card-body p {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0;
    color: #4a5568;
    font-size: 0.95rem;
}

.service-features li i {
    color: #418C73;
    margin-right: 10px;
    font-size: 0.9rem;
}

.btn-service {
    background-color: #418C73;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-service:hover {
    background-color: #2d6354;
    color: white;
}


@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }

    .service-card-img {
        height: 200px;
    }

    .cta-section {
        padding: 50px 0;
    }
}

/* services page section end */

/* tesimonial sec start */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: #418C73;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #418C73;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

.author-info .company {
    color: #418C73;
    font-weight: 500;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-box h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* tesimonial sec end */


/* careers page start */
.benefit-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #418C73;
    box-shadow: 0 10px 20px rgba(65, 140, 115, 0.15);
}

.benefit-card i {
    font-size: 3rem;
    color: #418C73;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

.job-openings-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.job-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border-left: 4px solid #418C73;
}

.job-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.job-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.job-meta span {
    font-size: 0.9rem;
    color: #718096;
}

.job-meta i {
    color: #418C73;
    margin-right: 5px;
}

.job-type {
    background: #418C73;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.job-description {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.skill-tag {
    background: #e6f4f1;
    color: #418C73;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-apply {
    background: #418C73;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-apply:hover {
    background: #2d6354;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(65, 140, 115, 0.3);
}

.culture-section {
    padding: 80px 0;
    background-color: #fff;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.culture-item {
    text-align: center;
}

.culture-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.culture-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.culture-item p {
    color: #718096;
    line-height: 1.6;
}

/* careers page end */

/* why page sec start */
.intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 25px;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
}

.reasons-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.reason-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.reason-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #418C73 0%, #2d6354 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.reason-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.reason-content p {
    color: #718096;
    line-height: 1.7;
    margin: 0;
}

/* why page sec end */

/* contact us page sec start */
.contact-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    font-weight: 700;
}

.contact-form-container {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.form-label {
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(65, 140, 115, 0.15);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(65, 140, 115, 0.3);
}

.btn-primary:active,
.btn-primary:focus {
    background: var(--primary-hover);
    box-shadow: 0 0 0 0.2rem rgba(65, 140, 115, 0.3);
}

.map-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* contact us page sec end */