
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= BODY ================= */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFDFC;
    color: #000;
    width: 100%;
    overflow-x: hidden;
    line-height: 1.7;
}

/* ================= NAVBAR ================= */
.topnav {
    overflow: hidden;
    background-color: #90EE90;
}

.topnav a {
    float: left;
    display: block;
    color: #333;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #006400;
    color: white;
}

.topnav a.active {
    background-color: #4CAF50;
    color: white;
}

.topnav .icon {
    display: none;
}

.topnav::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive Navbar */
@media screen and (max-width: 768px) {
    .topnav a:not(:first-child) {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}

/* ================= HEADER ================= */
.headline {
    text-align: center;
    color: green;
    padding: 20px;
}


.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 60px 0;
}

h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    animation: fadeDown 1.2s ease-in-out;
}

.intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    opacity: 0.9;
    animation: fadeUp 1.5s ease-in-out;
}

.section-title {
    font-size: 28px;
    margin-bottom: 30px;
    border-left: 5px solid #00d4ff;
    padding-left: 15px;
}

/* ================= CARDS ================= */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
    animation: fadeUp 1s ease forwards;
}

.card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(0, 212, 255, 0.15);
}

.card h3 {
    margin-bottom: 15px;
    color: #00d4ff;
    font-size: 20px;
}

.card p {
    font-size: 15px;
    opacity: 0.9;
}

/* ================= SLIDER ================= */

.slider {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    width: 100%;
    animation: slide 9s infinite;
}

.slides img {
    width: 100%;
    flex: 0 0 100%;
    height: 400px;
    object-fit: cover;
}

@keyframes slide {
    0%, 33% { transform: translateX(0%); }
    38%, 66% { transform: translateX(-100%); }
    71%, 100% { transform: translateX(-200%); }
}

/* ================= ANIMATIONS ================= */

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= GET HELP BUTTON ================= */
.get-help-container {
    text-align: center;
    margin: 40px 0;
}

.get-help-btn {
    background-color: #2e7d32; /* A nice forest green */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.get-help-btn:hover {
    background-color: #1b5e20;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #e0e0e0;
}

.get-help-btn i {
    margin-right: 10px;
}


/* ================= FOOTER ================= */
/* ================= FOOTER ================= */
footer {
    background-color: #A498F0;
    width: 100%;
    padding: 60px 0;
    color: #000;
}

.footer-content {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    text-transform: capitalize;
}

.footer-col h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    width: 50px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 24px;
    color: #000000;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    color: #e91e63;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
    .row {
        justify-content: flex-start;
    }
    .footer-col { 
        flex: 0 0 45%; 
        margin-bottom: 30px; 
    }
}

@media screen and (max-width: 500px) {
    .footer-col { 
        flex: 0 0 100%; 
    }
}