/* General Styling */
body {
  font-family: "Rubik", sans-serif;
 
  font-weight: 300;
  font-style: normal;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header Styling */
header {
    background-color: #343a40;
    padding: 15px 0;
}

header .logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

nav ul li a:hover {
    color: #17a2b8; /* Bootstrap info color */
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgb(255 0 0 / 50%), rgb(0 0 0 / 50%)), url(https://www.jshosting.co.uk/blog/sitepad-data/uploads/2022/02/banner.jpg) no-repeat center center / cover;    color: white;
    padding: 100px 0;
	background-color: #ec4d4d;
    opacity: 0.8;
    -webkit-transition: all 400ms !important;
    transition: all 400ms !important;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
}

.hero .cta-btn {
    background-color: #007BFF;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 1.2em;
    border-radius: 50px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.hero .cta-btn:hover {
    background-color: #0056b3;
    text-decoration: none;
}

/* About and Support Section */
section {
    padding: 60px 0;
	text-align:center;
}

.about h2, .support h2 {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.about h2::after, .support h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: #007BFF;
    margin: 10px auto 0;
    border-radius: 2px;
}

.about p, .support p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.about .cta-link, .support .cta-btn {
    display: inline-block;
    background-color: #17a2b8;
    padding: 12px 30px;
    color: white;
    font-size: 1.1em;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
}

.about .cta-link:hover, .support .cta-btn:hover {
    background-color: #138496;
}

/* Footer Styling */
footer {
    background-color: #343a40;
    color: #ccc;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    font-size: 0.9em;
}

footer ul {
    padding: 0;
    list-style: none;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: #ccc;
    font-weight: 600;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #fff;
}

/* Custom Buttons */
.cta-btn {
    background-color: #007BFF;
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #0056b3;
}

.cta-link {
    color: #007BFF;
    font-weight: bold;
}

.cta-link:hover {
    color: #0056b3;
}

/* Custom Section with Bootstrap */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1em;
    }

    .cta-btn {
        padding: 10px 15px;
    }

    header .logo img {
        width: 120px;
    }
}
/* Features Section Styling */
.features-section {
    background-color: #f8f9fa; /* Light grey background */
    padding: 60px 0;
}

.features-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.features-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #007BFF;
    margin: 10px auto 0;
    border-radius: 2px;
}

.feature-box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    color: #007BFF;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 1em;
    color: #555;
}

@media (max-width: 768px) {
    .feature-box {
        margin-bottom: 30px;
    }
}
