:root {
    /* Vibrant Modern Palette */
    --primary-color: #2563eb;
    /* Vibrant Royal Blue */
    --secondary-color: #facc15;
    /* Bright Sunshine Yellow */
    --secondary-hover: #eab308;
    /* Darker Amber */
    --accent-color: #3b82f6;
    --light-bg: #eff6ff;
    /* Light Blue Tint */
    --text-dark: #1e293b;
    /* Slate 900 */
    --text-light: #f8fafc;
    /* Slate 50 */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #4338ca 100%);
    --gradient-gold: linear-gradient(135deg, #facc15 0%, #fbbf24 100%);
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.text-primary-custom {
    color: var(--primary-color);
}

.text-secondary-custom {
    color: var(--secondary-color);
}

.bg-primary-custom {
    background-color: var(--primary-color);
}

.btn-custom {
    background: var(--secondary-color);
    background: var(--gradient-gold);
    color: #0b0f19;
    /* Dark text on gold for contrast */
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-custom:hover {
    background: var(--secondary-hover);
    background: linear-gradient(135deg, #f0d57a 0%, #d4af37 100%);
    /* Reverse gradient */
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

section {
    padding: 100px 0;
}

/* Navbar */
.navbar {
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(37, 99, 235, 0.95) !important;
    /* Using vibrant blue */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 400;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.carousel-item {
    height: 100vh;
    min-height: 600px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 64, 175, 0.4), rgba(30, 64, 175, 0.7));
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s;
}

.carousel-indicators .active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
}

/* Testimonials */
.testimonial-card {
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid var(--secondary-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 50% !important;
}

/* Contact Section */
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--secondary-color) !important;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(192, 160, 98, 0.25);
}

/* Footer */
.footer-links a {
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color) !important;
    padding-left: 5px;
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background-color: #fff !important;
    color: var(--secondary-color) !important;
}

/* Awards Section */
#awards {
    background: var(--gradient-primary);
    position: relative;
    padding-bottom: 80px;
}

#awards h2 {
    color: #fff !important;
}

#awards .text-muted.mt-3 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.award-card {
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15) !important;
    border-top: 4px solid var(--secondary-color);
}

.award-icon-wrapper {
    width: 100px;
    height: 100px;
    transition: all 0.3s ease;
    background-color: var(--light-bg) !important;
}

.award-card:hover .award-icon-wrapper {
    background-color: var(--primary-color) !important;
    transform: scale(1.1);
}

.award-card:hover .award-icon-wrapper i {
    color: #fff !important;
}

.award-card .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.award-card:hover .btn-outline-primary {
    background-color: var(--primary-color);
    color: #fff;
}



/* Video Section */
.z-index-2 {
    z-index: 2;
}

.btn-play {
    width: 80px;
    height: 80px;
    background: #fff;
    color: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
    animation: pulse-white 2s infinite;
}

.btn-play:hover {
    transform: scale(1.1);
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 0 30px rgba(250, 204, 21, 0.6);
}

@keyframes pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Floating Button Generic */
.floating-btn {
    position: fixed;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.floating-btn:active {
    transform: scale(0.95);
}

/* Call Button Specifics */
.floating-call-btn {
    bottom: 30px;
    background: var(--secondary-color);
    background: var(--gradient-gold);
    color: #0b0f19;
    animation: pulse-gold 2s infinite;
}

.floating-call-btn:hover {
    background: var(--secondary-hover);
    color: #000;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* WhatsApp Button Specifics */
.floating-whatsapp-btn {
    bottom: 110px;
    /* Positioned above call button */
    background: #25D366;
    color: #fff;
    animation: pulse-green 2s infinite;
}

.floating-whatsapp-btn:hover {
    background: #20bb5a;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Pulse Animation */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.floating-call-btn {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}