@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&display=swap');

:root {
    /* Brand Colors - Deep & Professional */
    --primary-color: #0ea5e9;
    /* Vivid Sky Blue */
    --primary-dark: #0369a1;
    /* Deep Ocean Blue */
    --secondary-color: #0f172a;
    /* Slate 900 */
    --accent-color: #f59e0b;
    --text-color: #334155;
    --light-bg: #f8fafc;
    --white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%);
    --gradient-hero: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%);

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Border Radius */
    --br-sm: 8px;
    --br-md: 16px;
    --br-lg: 24px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: transparent;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3);
}

.brand-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    line-height: 1;
}

.brand-text span {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar-scrolled .brand-text {
    color: var(--secondary-color);
}

.navbar-scrolled .brand-text span {
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 15px;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.navbar-scrolled .nav-link {
    color: var(--secondary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    color: white !important;
    border-radius: var(--br-sm);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    /* Full viewport height */
    min-height: 800px;
    background: var(--gradient-hero), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
    overflow: hidden;
}

.text-gradient {
    background: linear-gradient(to right, #38bdf8, #818cf8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--br-lg);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Wave Dividers */
.custom-shape-divider-bottom-16899 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-16899 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.custom-shape-divider-bottom-16899 .shape-fill {
    fill: #f8fafc;
    /* Matches bg-light */
}

.custom-shape-divider-bottom-services {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.custom-shape-divider-bottom-services svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.custom-shape-divider-bottom-services .shape-fill {
    fill: #ffffff;
}

/* Services */
.section-padding {
    padding: 100px 0;
}

.ls-2 {
    letter-spacing: 2px;
}

.service-card {
    background: white;
    border-radius: var(--br-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: none;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 165, 233, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: white;
    font-size: 2rem;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: #e0f2fe;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -70px auto 20px;
    /* Pull up to overlap image */
    position: relative;
    border: 5px solid white;
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.btn-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: margin 0.3s ease;
}

.service-card:hover .btn-link {
    margin-left: 10px;
}

/* Features */
.feature-box {
    background: white;
    padding: 40px 25px;
    border-radius: var(--br-md);
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-wrapper {
    background: var(--primary-color);
    color: white;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.feature-box:hover .feature-icon {
    color: white;
}

/* Contact */
.contact-icon-small {
    width: 50px;
    height: 50px;
    background: #f0f9ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Footer */
.footer-logo {
    color: white;
}

.footer-links a {
    transition: padding 0.3s ease, color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color) !important;
    padding-left: 10px;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    color: white;
}

/* Pulse Animation for CTA */
.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
    }
}

@media (max-width: 991px) {
    .hero {
        height: auto;
        padding-bottom: 100px;
    }

    .hero-content {
        text-align: center !important;
    }

    .navbar-collapse {
        background: white;
        padding: 20px;
        margin-top: 15px;
        border-radius: var(--br-md);
        box-shadow: var(--shadow-lg);
    }

    .nav-link {
        color: var(--secondary-color) !important;
    }
}