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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Section */
.header-section {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 30px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Phone Number */
.phone-number {
    background: #f4a261;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.phone-number a {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.phone-number a:hover {
    color: #e63946;
}

.phone-icon {
    font-size: 1.2rem;
}

/* Language Switcher */
.language-switch {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
}

.language-switch a {
    color: #333;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

.language-switch a.active,
.language-switch a:hover {
    background: #2a9d8f;
    color: #fff;
}

/* Navigation Bar */
.navigation-bar {
    background: none;
}

.navigation-bar ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.navigation-bar ul li a {
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

.navigation-bar ul li a.active,
.navigation-bar ul li a:hover {
    background: #e63946;
    color: #fff;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #e63946, #f4a261);
    color: #fff;
    padding: 80px 30px;
    text-align: left;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    max-width: 50%;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f5f5f5;
}

.cta-button {
    display: inline-block;
    background: #2a9d8f;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #264653;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #264653;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Our Work Section */
.our-work-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.our-work-container h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #e63946;
}

.our-work-container p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.our-work-section .portfolio-samples {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.our-work-section .portfolio-item {
    max-width: 300px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.our-work-section .portfolio-item:hover {
    transform: translateY(-5px);
}

.our-work-section .portfolio-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.our-work-section .portfolio-item p {
    margin: 10px 0;
    font-size: 1.1em;
    color: #2a9d8f;
}

.our-work-section .view-more {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #2a9d8f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.our-work-section .view-more:hover {
    background-color: #264653;
}

/* Portfolio Section */
.portfolio-section {
    padding: 60px 30px;
    background: #f9f9f9;
    text-align: center;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.portfolio-section h1 {
    font-size: 2.5rem;
    color: #e63946;
    margin-bottom: 15px;
    text-align: center;
}

.portfolio-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
}

.portfolio-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.portfolio-item {
    width: 30%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    border-radius: 5px;
}

.portfolio-item h3 {
    margin-top: 15px;
    font-size: 1.5rem;
    color: #2a9d8f;
    text-align: center;
}

.portfolio-item p {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.portfolio-link {
    display: inline-block;
    color: #264653;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.portfolio-link:hover {
    color: #e63946;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #e63946, #f4a261);
    color: #fff;
    padding: 80px 30px;
    text-align: center;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-section h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f5f5f5;
}

/* Founder Section */
.founder-section {
    padding: 60px 30px;
    background: #fff;
}

.founder-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.founder-image {
    flex: 1;
}

.founder-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.founder-text {
    flex: 1;
}

.founder-text h2 {
    font-size: 2.5rem;
    color: #e63946;
    margin-bottom: 10px;
}

.founder-text h3 {
    font-size: 1.8rem;
    color: #2a9d8f;
    margin-bottom: 15px;
}

.founder-text p {
    font-size: 1.1rem;
    color: #666;
}

/* Mission Section */
.mission-section {
    padding: 60px 30px;
    background: #f9f9f9;
    text-align: center;
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
}

.mission-section h2 {
    font-size: 2.5rem;
    color: #e63946;
    margin-bottom: 40px;
}

.mission-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.mission-item {
    width: 30%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
}

.mission-item h3 {
    font-size: 1.5rem;
    color: #2a9d8f;
    margin-bottom: 10px;
}

.mission-item p {
    font-size: 1rem;
    color: #666;
}

/* Blog Section */
.blog-section {
    padding: 60px 30px;
    background: #fff;
    text-align: center;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-section h1 {
    font-size: 2.5rem;
    color: #e63946;
    margin-bottom: 40px;
}

.blog-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.blog-list li {
    margin-bottom: 15px;
}

.blog-list a {
    color: #264653;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-list a:hover {
    color: #e63946;
}

.blog-section p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 30px;
}

/* Blog Post Section */
.blog-post-section {
    padding: 60px 30px;
    background: #f9f9f9;
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.blog-post-section h1 {
    font-size: 2.5rem;
    color: #e63946;
    margin-bottom: 20px;
}

.blog-post-section h2 {
    font-size: 2rem;
    color: #2a9d8f;
    margin-top: 30px;
    margin-bottom: 15px;
}

.toc {
    list-style: none;
    margin: 20px 0;
    padding-left: 20px;
}

.toc li {
    margin-bottom: 10px;
}

.toc a {
    color: #264653;
    text-decoration: none;
    font-size: 1.1rem;
}

.toc a:hover {
    color: #e63946;
}

.blog-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
    text-align: justify;
}

.blog-content a {
    color: #264653;
    text-decoration: none;
    font-weight: 600;
}

.blog-content a:hover {
    color: #e63946;
}

/* Contact Section */
.contact-section {
    padding: 60px 30px;
    background: #f9f9f9;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h1 {
    font-size: 2.5rem;
    color: #e63946;
    margin-bottom: 15px;
}

.contact-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2a9d8f;
    outline: none;
}

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

.form-group.recaptcha-group {
    display: flex;
    justify-content: center;
}

.submit-button {
    background: #2a9d8f;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.submit-button:hover {
    background: #264653;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.success-message {
    display: none;
    color: #2a9d8f;
    margin-top: 15px;
    font-size: 1.1rem;
    text-align: center;
}

.error-message {
    display: none;
    color: #e63946;
    margin-top: 15px;
    font-size: 1.1rem;
    text-align: center;
}

/* Footer Section */
.footer-section {
    background: #333;
    color: #fff;
    padding: 40px 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-container h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #f4a261;
}

.footer-container p {
    font-size: 1rem;
    margin-bottom: 10px;
}

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

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

.footer-container ul li a {
    color: #2a9d8f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-container ul li a:hover {
    color: #264653;
}

.footer-contact a {
    color: #2a9d8f;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #264653;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 10px;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        position: relative;
    }

    .header-right {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 90px;
        left: 0;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        align-items: center;
    }

    .header-right.active {
        display: flex;
    }

    .navigation-bar ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .phone-number {
        margin-bottom: 15px;
        width: fit-content;
    }

    .language-switch {
        margin-bottom: 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-image img {
        max-width: 80%;
    }

    .portfolio-item {
        width: 90%;
    }

    .portfolio-grid {
        flex-direction: column;
        align-items: center;
    }

    .portfolio-section h1 {
        font-size: 2rem;
    }

    .portfolio-section p {
        font-size: 1.1rem;
    }

    .about-section h1 {
        font-size: 2.2rem;
    }

    .about-section p {
        font-size: 1.1rem;
    }

    .founder-container {
        flex-direction: column;
        text-align: center;
    }

    .founder-image img {
        max-width: 300px;
        margin: 0 auto 20px;
    }

    .founder-text h2 {
        font-size: 2rem;
    }

    .founder-text h3 {
        font-size: 1.5rem;
    }

    .mission-section h2 {
        font-size: 2rem;
    }

    .mission-item {
        width: 90%;
    }

    .blog-section h1 {
        font-size: 2rem;
    }

    .blog-list {
        max-width: 100%;
        padding: 0 20px;
    }

    .blog-post-section h1 {
        font-size: 2rem;
    }

    .blog-post-section h2 {
        font-size: 1.8rem;
    }

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

    .contact-section h1 {
        font-size: 2rem;
    }

    .contact-section p {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 20px;
    }

    /* Responsive Adjustments for Our Work Section */
    .our-work-section .portfolio-item {
        width: 90%;
    }

    .our-work-container h2 {
        font-size: 2rem;
    }

    .our-work-container p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }

    .phone-number a {
        font-size: 1rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image img {
        max-width: 100%;
    }

    .portfolio-item {
        width: 100%;
    }

    .portfolio-section h1 {
        font-size: 1.8rem;
    }

    .portfolio-section p {
        font-size: 1rem;
    }

    .about-section h1 {
        font-size: 1.8rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .founder-image img {
        max-width: 250px;
    }

    .founder-text h2 {
        font-size: 1.8rem;
    }

    .founder-text h3 {
        font-size: 1.3rem;
    }

    .founder-text p {
        font-size: 1rem;
    }

    .mission-section h2 {
        font-size: 1.8rem;
    }

    .mission-item {
        width: 100%;
    }

    .blog-section h1 {
        font-size: 1.8rem;
    }

    .blog-list a {
        font-size: 1.1rem;
    }

    .blog-post-section h1 {
        font-size: 1.8rem;
    }

    .blog-post-section h2 {
        font-size: 1.5rem;
    }

    .contact-section h1 {
        font-size: 1.8rem;
    }

    .contact-section p {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 10px;
    }

    .submit-button {
        font-size: 1.1rem;
        padding: 12px 25px;
    }

    /* Responsive Adjustments for Our Work Section */
    .our-work-section .portfolio-item {
        width: 100%;
    }

    .our-work-container h2 {
        font-size: 1.8rem;
    }

    .our-work-container p {
        font-size: 1rem;
    }
}