:root {
    --primary-color: #3D5AFE; /* Royal blue */
    --secondary-color: #A8E6CF; /* Mint green */
    --accent-color: #FFD3B6; /* Sunny yellow */
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif; /* Clean, modern body text */
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif; /* Friendly, rounded headings */
    font-weight: 700;
}

.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--text-dark) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2a41cc;
    border-color: #2a41cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 90, 254, 0.4);
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-dark);
    font-weight: 600;
}

.btn-accent:hover {
    background-color: #ffc299;
    border-color: #ffc299;
    transform: translateY(-2px);
}

/* Navbar */
.navbar-brand { font-size: 1.5rem; }

.nav-link {
    color: var(--text-dark);
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
    margin: 0 5px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(168, 230, 207, 0.4) 0%, rgba(255, 211, 182, 0.4) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-img-container {
    position: relative;
    z-index: 2;
}

.hero-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
    mix-blend-mode: multiply; /* Ensures any remaining white background becomes completely transparent against the background */
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Header Blob behind image */
.blob-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background-color: var(--accent-color);
    opacity: 0.5;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

/* Wavy Divider */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 10;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.custom-shape-divider-bottom .shape-fill { fill: #FFFFFF; }
.custom-shape-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}
.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}
.custom-shape-divider-top .shape-fill { fill: #FFFFFF; }


/* Service Cards */
.services-section {
    padding: 80px 0;
}

.service-card {
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 30px 20px;
}

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

.service-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.icon-blue { background-color: rgba(61, 90, 254, 0.1); color: var(--primary-color); }
.icon-green { background-color: rgba(168, 230, 207, 0.3); color: #2d9e71; }
.icon-yellow { background-color: rgba(255, 211, 182, 0.5); color: #e67a2a; }
.icon-purple { background-color: rgba(156, 39, 176, 0.1); color: #9c27b0; }

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

/* Sections */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(61, 90, 254, 0.1) 0%, rgba(168, 230, 207, 0.2) 100%);
    position: relative;
}

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

/* Decorative elements */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}
.deco-1 { width: 300px; height: 300px; background: rgba(255, 211, 182, 0.3); top: -100px; right: -100px; }
.deco-2 { width: 150px; height: 150px; background: rgba(168, 230, 207, 0.4); bottom: 50px; left: 10%; }


/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer elements */
.contact-box {
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .contact-box {
        top: -40px; /* pull up slightly over the previous section only on desktop */
    }
}
