:root {
    --primary-color: #5860a1;
    --secondary-color: #4facfe;
    --accent-color: #00f2fe;
    --text-color: #333;
    --light-bg: #f5f9fc;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-height: 60px; /* Adjust based on logo aspect ratio */
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.nav a:hover {
    color: var(--secondary-color);
}

.btn-contact {
    background: linear-gradient(135deg, var(--primary-color), #7b83c7);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(88, 96, 161, 0.3);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 96, 161, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    background: linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #25D366; /* WhatsApp Green */
    color: white;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.cta-button i {
    margin-right: 8px;
    font-size: 1.3rem;
    vertical-align: middle;
}

/* Animated Bubbles Background */
.hero-decorative .bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.2));
    backdrop-filter: blur(2px);
    animation: float 8s ease-in-out infinite;
}

.b1 { width: 300px; height: 300px; top: -50px; left: -100px; animation-delay: 0s; }
.b2 { width: 200px; height: 200px; bottom: 10%; right: -50px; animation-delay: 2s; }
.b3 { width: 150px; height: 150px; top: 20%; right: 15%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(88, 96, 161, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(88, 96, 161, 0.15);
    border-color: var(--primary-color);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Location Section */
.location {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f5f9fc, #ffffff);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item > i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 5px;
    width: 20px;
    text-align: center;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.info-item p, .info-item a {
    color: #666;
    font-size: 1.1rem;
}

.info-item a:hover {
    color: var(--primary-color);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 4px solid var(--white);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Floating Elephant */
.floating-elephant {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    width: 150px; /* Adjust size as needed */
    height: auto;
    pointer-events: none; /* Let clicks pass through if it covers something, but images usually need to be seen */
    /* If the user wants it to be interactive, remove pointer-events: none */
    animation: floatElephant 6s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

.floating-elephant img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes floatElephant {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    
    .nav {
        margin-top: 1rem;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-elephant {
        width: 100px;
        bottom: 10px;
        right: 10px;
    }
}
