/* === General === */
body {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background-color: #f0f4f8;
}

/* === Background Gradient === */
.gradient-bg {
    background: linear-gradient(135deg, #e0f7fa, #e1f5fe, #f3fafe); /* Soft blues */
    min-height: 100vh;
}

/* === Text Gradient (Matching logo: blue-green) === */
.gradient-text {
    background: linear-gradient(135deg, #00bcd4, #4caf50); /* cyan to green */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Buttons === */
.gradient-btn {
    background: linear-gradient(135deg, #26c6da, #66bb6a); /* cyan-green */
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .gradient-btn:hover {
        background: linear-gradient(135deg, #0097a7, #388e3c); /* deeper shade on hover */
        color: white;
    }

/* === Cards (e.g. service cards) === */
.card-gradient {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* === Navbar === */
/* Floating Logo */
.logo-overlap {
    position: absolute;
    /* top: -40px;
    left: 30px;*/
    z-index: 10;
    background: white;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

    .logo-overlap img {
        height: 120px;
        width: auto;
    }

/* Navbar Container */
    .navbar-container {
    position: relative;
}

/* Glassy Navbar */
.navbar-custom {
    padding-left: 180px; /* Offset for floating logo */
    padding-right: 30px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

/* Brand Text */
.navbar-brand .gradient-text {
    font-size: 1.8rem;
    font-weight: 700;
    margin-left: 100px;
    color: #00695C;
    transition: color 0.3s ease;
}

    .navbar-brand .gradient-text:hover {
        color: #00897B;
    }

/* Nav Links */
.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: #00796B;
    }

/* Button */
.gradient-btn {
    background: linear-gradient(to right, #00bcd4, #4caf50);
    color: white;
    font-weight: 600;
    transition: transform 0.2s ease;
}

    .gradient-btn:hover {
        transform: scale(1.05);
    }

/* Mobile Responsive */
@media (max-width: 767px) {
    .logo-overlap {
        top: -20px;
        left: 15px;
        padding: 6px;
    }

        .logo-overlap img {
            height: 60px;
        }

    .navbar-custom {
        padding-left: 90px;
        padding-right: 20px;
    }

    .navbar-brand .gradient-text {
        font-size: 1.3rem;
        margin-left: 60px;
    }
}


/* === Icon Background (for cards/icons) === */
.icon-gradient {
    background: linear-gradient(135deg, #26c6da, #66bb6a); /* blue-green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === Service or Value Cards Hover Effect === */
.service-card, .hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover, .hover-scale:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    }

/* === Footer === */
.footer-gradient {
    background: linear-gradient(135deg, #00796b, #009688, #4db6ac); /* Greenish cool gradient */
    color: white;
    padding: 3rem 0;
}

    .footer-gradient a {
        color: #c8e6c9;
        text-decoration: none;
    }

        .footer-gradient a:hover {
            text-decoration: underline;
        }

/* === Hero Section === */
.hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #e0f2f1, #f1f8e9);
}

/* === Form Field Styles === */
input.form-control,
select.form-select,
textarea.form-control {
    border: 2px solid #b2dfdb;
    border-radius: 10px;
}

    input.form-control:focus,
    select.form-select:focus,
    textarea.form-control:focus {
        border-color: #26a69a;
        box-shadow: 0 0 0 0.2rem rgba(38, 166, 154, 0.25);
    }
