﻿:root {
    --color-primary-start: #1E2E4B !important; /* Dark Blue */
    --color-primary-end: #C89848 !important; /* Gold */
    --color-accent: #FFD700 !important; /* Golden Yellow Accent */
    --color-bg-footer: #1e1c1ce0 !important; /* Footer BG */
    --color-bg-dark: #0a0a0a !important; /* Deep Black */
    --color-bg-light: #ffffff !important; /* White */
    --color-text-dark: #1E2E4B !important; /* Text Blue */
    --color-text-light: #ffffff !important; /* White Text */
    --color-text-muted: #aaa !important; /* Muted Gray Text */
    --color-text-soft: #bbb; /* Soft Gray */
    --color-shadow-gold: rgba(200, 152, 72, 0.6);
    --color-shadow-blue: rgba(30, 46, 75, 0.8);
    --color-success: #28a745 !important;
    /* whatsapp */
    --wa-green-1: #25D366;
    --wa-green-2: #128C7E;
    --wa-shadow: rgba(18, 140, 126, 0.20);
    --fab-size: 64px;
    /* Find All Your Section*/
    --bg-1: #f6f8fb;
    --primary-start: #1E88E5;
    --accent: #FFC107;
    --muted: #6b7280;
    --card-bg: rgba(255, 255, 255, 0.9);
    --glass: rgba(255, 255, 255, 0.55);
    --radius: 18px;
    --gap: 18px;
    --max-width: 100%;
}

.main-btn-bg-color {
    background:linear-gradient(90deg, var(--color-primary-start), var(--color-primary-end));
    color:var(--color-text-light);
    border: none;
    border-radius: 10px;
    padding: 8px 18px;
    font-weight: 600;
    transition: all 0.4s ease;
}
.main-btn-bg-color:hover {
    transform:scale(1.05);
    background:linear-gradient(90deg, var(--color-primary-end), var(--color-primary-start));
    color:var(--color-text-light);
}
.simple-btn-bg-color {
    background: #fff;
    color: #333;
    border: none;
    border-radius: 10px;
    padding: 8px 18px;
    font-weight: 600;
    transition: all 0.4s ease;
}
.simple-btn-bg-color:hover {
        transform: scale(1.05);
        background: #ccc;
        color:#000;
}
.text-small-title {
    color: var(--color-primary-start);
    font-weight: 600;
    text-decoration: none;
}