.logo{
    width: 100px;
    height: 60px;
}

/* HERO BASE */
.hero-section {
    background: linear-gradient(135deg, #0d1bff, #6a11cb, #ff4d4d);
    padding: 40px 0;
    position: relative;
}

/* TEXT */
.hero-title {
    font-size: 48px;
    line-height: 1.2;
}

.hero-subtext {
    margin-top: 15px;
    font-size: 18px;
}

/* FEATURES */
.hero-features {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    font-size: 14px;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 25px;
}

.btn-call-hero {
    background: #ff7b00;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
}
.btn-call-hero:hover{
 background: #c46105;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
}

.btn-whatsapp-hero {
    background: #25D366;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
}
.btn-whatsapp-hero:hover{
      background: #06ac43;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
}

/* IMAGE */
.hero-image img {
    max-width: 85%;
    border-radius: 20px;
}

/* ========================= */
/* 📱 MOBILE DESIGN FIX */
/* ========================= */

@media (max-width: 768px) {

    .hero-section {
        padding: 20px 5px;
        text-align: center;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtext {
        font-size: 14px;
    }

    /* Features center */
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* Buttons full width */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons a {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }

    /* Image smaller */
    .hero-image img {
        margin-top: 20px;
    }

    /* Badge center */
    .hero-badge {
        font-size: 12px;
    }
}


/* SERVICES SECTION */
.services-section {
    background: #f7f8fc;
}

/* CARD STYLE */
.service-card {
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* ICON */
.service-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto 15px;
    display: block;
    border-radius: 15px;
}

/* TEXT */
.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #555;
}

/* ================= */
/* 🎯 COLORFUL BUTTON */
/* ================= */

.service-card a {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

/* BUTTON COLORS */
.card1 a {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
}
.card2 a {
    background: linear-gradient(45deg, #00b09b, #96c93d);
}
.card3 a {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
}
.card4 a {
    background: linear-gradient(45deg, #2193b0, #6dd5ed);
}

/* ================= */
/* 🎯 CARD BACKGROUND */
/* ================= */

.card1 {
    background: #f3edff;
    border-color: #d6c7ff;
}

.card2 {
    background: #ecfff5;
    border-color: #b8f5d0;
}

.card3 {
    background: #fff4ea;
    border-color: #ffd2b3;
}

.card4 {
    background: #edf4ff;
    border-color: #c9ddff;
}

/* ================= */
/* ✨ HOVER EFFECT */
/* ================= */

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* BUTTON HOVER */
.service-card a:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* MOBILE */
@media(max-width:768px){
    .service-card {
        padding: 20px;
    }
}


/* CTA SECTION */
.cta-section {
}

/* BOX */
.cta-box {
    padding: 50px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* TEXT */
.cta-box h2 {
    font-size: 19px;
    color: #6a11cb;
    border: 2px dashed #ff4d4d;
    padding: 10px;
}

.cta-box p {
    font-size: 20px;
    color: #ff4d4d;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta-call {
    background: #ffcc00;
    color: #000 !important;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
}



/* HOVER */
.btn-cta-call:hover,
.btn-cta-whatsapp:hover {
    transform: scale(1.05);
    opacity: 0.9;
        background: #ffcc00;

}

/* MOBILE */
@media(max-width:768px){

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .cta-box p {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
    }
}


/* WHY SECTION */
.why-section {
    background: linear-gradient(135deg, #0d1bff, #6a11cb, #ff4d4d);
    padding: 30px 0;
    position: relative;
}

/* CARD */
.why-card {
    padding: 30px 20px;
    border-radius: 18px;
    /* background: rgba(255,255,255,0.08); */
    background-color: white;
    backdrop-filter: blur(10px);
    color:black;
    transition: 0.3s;
    height: 100%;
}

/* ICON */
.why-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffcc00, #ff7b00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
    color: #000;
}

/* TEXT */
.why-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* HOVER */

/* MOBILE */
@media(max-width:768px){

    .why-section {
        padding: 20px 20px;
    }

    .why-card {
        padding: 20px;
    }
}

/* BRANDS SECTION */
.brands-section {
    background: #fff;
}

/* LOGO STYLE */
.brand-logo {
    max-width: 100%;
    height: 40px;
    object-fit: contain;
    transition: 0.3s;
}

/* HOVER EFFECT */
.brand-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* MOBILE */
@media(max-width:768px){
    .brand-logo {
        height: 30px;
    }
}

/* CONTACT SECTION */
.contact-section {
    background: #f7f8fc;
}

/* CONTACT BOX */
.contact-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-box i {
    font-size: 22px;
    color: #6a11cb;
    margin-top: 5px;
}

.contact-box h6 {
    margin: 0;
    font-weight: 600;
}

.contact-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* RIGHT CTA BOX */
.contact-cta {
    background: linear-gradient(135deg, #0d1bff, #6a11cb, #ff4d4d);
    padding: 40px 30px;
    border-radius: 20px;
}

/* BUTTONS */
.btn-call-contact {
    background: #ffcc00;
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: block;
}

.btn-whatsapp-contact {
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: block;
}

/* HOVER */
.btn-call-contact:hover,
.btn-whatsapp-contact:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* MOBILE */
@media(max-width:768px){

    .contact-cta {
        padding: 25px 20px;
    }

    .contact-box {
        flex-direction: row;
    }

    .btn-call-contact,
    .btn-whatsapp-contact {
        width: 100%;
    }
}


/* FAQ SECTION */
.faq-section {
    background: #f7f8fc;
}

/* ACCORDION STYLE */
.custom-faq .accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* QUESTION */
.custom-faq .accordion-button {
    background: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 15px;
    border: none;
}

/* ACTIVE */
.custom-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: #fff;
}

/* ANSWER */
.custom-faq .accordion-body {
    font-size: 14px;
    color: #555;
    background: #fff;
}

/* ICON FIX */
.accordion-button:focus {
    box-shadow: none;
}

/* MOBILE */
@media(max-width:768px){
    .custom-faq .accordion-button {
        font-size: 14px;
    }
}


/* FOOTER */
.footer-section {
    background: linear-gradient(135deg, #0d1bff, #6a11cb, #1a0033);
    color: #fff;
    padding: 60px 0 20px;
}

/* LOGO */
.footer-logo {
    font-weight: 700;
}

/* TEXT */
.footer-section p {
    font-size: 14px;
    opacity: 0.9;
}

/* LINKS */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #fff;
}

/* SOCIAL */
.footer-social a {
    display: inline-block;
    margin-right: 10px;
    background: rgba(255,255,255,0.1);
    padding: 8px;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #ff7b00;
}
footer,a{ text-decoration: none;
color: white;}
/* BUTTON */
.footer-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    border-radius: 25px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.footer-btn:hover {
    opacity: 0.9;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 13px;
}

/* MOBILE */
@media(max-width:768px){
    .footer-section {
    }

    .footer-social {
        margin-bottom: 15px;
    }
}

.sticky-btn {
  position: fixed;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-decoration: none;
}

/* Left - Call */
.call-btn {
  left: 15px;
  background: #ff3b3b;
}

/* Right - WhatsApp */
.whatsapp-btn {
  right: 15px;
  background: #25D366;
}

/* Hover Effect */
.sticky-btn:hover {
  transform: scale(1.1);
  transition: 0.3s;
}