/* ===== GLOBAL ===== */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f8ff;
    color: #1a1a1a;
}

/* ===== HEADER / NAVBAR ===== */

header {
    background: rgba(47,63,168,0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.navbar {
    padding: 16px 0;
}

.navbar-nav .nav-item {
    margin-left: 18px;
}

.navbar-brand {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-link {
    color: white !important;
    font-weight: 500;
}

.nav-link:hover {
    opacity: .8;
}

/* ===== HERO ===== */

.hero {
    position: relative;
    padding: 80px 0;
       background: linear-gradient(180deg,#f7f9ff,#e9efff);
    color:#1a1a1a;
    overflow: hidden;
}

.hero::before {
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 50%);
    pointer-events: none;
}

.hero h2 {
    font-size:2.4rem;
    font-weight:700;
    letter-spacing:0.3px;
    margin-bottom:20px;
     color: #2f3fa8;
}

.hero-sub {
    font-size:1.25rem;
    margin-bottom:15px;
     color: #333;
}

.hero-small {
    opacity:.9;
    margin-bottom:20px;
      color: #555;
}

.hero-trust {
    margin:20px 0;
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    font-size:.95rem;
}

.hero-buttons {
    margin-top:25px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-note {
    margin-top:25px;
    opacity:.9;
    font-size:.95rem;
}

.hero-btn {
    transition: all .2s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

/* ===== BUTTONS ===== */



.btn-primary{
background-image: linear-gradient(to bottom right,#2f5fb3,#4d7cff);
border:none;
}

.btn:hover {
    background-color:#004494;
}

.btn-outline-light {
    border:2px solid white;
    color:white;
    background:rgba(255,255,255,0.15);
}

.btn-outline-light:hover {
    background:white;
    color:#2f5fb3;
}

.btn-light {
    background:transparent;
    border:none;
    color:#000;
}

.hero-secondary-btn{
border:2px solid #3f4fa8;
color:#3f4fa8;
background:transparent;
}

.hero-secondary-btn:hover{
background:#3f4fa8;
color:white;
}

.hero-buttons{
gap:25px;
}




/* ===== SERVICES ===== */

.services {
    padding:20px 0;
}

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

.card {
    background: linear-gradient(135deg,#f5f5f5 0%,#e0e0e0 100%);
    border-radius:12px;
    border:1px solid #e0e0e0;
    box-shadow:0 4px 8px rgba(0,0,0,0.15);
    overflow:hidden;
    position:relative;
    cursor:pointer;
}

.card::before {
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.2);
    opacity:0;
    transition:opacity .3s;
}

.card:hover::before {
    opacity:1;
}

.card img {
    width:100%;
    height:200px;
    object-fit:cover;
}

.card-body {
    padding:20px;
    display:flex;
    flex-direction:column;
}

.card-title {
    font-size:1.5rem;
    font-weight:bold;
    text-align:center;
    margin-bottom:15px;
}

.card-text {
    color:#666;
    text-align:justify;
}

/* ===== CONTACT ===== */

#contact {
    background-color:#f8f9fa;
}

#contact-form {
    background:#fff;
    border-radius:8px;
    padding:20px;
    box-shadow:0 4px 20px rgba(0,0,0,0.1);
}

input,select,textarea {
    border:1px solid #ccc;
    border-radius:4px;
    padding:10px;
    width:100%;
    box-sizing:border-box;
}

input:focus,select:focus,textarea:focus {
    border-color:#007bff;
    box-shadow:0 0 8px rgba(0,123,255,0.2);
}

label {
    font-weight:bold;
    margin-bottom:5px;
}

.required-asterisk {
    color:#d9534f;
}

/* ===== DROPDOWN ===== */

.dropdown-menu {
    min-width:60px;
}

.dropdown-item {
    padding:5px 10px;
    display:flex;
    align-items:center;
}

.dropdown-item img {
    width:20px;
    margin-right:8px;
}

/* ===== WHATSAPP BUTTON ===== */

.whatsapp-float {
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:white;
    font-size:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 20px rgba(0,0,0,0.25);
    z-index:9999;
    text-decoration:none;
    transition: transform .2s ease, box-shadow .2s ease;
    animation: whatsappPulse 6s infinite;
}

.whatsapp-float:hover {
    transform:scale(1.12);
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

@keyframes whatsappPulse {
    0% { transform:scale(1); }
    3% { transform:scale(1.15); }
    6% { transform:scale(1); }
}

/* ===== FOOTER ===== */

.footer {
    background:#1a1a1a;
    color:#f0f0f0;
    padding:20px 0;
    margin-top:20px;
}

.policy-link {
    color:#4CAF50;
    text-decoration:none;
}

.policy-link:hover {
    text-decoration:underline;
}

/* ===== MODAL ===== */

.modal {
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    z-index:1050;
}

.modal-dialog {
    margin:100px auto;
}

.modal-content {
    background:#fff;
    border-radius:5px;
    box-shadow:0 4px 8px rgba(0,0,0,0.2);
}

.modal-body {
    padding:20px;
}

@media (max-width: 768px) {

.hero {
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero h2 {
    font-size: 1.8rem;
}

.hero-sub {
    font-size: 1.05rem;
}

.hero-small {
    font-size: 0.95rem;
}

.hero-buttons {
    margin-top: 15px;
}

.hero-note {
    font-size: 0.85rem;
    margin-top: 15px;
}

}
.hero {
    padding-top: 80px;
    padding-bottom: 60px;
    position: relative;
}

.scroll-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.scroll-hint {
    color: #2f3fa8;
    bottom: 10px;
}
@keyframes bounce {
    0%,20%,50%,80%,100% { transform: translate(-50%,0); }
    40% { transform: translate(-50%,-6px); }
    60% { transform: translate(-50%,-3px); }
}

@media (max-width: 768px) {

.hero {
    padding-top: 50px;
    padding-bottom: 40px;
}

}