/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(to right, rgba(86, 204, 242, 0.9), rgba(47, 128, 237, 0.9));
    padding: 160px 0;
    color: white;
    overflow: hidden;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-section img {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}
.hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-top: 20px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.hero-section p {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    margin-bottom: 30px;
}
.btn-primary {
    background: linear-gradient(45deg, #ff6f61, #d04c3c);
    border: none;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    color: white;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.5);
}
.btn-primary:hover {
    background: linear-gradient(45deg, #d04c3c, #ff6f61);
    transform: translateY(-5px);
}

/* Features Section */
#features {
    background-color: #f4f4f9;
    padding: 80px 0;
    position: relative;
}
#features::after {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-size: cover;
    z-index: -1;
}
#features h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
}
.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card i {
    font-size: 3rem;
    color: #2f80ed;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}
.feature-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Footer Section */
.footer {
    background-color: #1b1b1b;
    color: white;
    padding: 60px 0;
    font-family: 'Lora', serif;
    position: relative;
}
.footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}
.footer a {
    color: #ff6f61;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 600;
}
.footer a:hover {
    text-decoration: underline;
}
.footer-links {
    margin-bottom: 20px;
}
.footer-icons i {
    font-size: 1.5rem;
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}
.footer-icons i:hover {
    color: #ff6f61;
}

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