/* Google Font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    padding-top: 56px; /* Height of the fixed navbar */
    scroll-behavior: smooth;
}

/* Custom Primary Color */
.text-primary {
    color: #0d6efd !important; /* Bootstrap's default blue, change if you want */
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Hero Section Styling */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1920x1080.png?text=Cloud+Infrastructure') no-repeat center center;
    background-size: cover;
    padding: 10rem 0;
    color: #fff;
}

/* Section Padding */
section {
    padding: 60px 0;
}

/* Card hover effect */
.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
