<<<<<<< HEAD
/* Argeo Datum Website Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Variables for Argeo Datum Brand Colors */
:root {
    --argeo-blue: #2963A5;
    --argeo-green: #45CE17;
    --argeo-black: #3F4044;
    --black-lava: #36393E;
    --pure-black: #000000;
    --neutral-white: #FFFFFF;
    --light-gray: #F7F7F7;
    --medium-gray: #E0E0E0;
    --argeo-green-hover: rgba(69, 206, 23, 0.75);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip Links for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--argeo-blue);
    color: var(--neutral-white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black-lava);
    background-color: var(--neutral-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img, video {
    max-width: 100%;
    height: auto;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--black-lava);
    color: var(--neutral-white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--neutral-white);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--argeo-green);
}

/* Header */
.main-header {
    background-color: var(--argeo-blue);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--neutral-white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--argeo-green);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--neutral-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--black-lava);
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--argeo-blue);
}

.cta-button {
    background-color: var(--argeo-green);
    color: var(--neutral-white);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--argeo-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(69, 206, 23, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(41, 67, 101, 0.7), rgba(41, 67, 101, 0.7)), url('images/20230324_122632.jpg') center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background-attachment: fixed;
}

.hero-content {
    text-align: center;
    color: var(--neutral-white);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn.primary {
    background-color: var(--argeo-green);
    color: var(--neutral-white);
}

.btn.primary:hover {
    background-color: var(--argeo-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(69, 206, 23, 0.3);
}

.btn.secondary {
    background-color: transparent;
    color: var(--neutral-white);
    border: 2px solid var(--neutral-white);
}

.btn.secondary:hover {
    background-color: var(--neutral-white);
    color: var(--argeo-blue);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 36px;
    color: var(--argeo-blue);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--black-lava);
}

.values {
    list-style: none;
    padding: 0;
}

.values li {
    margin-bottom: 15px;
    font-size: 16px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--neutral-white);
}

.services-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--argeo-blue);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--neutral-white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 48px;
    color: var(--argeo-green);
    margin-bottom: 15px;
}

.service-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    color: var(--argeo-blue);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: var(--black-lava);
    margin-bottom: 20px;
}

.learn-more {
    color: var(--argeo-green);
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--argeo-blue);
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.projects-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--argeo-blue);
    margin-bottom: 50px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: var(--neutral-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card h3 {
    font-size: 20px;
    color: var(--argeo-blue);
    margin: 20px 20px 10px;
}

.project-card p {
    font-size: 16px;
    color: var(--black-lava);
    margin: 0 20px 20px;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--neutral-white);
}

.why-choose-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--argeo-blue);
    margin-bottom: 50px;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight {
    text-align: center;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 36px;
    color: var(--argeo-green);
    margin-bottom: 15px;
}

.highlight h3 {
    font-size: 20px;
    color: var(--argeo-blue);
    margin-bottom: 15px;
}

.highlight p {
    font-size: 16px;
    color: var(--black-lava);
}

/* Training Section */
.training-section {
    padding: 80px 0;
    background: linear-gradient(rgba(69, 206, 23, 0.9), rgba(69, 206, 23, 0.9)), url('images/20220617_064332.jpg') center/cover;
    color: var(--neutral-white);
    text-align: center;
}

.training-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.training-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: var(--neutral-white);
}

