/* Force Font Awesome to swap so icons don't block rendering */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-display: swap;
    src: local('Font Awesome 6 Free');
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-display: swap;
    src: local('Font Awesome 6 Brands');
}/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #f8f9fa;
    color: #333333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* HERO - Black to Red Gradient */
.hero {
    background: linear-gradient(135deg, #000000, #ff0000); 
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
}

.hero p {
    font-size: 18px;
    margin: 10px 0 30px;
    opacity: 0.9;
}

/* BUTTONS */
.btn-primary {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: #000000;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

/* The Button Inside the Card */
.btn-white {
    background: #ffffff;
    color: #000000;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none; /* No underlines */
    display: block;
    text-align: center;
    margin-top: auto; /* Pushes button to bottom */
    transition: 0.3s;
}

.btn-white:hover {
    background: #e0e0e0;
}

/* SECTION */
.section {
    padding: 80px 20px;
}

.section h2 {
    color: #ff0000; 
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

/* LIGHT BG SECTION */
.light-bg {
    background: #fdfdfd;
}

/* GRID - Cards Adjacent to each other */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* CARD - Solid Gradient */
.card {
    background: linear-gradient(135deg, #000000, #ff0000);
    color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
    display: flex;
    flex-direction: column; /* Stack content vertically */
    min-height: 250px; /* Makes all cards uniform height */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
}

.card h4 {
    margin: 0 0 10px 0;
    font-size: 22px;
    color: #ffffff;
}

.card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
}

/* WHY US LIST */
.features {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.features li {
    background: #ffffff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 5px solid #ff0000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* CTA - Gradient Added */
.cta {
    background: linear-gradient(135deg, #000000, #ff0000);
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.cta h2 { color: #ffffff; margin-bottom: 10px; }

/* WHATSAPP FLOATING ICON */
.whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px; /* Equal width and height for a perfect circle */
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp:hover {
    transform: scale(1.1) rotate(10deg); /* Modern hover effect */
    background: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Ensure the SVG stays centered */
.whatsapp svg {
    display: block;
}

/* MOBILE */
@media(max-width:768px){
    .hero h1{ font-size:28px; }
    .grid { grid-template-columns: 1fr; }
}

.logo {
    max-width: 100%; /* Prevents the image from overflowing its container */
    height: auto;    /* Maintains the correct aspect ratio */
}