/**Custom CSS - Modernized**/

/* Import Modern Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #4f46e5;
    /* Modern Indigo */
    --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --secondary-color: #10b981;
    /* Modern Emerald */
    --accent-color: #f59e0b;
    /* Amber */
    --text-main: #1f2937;
    /* Gray 900 */
    --text-muted: #6b7280;
    /* Gray 500 */
    --bg-light: #f9fafb;
    /* Gray 50 */
    --bg-white: #ffffff;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --card-hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', system-ui, sans-serif !important;
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: -0.025em;
    /* Tighter tracking for headings */
    margin-bottom: 1rem;
}

/* Header & Nav */
#header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

#header #logo img {
    max-height: 40px;
    /* Consistent height */
    width: auto;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-main);
    font-size: 15px;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu .menu-active {
    color: var(--primary-color) !important;
}

/* Modern Hero Section */
.hero-section {
    background: transparent !important;
    /* Remove old bg */
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #f3f4f6 0%, #ffffff 100%);
}

.hero-section .content-wrap h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.hero-section p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Modern Buttons */
.genric-btn2,
.primary-btn,
.btn-primary {
    background: var(--primary-gradient) !important;
    border: none !important;
    border-radius: var(--radius-full) !important;
    padding: 12px 32px !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: none !important;
    /* Remove uppercase if present */
}

.genric-btn2:hover,
.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
    color: white !important;
}

/* Modern Cards (Features, Services) */
.single-points {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    margin-bottom: 30px;
}

.single-points:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

.single-points img {
    margin-bottom: 24px;
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    padding: 12px;
    border-radius: 12px;
}

.single-points h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.single-points p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Feature List (Why Choose Us) */
.feature-list {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    margin-bottom: 20px;
    align-items: center;
    transition: transform 0.2s;
}

.feature-list:hover {
    transform: translateX(5px);
}

.feature-list .icon {
    background: rgba(79, 70, 229, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
}

.feature-list .icon img {
    width: 30px;
}

.feature-list h4 {
    margin-bottom: 4px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.feature-list p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 !important;
}

/* Testimonials */
.active-review-carusel .single-review {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    margin: 15px;
}

.quote-wrap p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.8;
}

/* Footer (Modern) */
.footer-area {
    background: #111827 !important;
    /* Dark specialized footer */
    color: #e5e7eb;
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-area h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-area p {
    color: #9ca3af;
}

.footer-area .menu-list li a {
    color: #d1d5db;
    transition: color 0.2s;
}

.footer-area .menu-list li a:hover {
    color: white;
    padding-left: 5px;
    /* Subtle movement */
}

/* Form Styles Override */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1) !important;
    outline: none;
}

/* Helpers */
.text-center {
    text-align: center;
}

.section-gap {
    padding: 100px 0;
}

.section-title-wrap {
    margin-bottom: 60px;
}

.section-title-wrap h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-title-wrap p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Animation Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.img-fluid.updown,
.img-fluid.updown2 {
    animation: float 6s ease-in-out infinite;
}

/* Gradient Background Helpers */
.gradient-bg,
.gradient-bg2 {
    background: var(--primary-gradient) !important;
}

/* Custom Overrides for Specific Sections */
.unique-feature-area {
    background-color: var(--bg-light);
}

.cta-section {
    background: #1f2937 !important;
    /* Dark CTA */
    padding: 80px 0;
}

.cta-section h2 {
    color: white !important;
}