/* Custom Variables */
:root {
    --primary-red: #ff002b;
    --dark-bg: #0a0a0a;
}

body {
    background-color: var(--dark-bg);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.navbar {
    background: rgba(10, 10, 10, 0.8) !important;
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    transition: 0.3s;
}

/* Hero Carousel Styling */
#heroCarousel {
    height: 100vh;
    width: 100%;
    background-color: #000;
}

.cap{
    margin: 60px;
}

.carousel-item {
    height: 100vh;
}

/* Background Image with Ken Burns Effect */
.overlay-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.6; /* Darkens the image for text readability */
    filter: brightness(0.6) contrast(1.2) saturate(0.8);
    animation: zoomEffect 5s infinite alternate;
}

@keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* Caption Positioning */
.carousel-caption {
    bottom: 30%;
    z-index: 10;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

/* Styling for the indicators */
.carousel-indicators [button] {
    width: 50px;
    height: 5px;
    background-color: var(--primary-red);
}

.text-danger {
    color: var(--primary-red) !important;
}

.btn-danger {
    background-color: var(--primary-red);
    border: none;
    border-radius: 0; /* Square edges look more aggressive/premium */
    transition: 0.4s;
}

.btn-danger:hover {
    transform: skewX(-10deg); /* Cool custom hover animation */
    background-color: #fff;
    color: #000;
}

/* Custom About Us Styling */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* Testimonial Specific Styling */
.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 0;
}

.avatar img {
    object-fit: cover;
    height: 50px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-red);
    transform: translateY(-10px);
}
.serv-card{
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgb(168, 2, 2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
    margin-left: 10px;
}

.tracking-widest {
    letter-spacing: 5px;
}

/* Newsletter Capsule Styling */
.newsletter-capsule {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.newsletter-capsule:focus-within {
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(255, 0, 43, 0.2);
}

.newsletter-capsule input:focus {
    box-shadow: none;
    color: white;
}

/* Footer Links & Socials */
.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    opacity: 0.6;
    transition: 0.3s;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--primary-red);
    transform: translateY(-3px);
    display: inline-block;
}

.tracking-widest {
    letter-spacing: 4px;
}
