/* --- Variables & Reset --- */
:root {
    --tkd-red: #ED1C24;
    --tkd-blue: #0054A6;
    --pure-white: #ffffff;
    --text-dark: #1a1a1a;
    --light-gray: #f4f4f4;
    --transition: all 0.3s ease;
}

.fs_2{
    font-size: 12px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html, body {
    overflow-x: hidden; /* Prevents horizontal scrolling */
    width: 100%;
    margin: 0;
    padding: 0;
}

/* This targets the Hero section in your screenshot */
section {
    max-width: 100%;
    overflow: hidden;
}

.bg-glass {
  background: rgba(255, 255, 255, 0.354) !important;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,0.1);
}

.custom-navbar {
  /* backdrop-filter: blur(10px); */
  /* border: 1px solid rgba(255,255,255,0.1); */
  z-index: 9999;
  position: fixed;
}

body {
    background-color: var(--pure-white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Global Elements --- */
section { padding: 100px 10%; }

h2 { 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--tkd-red);
    color: white;
    padding: 15px 40px;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    border-bottom: 4px solid #b31217;
}

.btn-primary:hover {
    background: var(--tkd-blue);
    border-bottom-color: #003d7a;
    transform: translateY(-2px);
}

/*/* Navbar Overlay Styles */
.navbar-custom {
    padding: 25px 0;
    transition: all 0.3s ease;
}

/* Optional: Add a dark background when scrolling (requires a bit of JS) */
.navbar-custom.scrolled {
    background: rgba(17, 17, 17, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-link {
    font-weight: 300;
    /* text-transform: uppercase; */
    /* font-size: 0.2rem;    */
    /* letter-spacing: 0.5px; */
    color: #fff !important;
}

.nav-link:hover, .nav-link.active {
    color: white !important;
}

.nav-link {
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  background-color: rgb(255, 255, 255);
  transition: width  0.3s ease-in-out;
}

.nav-link:hover::after {
  width: 100%;
}


.navbar.scrolled {
    background: rgba(17, 17, 17, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    color: white;
}

/* Ensure the Hero row doesn't get pushed by the fixed nav */
#home {
    position: relative;
    z-index: 1;
}
/* Mobile Tweak */
@media (max-width: 991px) {
    .nav-links .nav-link {
        padding: 10px 15px !important;
        border-bottom: 1px solid var(--light-gray);
    }
}
@media (max-width: 778px) {
   .tkd-logo{
    display: none;
   }
}
/* --- Hero Section --- */
#home{
    background-image: url('../images/hero/lakshika-taekwondo-hero-bg.png');
     display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 10px solid var(--tkd-blue);
        min-height: 30%;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        z-index: 1;
        /* padding-bottom: 0px; */

}
.hero {
    /* height: 100vh; */
    /* background: linear-gradient(rgba(255, 255, 255, 0.256), rgba(255,255,255, 0.8)), 
                url('https://images.unsplash.com/photo-1555597673-b21d5c935865?auto=format&fit=crop&q=80&w=2000') center/cover; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 10px solid var(--tkd-blue);
}

.hero h1 { 
    font-size: 5.5rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    line-height: 0.85; 
    margin-bottom: 25px;
}

.hero p { 
    font-size: 1.1rem; 
    font-weight: 700;
    letter-spacing: 8px; 
    margin-bottom: 40px; 
    color: var(--tkd-blue);
}

/* Carousel Image Styling */
.carousel-img {
    height: 100vh;
    object-fit: contain; /* Ensures image fills space without stretching */
    object-position:unset;
    justify-content: left;
}

/* The White Overlay (Allows images to show while keeping text readable) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.299); /* Adjust opacity here */
    z-index: 1;
}


/* Ensure caption stays above overlay */
.carousel-caption {
    z-index: 9999;
    color: var(--text-dark);
    justify-content: end;
}
/* --- 1. CLEAN FADE ENGINE --- */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    z-index: 2;
}

/* --- 2. THE SPLIT ANIMATIONS --- */

/* IMAGE: Slides in from Right to Left */
.carousel-item.active .hero-img-container {
    animation: slideInRight 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* TEXT CONTENT: Slides in from Down to Up */
.carousel-item.active .hero-content-wrapper {
    animation: slideInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Keyframes for the Image (Right to Left) */
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Keyframes for the Text (Down to Up) */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(60px); /* Starts 60px below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Ends at original position */
    }
}

/* --- 3. GHOSTING PREVENTER --- */
/* This ensures the previous slide vanishes immediately */
.carousel-item:not(.active) .hero-img-container,
.carousel-item:not(.active) .hero-content-wrapper {
    opacity: 0;
    transform: translateY(-20px); /* Slightly moves old text out of the way */
    transition: opacity 0.4s ease;
}
.brand-marquee {
    width: 100%;
    overflow: hidden;
    background: var(--tkd-blue);
    padding: 20px 0;
    position: relative;
    border-top: 3px solid var(--tkd-red);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.0rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 60px; /* Space between items */
}

.marquee-item i {
    color: var(--tkd-red);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Smooth Animation */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on hover for accessibility */
.brand-marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* Glass effect overlay for edges */
.brand-marquee::before,
.brand-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100px;
    z-index: 2;
}

.brand-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--tkd-blue), transparent);
}

