/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


html {
    scroll-behavior: smooth; /* Enables the smooth scrolling effect */
    scroll-padding-top: 100px; /* Offsets the scroll so the navbar doesn't hide content */
}

/* ... existing code ... */

:root {
    --primary-blue: #5192e1;
    --primary-cyan: #23ced5;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Custom Gradient Helper */
.btn-custom-gradient {
    background-image: linear-gradient(to right, var(--primary-blue) 0%, var(--primary-cyan) 51%, var(--primary-blue) 100%);
    background-size: 200% auto;
    color: white;
    border: none;
    transition: 0.5s;
}

.btn-custom-gradient:hover {
    background-position: right center;
    color: white;
}

/* Navbar */
.navbar {
    transition: all 0.4s ease;
    padding: 20px 0;
}

/* Parallax Background & Hero */
.parallax-bg {
    background-image: url("/Assets/images/GCJRhiA.png"); /* Ensure this path is correct */
    min-height: 100vh;
    background-attachment: fixed; /* This creates the parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-section {
    flex: 1; /* Takes up remaining space in parallax wrapper */
    min-height: 80vh; /* Ensures hero is tall enough */
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
}

/* Text Shadow for Hero */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Cards Hover Effect */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(230, 244, 240, 0.3);
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    background-color: white;
}

.service-card {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .card-title {
    color: #333;
}

/* Team Images */
.team-img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border: 3px solid var(--primary-cyan);
}

/* Footer Specifics */
.footer-section input:focus, 
.footer-section textarea:focus {
    box-shadow: none;
    border: 1px solid var(--primary-cyan) !important;
}

/* Utility Overrides */
.text-info {
    color: var(--primary-cyan) !important;
}

.btn-outline-info {
    color: var(--primary-cyan);
    border-color: var(--primary-cyan);
}

.btn-outline-info:hover {
    background-color: var(--primary-cyan);
    color: white;
}/* Partner Logos */
.partner-logo {
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.grayscale-hover {
    /* Helper class if you want to apply it selectively */
}