 /* Apply fonts to the entire page */
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px; /* Reduced from the default */
}
p {
     font-size: 15px; /* Reduced from the default */
}
.blockquote-footer {
    font-size: 14px;
}
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
}
/* Heading Sizes */
h1 {
    font-size: 2.5rem; /* Reduce from 3rem */
}

h2 {
    font-size: 2rem; /* Reduce for better balance */
}

h3 {
    font-size: 1.5rem; /* Reduced to fit desktop nicely */
}
/* Banner Styling */
.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.brand-icon {
    font-size: 1.4rem; /* Adjust the size of the icons */
    color: #066182; 
}
header {
    background-image: radial-gradient(at left bottom, rgba(6, 97, 130, 0.76), rgba(0, 0, 0, 0.76)), url('../images/home-banner.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    min-height: 600px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

header h1 {
    font-size: 3rem;
    font-weight: 600;
}
header p {
    font-size: 1.2rem;
    margin-top: 1rem;
}
header a {
    margin-top: 20px;
}

/* Banner Button Specific Style */
.header-btn {
    background-color: #1ad860;
    border-color: #1ad860;
    color:#FFF;
}

.header-btn:hover {
    background-color: #17c753;
    border-color: #17c753;
}

/* Navigation 'Start Free Trial' Button */
.navbar .btn-primary {
    background-color: #1ad860;
    border-color: #1ad860;
}

.navbar .btn-primary:hover {
    background-color: #17c753;
    border-color: #17c753;
}

/* Other Primary Buttons */
.btn-primary {
    background-color: #066182;
    border-color: #066182;
}

.btn-primary:hover {
    background-color: #1e81a5;
    border-color: #1e81a5;
}
/* Custom Icon Styling */
.feature-icon {
    font-size: 2.5rem; /* Adjust the size of the icons */
    color: #066182; /* Color of the icons */
    margin-bottom: 25px; /* Space between icon and text */
}/* CSS Document */

