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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2D9B8B, #26A69A);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 155, 139, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 155, 139, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #8E24AA, #AB47BC);
    color: white;
    box-shadow: 0 4px 15px rgba(142, 36, 170, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 36, 170, 0.4);
}

.btn-tertiary {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-tertiary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    font-weight: 700;
    color: #2D9B8B;
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2D9B8B;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-buttons .btn {
    padding: 8px 16px;
    font-size: 12px;
}

.language-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: #2D9B8B;
    color: white;
    border-color: #2D9B8B;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
    margin-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hero-bg-final.jpg') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 155, 139, 0.8), rgba(142, 36, 170, 0.6));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 60px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-location {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.9;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero.hero-tagline {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 20px;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.3s both;
}t 0.hero-mission {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 500;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.5s both;
}-mission {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
    margin-top: 30px;
    padding-bottom: 40px;
}

/* About Section */
.about {
    padding: 40px 0;
    background: #f8f9fa;
    margin-top: 0;
}

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

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
    font-weight: 500;
}

.about-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.about-vision {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
    font-style: italic;
}

.about-subtitle {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
}

.about-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-item i {
    color: #2D9B8B;
    font-size: 1.2rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 30px 0;
    background: white;
}

.services-intro {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #666;
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-category {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-subtitle {
    font-size: 1.5rem;
    color: #2D9B8B;
    margin: 20px 0 12px;
    font-weight: 600;
}

.service-category-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 20px;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2D9B8B, #26A69A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #8E24AA, #AB47BC);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 30px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-contact {
    margin-top: 10px;
}

.footer-contact-title {
    font-size: 1.2rem;
    color: #2D9B8B;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-contact-item {
    color: #ccc;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-contact-item a {
    color: #2D9B8B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #26A69A;
}

.footer-right-title {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-location {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-location i {
    color: #2D9B8B;
    margin-right: 8px;
}

.footer-social {
    margin-top: 15px;
}

.footer-social-title {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2D9B8B;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link i {
    color: white;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
    font-size: 0.9rem;
}

.website-builder {
    color: #2D9B8B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.website-builder:hover {
    color: #26A69A;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-category {
        padding: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-left,
    .footer-right {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Logo Styles */
.logo-img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 8px;
}

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

.footer-logo-img {
    height: 100px;
    width: auto;
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-title {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
}

.contact-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-text {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
}

.contact-text a {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #44a08d;
    text-decoration: underline;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-item {
        padding: 30px 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Mobile Logo Adjustments */
@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }
    
    .footer-logo-img {
        height: 60px;
    }
}


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

.contact-header {
    margin: 20px 0 30px;
}

.contact-company {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-locations {
    font-size: 1.3rem;
    color: #2D9B8B;
    letter-spacing: 2px;
    font-weight: 400;
}

.contact-info {
    margin: 20px 0 40px;
}

.contact-email,
.contact-phones {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 10px;
}

.contact-email a,
.contact-phones a {
    color: #2D9B8B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover,
.contact-phones a:hover {
    color: #26A69A;
}

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

.contact-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Footer Updates */
.footer-tagline {
    font-size: 1.2rem;
    color: #ccc;
    font-style: italic;
    margin-bottom: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: left;
}

.footer-contact {
    margin-top: 0;
}

.footer-contact-title {
    font-size: 1.5rem;
    color: #2D9B8B;
    margin-bottom: 15px;
}

.footer-company {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.footer-location {
    font-size: 1rem;
    color: #ccc;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.footer-email,
.footer-phones {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 8px;
}

.footer-email a,
.footer-phones a {
    color: #2D9B8B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email a:hover,
.footer-phones a:hover {
    color: #26A69A;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: #999;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .contact-company {
        font-size: 1.5rem;
    }
    
    .contact-locations {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-left,
    .footer-right {
        text-align: center;
    }
    
    .footer-contact-title {
        font-size: 1.3rem;
    }
    
    .footer-company {
        font-size: 1.1rem;
    }
}