.brand-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--tkd-blue), transparent);
}
:root {
    --tkd-red: #cc0000;
    --tkd-blue: #003366;
    --tkd-glass: rgba(255, 255, 255, 0.9);
}

#about {
    background-image: url('../images/about-us/taekwondo-belts-removebg-preview.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    object-fit:fill;
    background-position: 0% 100%;
        background-size: 22% auto;
        /* padding: 0px; */
       
}

/* Fix the Image Contradictions */
.main-img {
    border-left: 8px solid var(--tkd-red);
    border-bottom: 8px solid var(--tkd-blue);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* width: 100%; */
    min-height:100px;
    object-fit:cover;
    border-radius: 20px;
}

.main-img:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
}

/* Sidebar Boxing Image responsiveness */
.boxing-img {
    min-height: 100%;
    object-fit:contain;
    /* filter: grayscale(100%) opacity(0.3); */
    transition: 0.5s;
}

.col-lg-2:hover .boxing-img {
    filter: grayscale(0%) opacity(1);
}

/* Better Icon Boxes */
.icon-box {
    width: 55px;
    height: 55px;
    background: white;
    color: var(--tkd-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: 0.3s;
}

.icon-box:hover {
    background: var(--tkd-red);
    color: white;
    transform: rotateY(180deg);
}

/* Responsive Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: var(--tkd-blue);
    color: white;
    padding: 12px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

/* Text Enhancements */
.tracking-widest { 
    letter-spacing: 0.2rem; 
}

.accent-line {
    width: 60px; 
    height: 4px; 
    background: var(--tkd-red); 
    margin-bottom: 20px;
    border-radius: 2px;
}

/* Fix Mobile Layout */
@media (max-width: 991px) {
    #about {
        text-align: center;
        padding: 60px 20px;
    }
    
    .accent-line {
        margin: 0 auto 20px;
    }
    
    .boxing-img {
        display: none; 
    }
    
    .icon-box {
        margin: 0 auto 10px;
    }
    
    .floating-badge {
        right: 20px;
        bottom: 10px;
        justify-content: center;
    }
   
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
/* --- Card Grids --- */
.programs { background-color: rgb(0, 0, 148); }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition);
    border-top: 5px solid var(--tkd-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
    border-top-color: var(--tkd-red);
    background-color: #cc0000;
    color: white;
}

.card i { font-size: 3.5rem; color: var(--tkd-red); margin-bottom: 25px; }

/* --- Pricing --- */
.pricing-card {
    background: white;
    border: 2px solid var(--light-gray);
    padding: 50px 30px;
    text-align: center;
}

.pricing-card.premium {
    border: 3px solid var(--tkd-blue);
    position: relative;
    transform: scale(1.05);
}

.price { font-size: 3.5rem; font-weight: 900; color: var(--tkd-red); margin: 20px 0; }

/* --- Forms --- */
form input, form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: var(--light-gray);
    border: 2px solid transparent;
}   

/* trainer css  */

/* Section Padding */
#trainer {
    padding: 80px 0;
  background-image: url('../images/trainer-section-bg.png');
     display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 10px solid var(--tkd-blue);
        /* min-height: 30%; */
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        z-index: 1;
        
        
}

/* Trainer Card Wrapper */
.trainer-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    text-align: center;
}

/* The Image Container with Zoom Effect */
.trainer-img-container {
    position: relative;
    overflow: hidden; /* Clips the zoomed image */
    height: 400px;
}

.trainer-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover State - Zoom In */
.trainer-card:hover .trainer-img-container img {
    transform: scale(1.15); /* Unique smooth zoom */
}

/* Dark Overlay and Social Icons */
.trainer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: 0.4s ease;
    
}

