/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(4, 164, 76, 0.05) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(4, 164, 76, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 20px;
}

.header-cta {
    background-color: #04a44c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-left: 20px;
}

.header-cta:hover {
    background-color: #2b2f83;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000000;
    margin: 3px 0;
    transition: 0.3s;
}

.logo img {
    height: 150px;
    width: auto;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(4, 164, 76, 0.3), 0 0 40px rgba(43, 47, 131, 0.2);
    border-radius: 10px;
}

.logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(4, 164, 76, 0.5), 0 0 60px rgba(43, 47, 131, 0.4);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #04a44c;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2b2f83 0%, #04a44c 100%);
    color: white;
    padding: 100px 0 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #04a44c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2b2f83;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #fff;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #000000;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info-home {
    background-color: rgba(4, 164, 76, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 2rem;
    border: 1px solid rgba(4, 164, 76, 0.2);
}

.contact-info-home h4 {
    color: #2b2f83;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-info-home p {
    margin-bottom: 8px;
    color: #000000;
    font-size: 1rem;
}

.contact-info-home strong {
    color: #04a44c;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #000000;
}

.service-card p {
    color: #666;
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background-color: #fff;
}

.projects h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #000000;
}

.project-section {
    margin-bottom: 4rem;
}

.project-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #2b2f83;
    position: relative;
}

.project-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #04a44c, #2b2f83);
    border-radius: 2px;
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.projects-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.projects-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Breadcrumb Section */
.breadcrumb-section {
    position: relative;
    height: 500px;
    background-image: url('img/breadcram.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-overlay .container {
    text-align: center;
    color: white;
    z-index: 2;
}

.breadcrumb-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb-overlay .page-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Page Styles */
.page-style {
    padding: 80px 0;
    background-color: #fff;
}

.page-style h1 {
    text-align: center;
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
}

.page-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* About Page Styles */
.about-page {
    padding: 120px 0 80px;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #2b2f83;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-text h3 {
    color: #04a44c;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.about-text ul {
    margin-left: 20px;
    margin-bottom: 2rem;
}

.contact-info-about {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #04a44c;
}

.contact-info-about p {
    margin-bottom: 10px;
    color: #000000;
}

.contact-info-about strong {
    color: #2b2f83;
}

.about-text li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stats-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    border-radius: 10px;
}

.stats-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #2b2f83;
    margin-bottom: 10px;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

/* Services Page Styles */
.services-page {
    padding: 120px 0 80px;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-direction: row-reverse;
}

.service-detail img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.service-images {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.service-images img {
    flex: 1;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-content h2 {
    color: #2b2f83;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.service-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-content ul {
    margin-left: 20px;
}

.service-content li {
    margin-bottom: 8px;
    color: #333;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.equipment-item {
    text-align: left;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-3px);
}

.equipment-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.equipment-item p {
    margin: 0;
    color: #333;
    font-weight: 500;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.service-gallery img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.process-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    border-radius: 10px;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2b2f83, #04a44c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: #2b2f83;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-page {
    padding: 120px 0 80px;
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 4rem;
}

.contact-info h2 {
    color: #2b2f83;
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-item h3 {
    color: #04a44c;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form-section h2 {
    color: #2b2f83;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form select {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    margin-bottom: 15px;
}

.map-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    border-radius: 10px;
    text-align: center;
}

.map-section h2 {
    color: #000000;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

.map-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-info p {
    color: #666;
    margin-bottom: 10px;
}

.map-info strong {
    color: #2b2f83;
}

/* Projects Page Styles */
.projects-page {
    padding: 120px 0 80px;
    background-color: #fff;
}

.project-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.project-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    color: #2b2f83;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.project-info p {
    color: #666;
    line-height: 1.6;
}

.section-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Clients Section */
.clients {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.clients h2 {
    margin-bottom: 1rem;
    color: #000000;
    font-size: 2.5rem;
}

.clients p {
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.client-logo {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Social Media Section */
.social-media {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.social-media h2 {
    margin-bottom: 1rem;
    color: #000000;
    font-size: 2.5rem;
}

.social-media p {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2b2f83, #04a44c);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #000000;
}

.contact-content {
    display: flex;
    gap: 50px;
    align-items: start;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #000000;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background-color: #2b2f83;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #04a44c;
}

/* Footer */
footer {
    background-color: #000000;
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h5,
.footer-section h6 {
    color: #04a44c;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #cccccc;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #04a44c;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    margin-bottom: 15px;
    color: #cccccc;
}

.contact-info-list i {
    color: #04a44c;
    margin-right: 10px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright,
.footer-designer {
    font-size: 14px;
    color: #cccccc;
}

.footer-designer a {
    color: #04a44c;
    text-decoration: none;
    font-weight: 500;
}

.footer-designer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 50px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        flex-direction: column;
    }

    nav ul {
        display: none; /* Simple mobile menu - can be enhanced with JS */
    }

    .menu-toggle {
        display: flex;
    }

    .nav-active nav ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(4, 164, 76, 0.2);
    }

    .nav-active nav ul li {
        margin: 10px 0;
    }

    .header-cta {
        display: none; /* Hide on mobile, can be shown in mobile menu if needed */
    }

    .services-grid,
    .projects-gallery {
        grid-template-columns: 1fr;
    }

    /* Page specific responsive styles */
    .page-style h1 {
        font-size: 2.5rem;
    }

    .breadcrumb-section {
        height: 400px;
    }

    .breadcrumb-overlay h1 {
        font-size: 2.5rem;
    }

    .breadcrumb-overlay .page-intro {
        font-size: 1rem;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .service-detail {
        flex-direction: column;
        gap: 20px;
    }

    .service-detail:nth-child(even) {
        flex-direction: column;
    }

    .service-images {
        flex-direction: column;
    }

    .service-images img {
        height: 150px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}