/*
Theme Name: eLeoRex Theme
Theme URI: https://eleorex.com/
Author: Bhavesh Dave
Author URI: https://eleorex.com/
Description: A lightweight, Elementor-compatible theme using Bootstrap 5.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eleorex-theme
Tags: custom-logo, bootstrap, elementor
*/

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover,
a:focus {
    color: #005077;
    text-decoration: none;
}

ul, ol {
    margin: 0;
    padding-left: 1.2rem;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.25;
}

p {
    margin-bottom: 1rem;
}

button, input[type="button"], input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: background 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
    background-color: #005077;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

th, td {
    border: 1px solid #ddd;
    padding: 0.5rem;
    text-align: left;
}

blockquote {
    border-left: 4px solid #0073aa;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    background: #f9f9f9;
    color: #555;
}

code {
    background: #f4f4f4;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.95rem;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
    background-color: #FF0100;
    color: #fff;
}

.container {
    max-width: 1440px; 
    margin: 0 auto;
    padding: 0 1rem;
}

.alignleft {
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


footer {
    background: #f8f8f8;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }



.nav .menu-item a{ color:#4B5563; font-size: 18px; padding: 0 12px; text-decoration: none; } 


.email-link{ border:1px solid #D5D5D5; padding:14px; border-radius: 8px; }

.phone{ background:#007BFF;  border-radius: 8px; padding: 12px 24px; color:#FFFFFF; }


.background-gradient {
    background: linear-gradient(90deg, #00FF9D 0%, #F3F4F3 50%, #00FF9D 100%);
    position: relative;
    z-index: 0;
}    

.background-gradient::before { 
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(120deg, #00FF9D 0%, #F3F4F3 50%, #00FF9D 100%);
    z-index: -1;
    transform: skewY(-3deg);
    transform-origin: top left;
}