.trainer-card:hover .trainer-overlay {
    opacity: 1;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--tkd-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 5px;
    text-decoration: none;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.trainer-card:hover .social-links a {
    transform: translateY(0);
}

.social-links a:hover {
    background: var(--tkd-red);
    color: #fff;
}

/* Info Section Below Image */
.trainer-info {
    padding: 25px 15px;
    border-top: 5px solid var(--tkd-red);
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* 1. The Background (Same as the Screenshot) */
.jackie-bg {
    background-color: #f9f9f9;
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
        radial-gradient(rgba(0,0,0,0.1) 1.2px, transparent 1.9px),
        linear-gradient(rgba(249, 249, 249, 0.8), rgba(249, 249, 249, 0.8)), /* Optional: Tint to keep text readable */
        url('../images/gallery-section-bg.avif');

    background-size: 150px 150px, 24px 24px, cover, cover;
    
    background-position: center;
    background-repeat: repeat, repeat, no-repeat, no-repeat;
    background-attachment: fixed; /* Optional: Creates a parallax effect */
    
    /* Re-enable this for a high-end blended look */
    background-blend-mode: overlay, normal, normal, normal;
}

/* 2. Typography from the Screenshot */
.jackie-subtitle {
    color: #cc0000;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.jackie-title {
    font-family: 'Oswald', 'Impact', sans-serif; /* Impactful font */
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* Responsive size */
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
    line-height: 1;
}

/* 3. The Gallery Card Style */
.gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
    border: 1px solid #ddd;
    background: #000; /* Backdrop for images */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s;
}

/* 4. Hover Effects */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-overlay h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-top: 10px;
}

.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.7;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* 5. Custom Button Style */
.btn-outline-dark {
    border: 2px solid #111;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.btn-dark {
    background: #111;
    border: 2px solid #111;
}

/* classes css  */

.bg-carbon {
    background-color: #111;
    background-image: 
        /* The Grain Layer */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
        /* The Carbon Pattern */
        linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
        /* The Base Image */
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
        url('../images/classes-section-bg.png');

    background-size: 150px 150px, 4px 4px, 4px 4px, cover, cover;
    background-blend-mode: overlay, normal, normal, normal, normal;
    color: white;
    background-attachment: fixed;
}
/* Container styling */
.programs-section {
    background-color: #0a0a0a !important; /* Deep dark for contrast */
    padding: 100px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* The Program Card */
.program-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03); /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

/* Background Number Effect */
.card-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    z-index: -1;
    transition: 0.4s;
}

/* Icon Styling */
.program-icon {
    width: 60px;
    height: 60px;
    background: var(--tkd-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); /* Aggressive Slant */
    margin-bottom: 25px;
    transition: 0.3s;
}

.program-card h3 {
    font-family: 'Oswald', sans-serif;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.program-card p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Hover-only Link */
.program-link {
    color: var(--tkd-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.4s;
    display: inline-block;
}

/* HOVER EFFECTS */
.program-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px);
    border-color: var(--tkd-red);
}

.program-card:hover .card-number {
    color: rgba(204, 0, 0, 0.831);
    right: 10px;
}

.program-card:hover .program-icon {
    transform: scale(1.1) rotate(-5deg);
    background: white;
    color: var(--tkd-red);
}

.program-card:hover .program-link {
    opacity: 1;
    transform: translateX(0);
}

/* Aggressive Red Corner border on hover */
.program-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 3px solid var(--tkd-red);
    border-left: 3px solid var(--tkd-red);
    transition: 0.4s;
}

.program-card:hover::after {
    width: 50px;
    height: 50px;
}

.bg-dark-arena {
    background-color: #000000;
    background-image: 
        /* The Grain (Essential for dark backgrounds) */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
        /* Small Grid */
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
        /* Red Glowing Center Vignette */
        radial-gradient(circle, rgba(204, 0, 0, 0.1) 0%, rgba(0,0,0,1) 100%),
        /* Background Photo */
        url('../images/lakshika-taekwondo-academy-hero3.jpg');

    background-size: 150px 150px, 30px 30px, 30px 30px, cover, cover;
    background-blend-mode: overlay, normal, normal, normal, normal;
}

/* pricing css  */
/* Pricing Card Base */
.price-card {
    background: white;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    border: 1px solid #ddd;
    transition: 0.4s;
    z-index: 1;
}

