* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f4f4;
    color: #333;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #1d0b3a, #4b2c82);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    background: #ffcc00;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* SECTIONS */
.section {
    padding: 50px 20px;
    background: #fff;
}

.section.light {
    background: #eee;
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2b1055;
}

.section h3 {
    margin: 30px 0 15px;
    text-align: center;
}

.text {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

/* GRID */
.grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.box {
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

/* TESTIMONIAL */
.testimonial {
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* FOOTER */
.footer {
    background: #2b1055;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

/* BUTTON STYLES */

.btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #ff512f, #f09819);
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

/* Button Hover Effect */
.btn:hover {
    background: linear-gradient(135deg, #24c6dc, #514a9d);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* Service Boxes also look like buttons */
.box {
    background: linear-gradient(135deg, #ffffff, #f2f2f2);
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.box:hover {
    background: linear-gradient(135deg, #8360c3, #2ebf91);
    color: #fff;
    transform: translateY(-5px);
}

/* Testimonial Boxes Color */
.testimonial {
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* FLOATING BUTTONS */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Common Button Style */
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
}

/* FLOATING BUTTON WRAPPER */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* COMMON BUTTON STYLE */
.float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
}

/* CALL BUTTON */
.call-btn {
    background: linear-gradient(135deg, #ff3b30, #ff6a00);
    color: #fff;
    font-size: 26px;
}

/* WHATSAPP BUTTON (OFFICIAL STYLE) */
.whatsapp-btn {
    background: #25D366;
    position: relative;
}

/* WhatsApp Icon (Pure CSS) */
.wa-icon {
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    position: relative;
}

.wa-icon::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 3px solid #25D366;
    border-radius: 50%;
    top: 3px;
    left: 3px;
}

.wa-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    bottom: -4px;
    left: 4px;
}
/* ========== FLOATING BUTTONS BASE ========== */

.btn-floating {
    position: fixed;
    right: 25px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    background: #000;
    display: flex;
    align-items: center;
    transition: 0.2s ease;
    padding: 0;
}

/* Icon lift effect */
.btn-floating:hover img {
    margin-bottom: -3px;
}

/* On hover expand */
.btn-floating:hover {
    width: auto;
    padding: 0 15px 0 10px;
    cursor: pointer;
}

/* Hidden text by default */
.btn-floating span {
    font-size: 16px;
    margin-left: 8px;
    transition: 0.2s ease;
    display: none;
    white-space: nowrap;
    font-weight: 600;
    font-family: Arial, sans-serif;
}

/* Show text on hover */
.btn-floating:hover span {
    display: inline-block;
}

/* Image defaults */
.btn-floating img {
    width: 26px;
    height: 26px;
}

/* ========== PHONE BUTTON ========== */
.btn-floating.phone {
    bottom: 85px;
    background-color: #760f10;
}

.btn-floating.phone:hover {
    background-color: #c03421;
}

/* ========== WHATSAPP BUTTON ========== */
.btn-floating.whatsapp {
    bottom: 25px;
    background-color: #34af23;
}

.btn-floating.whatsapp:hover {
    background-color: #1f7a12;
}
