@import url('https://fonts.googleapis.com/css2?family=Doppio+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Doppio One", sans-serif !important;
    font-weight: normal;
    font-style: normal;
}

html,
body {
    height: 100%;
    width: 100%;

}
.accordion-body{
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 500;
}
:root {
    --color: #253E8A;
    --text-color: #212529;
    --orange: #FF6600;
    --light-bg: #020929;
}

h1,
h3 {
    color: #cce0f5
}

h2 {
    color: #253E8A;
}

h6 {
    color: #253E8A;
}

.para {
    color: #f8f9fa;
}

.para2 {
    color: #212529;
}

.btn-orange {
    background-color: #FF6600;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bolder;
}

.btn-orange:hover {
    background-color: #f8f9fa;
    transition: all 0.3s linear;
    color: #253E8A;
}

.btn-blue {
    background-color: #253E8A;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bolder;
}

.btn-blue:hover {
    background-color: #FF6600;
    transition: all 0.3s linear;
    color: #253E8A;
}
.pulse-button2 {
    -webkit-animation: pulse2 1.5s infinite ease-in-out;
    animation: pulse2 1.5s infinite ease-in-out;
}

@keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0 #FF6600;
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}
.border {
    border-color: #315DCF !important;
}
p{
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 500 !important;
}
/* **************** about section ****************** */
/* Auto animate without hover */
/* ==================================
   call button sticky STYLES
================================== */

.mobile-call-btn {
  position: fixed;
  bottom: 0;
  left: 20%;
  width: 60%;
  z-index: 9999;
  background-color: #ffffff;
  text-align: center;
  padding: 4px 0;
  border-radius: 15px 15px 0 0;
  border: 1px solid #000;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
}

.call-now-button {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 16px; /* spacing inside buttons */
}

.call-now-button:first-child {
  border-right: 1px solid #000; /* white divider */
}


.call-now-button i {
  font-size: 1.2rem;
}
.call-now-button.call {
  color: red !important;
}

.call-now-button.call i {
  color: red !important;
}

.call-now-button.whatsapp {
  color: green !important;
}

.call-now-button.whatsapp i {
  color: green !important;
}
/* Desktop only (UNCHANGED) */
@media (min-width: 1024px) {
  .whatsapp-desktop {
    position: fixed;
    right: 35px !important;
    bottom: 25px !important;
    z-index: 9999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    text-decoration: none;
  }
}

/* Mobile & Tablet */
@media (max-width: 1023px) {
  .whatsapp-desktop {
    position: fixed;
    right: 30px;          /* LEFT side on mobile */
    bottom: 22px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;       /* show on mobile */
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    text-decoration: none;
  }
}