/* Featured Card (Black/Red Theme) */
.price-card.featured {
    background: #111;
    border: 4px solid var(--tkd-red);
    transform: scale(1.05); /* Makes it pop */
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.price-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price-card.featured h3 { color: white; }

/* Price Typography */
.price-box {
    margin-bottom: 30px;
}

.price-box .currency { font-size: 1.5rem; vertical-align: top; font-weight: 700; }
.price-box .amount { font-size: 4rem; font-weight: 900; font-family: 'Oswald'; line-height: 1; }
.price-box .duration { font-size: 1rem; color: #777; font-weight: 700; }

/* Features List */
.price-features {
    margin-bottom: 40px;
    text-align: left;
    display: inline-block;
}

.price-features li {
    padding: 8px 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.price-features i { margin-right: 10px; color: var(--tkd-red); }

/* Buttons with Slanted Cut */
.btn-jackie-red, .btn-jackie-outline {
    width: 100%;
    padding: 15px;
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    border: none;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    transition: 0.3s;
}

.btn-jackie-red {
    background: var(--tkd-red);
    color: white;
}

.btn-jackie-red:hover {
    background: white;
    color: var(--tkd-red);
}

.btn-jackie-outline {
    background: #111;
    color: white;
}

.btn-jackie-outline:hover {
    background: var(--tkd-red);
}

/* Most Popular Tag */
.featured-ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tkd-red);
    color: white;
    padding: 5px 20px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

/* Hover Effect for standard cards */
.price-card:not(.featured):hover {
    border-color: var(--tkd-red);
    transform: translateY(-10px);
}   

/* contact us css  */
/* The Main Card */
.contact-card-main {
    background: white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    overflow: hidden;
}

.bg-tkd-red {
    background-color: var(--tkd-red) !important;
}

/* Floating Form Styling */
.floating-form .form-control {
    border: none;
    border-bottom: 2px solid #eee;
    border-radius: 0;
    padding-left: 0;
    background: transparent;
}

.floating-form .form-control:focus {
    box-shadow: none;
    border-bottom-color: var(--tkd-red);
}

.floating-form label {
    padding-left: 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #999;
}

/* The Action Button */
.btn-command {
    background: #000d9a;
    color: white;
    border: none;
    padding: 18px;
    width: 100%;
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-command:hover {
    background: var(--tkd-red);
    transform: translateY(-3px);
}

/* Wide Map Footer */
.wide-map {
    border-top: 5px solid #111;
    line-height: 0; /* Removes bottom gap */
}

/* Mobile Tweak */
@media (max-width: 767px) {
    .contact-card-main {
        margin: 0 10px;
    }
}


/* testimonials css  */

.bg-velocity {
    background-color: #f4f4f4;
    background-image: 
        /* The Noise */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
        /* Speed Lines */
        repeating-linear-gradient(90deg, rgba(0,0,0,0.02) 0px, rgba(0,0,0,0.02) 2px, transparent 2px, transparent 15px),
        /* Gradient Wash */
        linear-gradient(to right, rgb(0, 63, 135) 0%, rgb(141, 0, 0) 100%),
        /* Image */
        url('https://images.unsplash.com/photo-1511886512399-59cb265811da?q=80&w=1600');

    background-size: 150px 150px, 30px 100%, cover, cover;
    background-blend-mode: overlay, normal, normal, normal;
}

.testi-slide-modern {
    min-height: 800px;
    display: flex;
    align-items: center;
}

/* Background Decoration */
.testi-accent-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.05) 0%, rgba(0,0,0,0) 70%);
    top: -100px;
    right: -100px;
    z-index: 1;
}

/* The Sliding Card */
.modern-testi-card {
    background: #151515;
    padding: 60px;
    border: 1px solid #222;
    position: relative;
    margin: 20px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    /* Angled top right corner */
    clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 0 100%);
}

.quote-ring {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border: 1px solid var(--tkd-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tkd-red);
    font-size: 1.2rem;
    opacity: 0.5;
}

.modern-testi-card h3 {
    font-weight: 300;
    line-height: 1.5;
    font-style: italic;
}

.author-circle {
    width: 60px;
    height: 60px;
    background: var(--tkd-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border-radius: 50%;
    font-size: 1.1rem;
}

/* Custom Nav Buttons */
.testi-nav-btn {
    width: 60px;
    height: 60px;
    border: 1px solid #333;
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.testi-nav-btn:hover {
    background: var(--tkd-red);
    border-color: var(--tkd-red);
    transform: translateY(-3px);
}

/* Smooth Slide Transition */
#modernTestiCarousel .carousel-item {
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}