/* Here are various root color schemes for you to choose from:

Option 1: Coral/Blue
css
:root {
    --primary: #ff6b6b;
    --primary-dark: #ee5a52;
    --secondary: #4ecdc4;
    --secondary-dark: #45b7af;
}
Option 2: Orange/Purple
css
:root {
    --primary: #ff9a3c;
    --primary-dark: #e88a2e;
    --secondary: #6a3093;
    --secondary-dark: #5a2a7a;
}
Option 3: Deep Blue/Amber
css
:root {
    --primary: #1e3a8a;
    --primary-dark: #1e40af;
    --secondary: #fbbf24;
    --secondary-dark: #f59e0b;
}
Option 4: Magenta/Teal
css
:root {
    --primary: #d946ef;
    --primary-dark: #c026d3;
    --secondary: #14b8a6;
    --secondary-dark: #0d9488;
}
Option 5: Crimson/Slate
css
:root {
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --secondary: #475569;
    --secondary-dark: #334155;
}
Option 6: Violet/Amber
css
:root {
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
}
Option 7: Rose/Indigo
css
:root {
    --primary: #f43f5e;
    --primary-dark: #e11d48;
    --secondary: #4f46e5;
    --secondary-dark: #4338ca;
}
Option 8: Emerald/Ruby
css
:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --secondary: #dc2626;
    --secondary-dark: #b91c1c;
}
Option 9: Sky/Orange
css
:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --secondary: #f97316;
    --secondary-dark: #ea580c;
}
Option 10: Fuchsia/Cyan
css
:root {
    --primary: #d946ef;
    --primary-dark: #c026d3;
    --secondary: #06b6d4;
    --secondary-dark: #0891b2;
} */

:root {
   /*--primary: #abdbe3;*/
   /* --primary-dark: #2bb3f8;*/
   /* --secondary: #fb7516;*/
   /* --secondary-dark: #ea580c;*/
    --dark: #1f2937;
    --light: #fdf2f8;
    --gray: #6b7280;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #06b6d4;
}
/* Override Bootstrap Primary */
.bg-primary {
    background-color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.text-primary {
    color: var(--primary) !important;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--light);
    color: var(--dark);
}

/* Content Wrapper */
.content-wrapper {
    min-height: 100vh;
    padding-top: 5px;
    padding-bottom: 8px;
}

@media (max-width: 991.98px) {
    .content-wrapper {
        padding-top: 5px;
        padding-bottom: 80px;
    }
}

/* Top Navigation */
#topNav {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

#topNav .navbar-brand {
    font-size: 1.5rem;
}

#topNav .nav-link {
    position: relative;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

#topNav .nav-link:hover,
#topNav .nav-link.active {
    color: var(--secondary) !important;
}

#topNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#topNav .nav-link:hover::after,
#topNav .nav-link.active::after {
    width: 80%;
}

/* Bottom Navigation */
#bottomNav {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

#bottomNav .nav-link {
    padding: 0.5rem;
    transition: all 0.3s ease;
}

#bottomNav .nav-link:hover,
#bottomNav .nav-link.active {
    color: var(--secondary) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: var(--light);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: bottom;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Cards */
.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    background: white;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Service Cards */
.service-card .card-content {
    position: relative;
    z-index: 1;
}

.service-card .bi-circle-fill {
    font-size: 8px;
    margin-right: 10px;
    opacity: 0.8;
}

/* Rounded Images */
.rounded-4 {
    border-radius: 16px !important;
}

/* List Styling */
.list-unstyled li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #4b5563;
}

/* Badge Styling */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Background Opacity */
.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Form Controls */
.form-control,
.form-select {
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Stats Cards */
.stat-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.stat-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Testimonial media */
.testimonial-video {
    max-height: 480px;
    width: 100%;
    height: auto;
    background: #000;
}
.testimonial-image {
    max-height: 420px;
    width: 100%;
    object-fit: cover;
}

/* Compact testimonial cards */
.testimonial-grid .testimonial-card {
    border-radius: 12px;
    overflow: hidden;
}
.testimonial-card .testimonial-video {
    max-height: 200px;
    object-fit: cover;
}
.testimonial-card p {
    padding: 0 6px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.2;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary);
}

/* Loading Spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utilities */
.bg-gradienty {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}