.blog-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--argeo-blue);
    margin-bottom: 50px;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.post-card {
    background-color: var(--neutral-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card h3 {
    font-size: 20px;
    color: var(--argeo-blue);
    margin: 20px 20px 10px;
}

.post-card p {
    font-size: 16px;
    color: var(--black-lava);
    margin: 0 20px 20px;
}

.read-more {
    display: inline-block;
    color: var(--argeo-green);
    font-weight: 600;
    margin: 0 20px 20px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--argeo-blue);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--argeo-blue);
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background-color: var(--argeo-green);
    color: var(--neutral-white);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--argeo-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(69, 206, 23, 0.3);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.map iframe {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    border: none;
}

/* Footer */
footer {
    background-color: var(--black-lava);
    color: var(--neutral-white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: var(--argeo-green);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul a {
    color: var(--medium-gray);
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--argeo-green);
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid var(--medium-gray);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Responsive Design */

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .blog-posts {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .about-content {
        gap: 40px;
    }

    .contact-content {
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Laptop Styles */
@media (min-width: 1024px) and (max-width: 1440px) {
    .container {
        max-width: 1100px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 22px;
    }

    .services-section h2,
    .projects-section h2,
    .blog-section h2,
    .contact-section h2,
    .why-choose-section h2,
    .about-text h2 {
        font-size: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-posts {
        grid-template-columns: repeat(3, 1fr);
    }

    .highlights {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-content p {
        font-size: 24px;
    }

    .services-section h2,
    .projects-section h2,
    .blog-section h2,
    .contact-section h2,
    .why-choose-section h2,
    .about-text h2 {
        font-size: 44px;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .blog-posts {
        grid-template-columns: repeat(4, 1fr);
    }

    .highlights {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-section {
        height: 90vh;
    }

    .about-image img,
    .project-card img,
    .post-card img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .top-bar {
        padding: 8px 0;
        font-size: 14px;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .main-header {
        padding: 20px 0;
    }

    .main-header .container {
        flex-direction: column;
        gap: 20px;
    }

    .logo img {
        height: 45px;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        gap: 20px;
    }

    .btn {
        padding: 15px 25px;
        font-size: 16px;
        min-height: 48px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 17px;
        line-height: 1.7;
    }

    .services-section,
    .projects-section,
    .blog-section,
    .contact-section,
    .why-choose-section {
        padding: 60px 0;
    }

    .services-section h2,
    .projects-section h2,
    .blog-section h2,
    .contact-section h2,
    .why-choose-section h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .service-card,
    .project-card,
    .post-card,
    .highlight {
        padding: 25px;
        margin-bottom: 20px;
    }

    .service-card img,
    .project-card img,
    .post-card img {
        height: 180px;
    }

    .services-grid,
    .projects-grid,
    .blog-posts,
    .highlights {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
        padding: 12px;
    }

    .contact-form button {
        padding: 15px 25px;
        font-size: 16px;
        min-height: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-logo {
        height: 40px;
    }

    .footer-bottom {
        padding-top: 15px;
    }
=======
/* Argeo Datum Website Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Variables for Argeo Datum Brand Colors */
:root {
    --argeo-blue: #2963A5;
    --argeo-green: #45CE17;
    --argeo-black: #3F4044;
    --black-lava: #36393E;
    --pure-black: #000000;
    --neutral-white: #FFFFFF;
    --light-gray: #F7F7F7;
    --medium-gray: #E0E0E0;
    --argeo-green-hover: rgba(69, 206, 23, 0.75);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black-lava);
    background-color: var(--neutral-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--black-lava);
    color: var(--neutral-white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--neutral-white);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--argeo-green);
}

/* Header */
.main-header {
    background-color: var(--argeo-blue);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--neutral-white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--argeo-green);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--neutral-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--black-lava);
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--argeo-blue);
}

.cta-button {
    background-color: var(--argeo-green);
    color: var(--neutral-white);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--argeo-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(69, 206, 23, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(41, 67, 101, 0.7), rgba(41, 67, 101, 0.7)), url('images/20230324_122632.jpg') center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background-attachment: fixed;
}

.hero-content {
    text-align: center;
    color: var(--neutral-white);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn.primary {
    background-color: var(--argeo-green);
    color: var(--neutral-white);
}

.btn.primary:hover {
    background-color: var(--argeo-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(69, 206, 23, 0.3);
}

.btn.secondary {
    background-color: transparent;
    color: var(--neutral-white);
    border: 2px solid var(--neutral-white);
}

.btn.secondary:hover {
    background-color: var(--neutral-white);
    color: var(--argeo-blue);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 36px;
    color: var(--argeo-blue);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--black-lava);
}

.values {
    list-style: none;
    padding: 0;
}

.values li {
    margin-bottom: 15px;
    font-size: 16px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--neutral-white);
}

.services-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--argeo-blue);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--neutral-white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 48px;
    color: var(--argeo-green);
    margin-bottom: 15px;
}

.service-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    color: var(--argeo-blue);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: var(--black-lava);
    margin-bottom: 20px;
}

.learn-more {
    color: var(--argeo-green);
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--argeo-blue);
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.projects-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--argeo-blue);
    margin-bottom: 50px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: var(--neutral-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card h3 {
    font-size: 20px;
    color: var(--argeo-blue);
    margin: 20px 20px 10px;
}

.project-card p {
    font-size: 16px;
    color: var(--black-lava);
    margin: 0 20px 20px;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--neutral-white);
}

.why-choose-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--argeo-blue);
    margin-bottom: 50px;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight {
    text-align: center;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 36px;
    color: var(--argeo-green);
    margin-bottom: 15px;
}

.highlight h3 {
    font-size: 20px;
    color: var(--argeo-blue);
    margin-bottom: 15px;
}

.highlight p {
    font-size: 16px;
    color: var(--black-lava);
}

/* Training Section */
.training-section {
    padding: 80px 0;
    background: linear-gradient(rgba(69, 206, 23, 0.9), rgba(69, 206, 23, 0.9)), url('images/20220617_064332.jpg') center/cover;
    color: var(--neutral-white);
    text-align: center;
}

.training-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.training-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: var(--neutral-white);
}

.blog-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--argeo-blue);
    margin-bottom: 50px;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.post-card {
    background-color: var(--neutral-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card h3 {
    font-size: 20px;
    color: var(--argeo-blue);
    margin: 20px 20px 10px;
}

.post-card p {
    font-size: 16px;
    color: var(--black-lava);
    margin: 0 20px 20px;
}

.read-more {
    display: inline-block;
    color: var(--argeo-green);
    font-weight: 600;
    margin: 0 20px 20px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--argeo-blue);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--argeo-blue);
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background-color: var(--argeo-green);
    color: var(--neutral-white);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--argeo-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(69, 206, 23, 0.3);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.map iframe {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    border: none;
}

/* Footer */
footer {
    background-color: var(--black-lava);
    color: var(--neutral-white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: var(--argeo-green);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul a {
    color: var(--medium-gray);
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--argeo-green);
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid var(--medium-gray);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .main-header .container {
        flex-direction: column;
        gap: 20px;
    }

    .services-grid,
    .projects-grid,
    .blog-posts,
    .highlights {
        grid-template-columns: 1fr;
    }
>>>>>>> 17eceb4c43f1ee72d35d7c1d78c594c26436104a
}