/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #2d3748;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover {
    background-color: rgba(32, 178, 170, 0.1);
    color: #20b2aa;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.9) 0%, rgba(0, 139, 139, 0.9) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="800" fill="url(%23grid)"/><circle cx="200" cy="150" r="80" fill="rgba(255,255,255,0.05)"/><circle cx="1000" cy="200" r="120" fill="rgba(255,255,255,0.03)"/><circle cx="600" cy="600" r="100" fill="rgba(255,255,255,0.04)"/></svg>');
    background-size: cover, cover;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><g opacity="0.1"><circle cx="100" cy="100" r="3" fill="white"/><circle cx="300" cy="150" r="2" fill="white"/><circle cx="500" cy="80" r="4" fill="white"/><circle cx="800" cy="120" r="3" fill="white"/><circle cx="1000" cy="200" r="2" fill="white"/><circle cx="200" cy="300" r="3" fill="white"/><circle cx="600" cy="350" r="2" fill="white"/><circle cx="900" cy="400" r="4" fill="white"/><circle cx="150" cy="500" r="2" fill="white"/><circle cx="400" cy="550" r="3" fill="white"/><circle cx="700" cy="600" r="2" fill="white"/><circle cx="950" cy="650" r="3" fill="white"/></g></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><g opacity="0.15" fill="white"><path d="M50 50 L70 50 L70 70 L50 70 Z"/><path d="M150 100 L200 100 L200 120 L150 120 Z"/><path d="M300 80 L350 80 L350 100 L300 100 Z"/><path d="M500 120 L550 120 L550 140 L500 140 Z"/><path d="M800 100 L850 100 L850 120 L800 120 Z"/><path d="M1000 150 L1050 150 L1050 170 L1000 170 Z"/><path d="M100 300 L150 300 L150 320 L100 320 Z"/><path d="M400 350 L450 350 L450 370 L400 370 Z"/><path d="M700 400 L750 400 L750 420 L700 420 Z"/><path d="M950 450 L1000 450 L1000 470 L950 470 Z"/><path d="M200 600 L250 600 L250 620 L200 620 Z"/><path d="M600 650 L650 650 L650 670 L600 670 Z"/><path d="M900 700 L950 700 L950 720 L900 720 Z"/></g></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.4;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-icons i:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.floating-icons i:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icons i:nth-child(4) {
    top: 40%;
    right: 25%;
    animation-delay: 3s;
}

.floating-icons i:nth-child(5) {
    top: 70%;
    right: 10%;
    animation-delay: 4s;
}

.floating-icons i:nth-child(6) {
    top: 15%;
    left: 50%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,107,107,0.6);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><g opacity="0.03" fill="%2320b2aa"><circle cx="100" cy="100" r="20"/><circle cx="300" cy="200" r="15"/><circle cx="500" cy="150" r="25"/><circle cx="800" cy="100" r="18"/><circle cx="1000" cy="250" r="22"/><circle cx="200" cy="400" r="16"/><circle cx="600" cy="450" r="20"/><circle cx="900" cy="500" r="14"/><circle cx="150" cy="600" r="19"/><circle cx="400" cy="650" r="17"/><circle cx="700" cy="700" r="21"/><circle cx="950" cy="750" r="13"/></g></svg>') no-repeat center center;
    background-size: cover;
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #2d3748;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #20b2aa, #008b8b);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #20b2aa, #008b8b);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #2d3748;
    font-weight: 600;
}

.service-card p {
    color: #718096;
    line-height: 1.7;
    font-size: 1.1rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #20b2aa, #008b8b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.3);
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(32, 178, 170, 0.4);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><g opacity="0.02" fill="%2320b2aa"><path d="M50 50 L100 50 L100 100 L50 100 Z"/><path d="M200 100 L250 100 L250 150 L200 150 Z"/><path d="M400 80 L450 80 L450 130 L400 130 Z"/><path d="M600 120 L650 120 L650 170 L600 170 Z"/><path d="M800 90 L850 90 L850 140 L800 140 Z"/><path d="M1000 110 L1050 110 L1050 160 L1000 160 Z"/><path d="M150 300 L200 300 L200 350 L150 350 Z"/><path d="M350 320 L400 320 L400 370 L350 370 Z"/><path d="M550 300 L600 300 L600 350 L550 350 Z"/><path d="M750 330 L800 330 L800 380 L750 380 Z"/><path d="M950 310 L1000 310 L1000 360 L950 360 Z"/><path d="M100 500 L150 500 L150 550 L100 550 Z"/><path d="M300 520 L350 520 L350 570 L300 570 Z"/><path d="M500 500 L550 500 L550 550 L500 550 Z"/><path d="M700 530 L750 530 L750 580 L700 580 Z"/><path d="M900 510 L950 510 L950 560 L900 560 Z"/></g></svg>') no-repeat center center;
    background-size: cover;
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #2d3748;
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #20b2aa, #008b8b);
    border-radius: 2px;
}

.about p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 1.8rem;
    text-align: center;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #e2e8f0;
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: #cbd5e0;
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-details p {
    margin-bottom: 0.8rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.contact-details i {
    color: #ff6b6b;
    width: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    background-color: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #cbd5e0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    background-color: rgba(255,255,255,0.15);
}

.contact-form button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

/* Footer */
footer {
    background: #1a202c;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .services h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
