body {
            font-family: 'DM Sans', sans-serif;
            overflow-x: hidden;
        }
		button:focus {
    outline: none;
    outline: none;
}
@media (min-width: 1400px) {  body .container { max-width: 1320px;  width: 100%;   } }
        /* ===============================
           HERO SECTION
        =============================== */
        .hero-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
            color: #fff;
        }

        /* Background Video */
        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: -2;
        }

        /* Overlay */
        .hero-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55);
            z-index: -1;
        }

        /* ===============================
           NAVBAR
        =============================== */
        .custom-navbar {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            margin: 15px auto;
            max-width: 1100px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            padding: 8px 20px;
        }

        .navbar-brand img {
            height: 40px;
        }

        .navbar-nav {
            margin: 0 auto;
        }

        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 600;
            padding: 10px 18px;
            transition: 0.3s;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .active .nav-link {
            color: #b22222 !important;
        }

        /* Center menu on large screens */
        @media (min-width: 992px) {
            .navbar .navbar-collapse {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
            }
        }

        /* ===============================
           HERO CONTENT
        =============================== */
        .hero-content {
            height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 800;
            text-transform: uppercase;
            animation: fadeInUp 1s ease-in-out;
        }

        .hero-content p {
            font-size: 18px;
            margin-top: 10px;
            animation: fadeInUp 1.3s ease-in-out;
        }

        .hero-btn {
            margin-top: 25px;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 50px;
            background: #ffffff;
            color: #b22222;
            border: none;
            transition: all 0.3s ease;
            animation: fadeInUp 1.6s ease-in-out;
        }

        .hero-btn:hover {
            background: #b22222;
            color: #fff;
        }
		.hero-btn:focus-visible {
			border:none;
		}

        /* ===============================
           ANIMATIONS
        =============================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===============================
           CAROUSEL INDICATORS
        =============================== */
        .carousel-indicators {
            bottom: 30px;
            align-items: center;
        }

        .carousel-indicators li {
            width: 10px;
            height: 10px;
            border-radius: 10%;
            background-color: #ffffff;
            opacity: 1;
            margin: 0 6px;
            transition: all 0.3s ease;
        }

        .carousel-indicators .active {
            width: 35px;
            height: 8px;
            border-radius: 10px;
            background-color: #b22222;
        }

        /* Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
        }

        /* ===============================
           RESPONSIVE DESIGN
        =============================== */
        @media (max-width: 991px) {
            .custom-navbar {
                margin: 10px;
                border-radius: 8px;
            }

            .hero-content {
                text-align: center;
                justify-content: center;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .hero-content p {
                font-size: 16px;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 24px;
            }

            .hero-btn {
                padding: 10px 22px;
                font-size: 14px;
            }
        }
		
		/* ===============================
   EVENTS SECTION
=============================== */
.events-section {
    padding: 40px 80px;
}

/* Section Header with Vertical Red Line */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

/* Section Title */
.section-title {
    position: relative;
    margin: 0;
    padding-left: 18px;
    font-size: 40px;
    font-weight: bold;
    color: #212121;
}

/* Vertical Red Line */
.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 32px;
    background-color: #b22222;
    border-radius: 3px;
}

/* ===============================
   EVENT CARD
=============================== */
.event-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Event Image */
.event-img {
    width: 100%;
    height: 186px;
    object-fit: cover;
	    object-position: top;
}

/* Event Body */
.event-body {
    padding: 20px;
}

/* ===============================
   EVENT HEADER (DATE LEFT, TEXT RIGHT)
=============================== */
.event-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 10px;.event-img
}

/* Date on Left */
.event-date {
    min-width: 0px;
    text-align: left;
}

.event-date .month {
    display: block;
     text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #b22222;
}

.event-date .day {
    display: block;  
	 font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #212121;
}

/* Event Info on Right */
.event-info {
    flex: 1;
}

.event-title {
     
      margin: 0;
     font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-align: left;
}

.event-location {
     
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #6a6a6a;
    margin: 2px 0 0;
}

/* ===============================
   RACE TAGS
=============================== */
.event-tags span {
    display: inline-block;
    background-color: rgba(0, 225, 182, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    margin: 3px 3px 3px 0;
	font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.08;
  letter-spacing: normal;
  text-align: left;
  color: #00856c;
}

/* ===============================
   REGISTRATION STATUS
=============================== */
.registration {
    font-size: 16px;
    margin-top: 8px;
}

.registration .open {
    color: #28a745;
    font-weight: 600;
}

.registration .closing {
    color: #f73441;
    font-weight: 600;
}

.registration .fast {
    color: #ff9800;
    font-weight: 600;
}

/* ===============================
   PRICE & BUTTON
=============================== */
.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.price {
     
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.44;
  letter-spacing: normal;
  text-align: left;
  color: #000;
}

.price span {
    
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: normal;
  text-align: left;
  color: #9ca3af;
}

.btn-register {
    background: #b22222;
    color: #fff;
    border-radius: 25px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

.btn-register:hover {
    background: #8b0000;
    color: #fff;
}
.btn-register:focus-visible
{
	border:none;
}

/* ===============================
   RESPONSIVE DESIGN
=============================== */
@media (max-width: 991px) {
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
        padding-left: 14px;
    }

    .section-title::before {
        height: 24px;
        width: 4px;
    }

    .section-header {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .event-date {
        min-width: 50px;
    }

    .event-date .month {
        font-size: 12px;
    }

    .event-date .day {
        font-size: 22px;
    }

    .event-title {
        font-size: 16px;
    }

    .event-location {
        font-size: 13px;
    }

    .event-img {
        height: auto;
        object-fit: cover;
    }
}
/* ===============================
           SECTION STYLING
        =============================== */
        .categories-section {
            padding: 40px 80px;
        }

        .section-header {
            margin-bottom: 40px;
        }

         

        /* ===============================
           CATEGORY CARD
        =============================== */
        .category-card {
            position: relative;
            height: 260px;
            border-radius: 20px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* Overlay Color */
        .category-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2);
            transition: opacity 0.4s ease;
        }

        /* Hide overlay on hover */
        .category-card:hover .category-overlay {
            opacity: 0;
        }

        /* Category Title */
        .category-title {
            position: relative;
            color: #fff;
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            z-index: 2;
        }

        /* Overlay Colors 
        .overlay-green { background: rgba(46, 204, 113, 0.85); }
        .overlay-red { background: rgba(231, 76, 60, 0.85); }
        .overlay-purple { background: rgba(155, 89, 182, 0.85); }
        .overlay-orange { background: rgba(243, 156, 18, 0.85); }
        .overlay-blue { background: rgba(52, 152, 219, 0.85); }
        .overlay-pink { background: rgba(233, 30, 99, 0.85); }
*/
        /* Responsive */
        @media (max-width: 768px) {
            .category-card {
                height: 160px;
            }

            .category-title {
                font-size: 16px;
            }

            .section-title {
                font-size: 28px;
            }
        }
		
		/* ===============================
   COUNTER SECTION
=============================== */
.counter-section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: url('assets/images/counter-bg.jpg') no-repeat center center/cover;
    color: #fff;
}

/* Dark Overlay */
.counter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Content Positioning */
.counter-section .row {
    position: relative;
    z-index: 2;
}

/* Counter Box */
.counter-box {
    padding: 20px;
}

/* Counter Numbers */
.counter-box h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
}

/* Line Below Number */
.counter-line {
    display: block;
    width: 40px;
    height: 3px;
    background: #ffffff;
    margin: 30px auto;
}

/* Counter Labels */
.counter-box p {
    
  font-size: 24px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.79;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .counter-box h2 {
        font-size: 36px;
    }

    .counter-box p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .counter-section {
        padding: 40px 0;
    }

    .counter-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .counter-box h2 {
        font-size: 28px;
    }

    .counter-box p {
        font-size: 14px;
    }
}

/* ===============================
   RECENT VIDEOS SECTION
=============================== */
.recent-videos-section {
    padding: 40px 80px;
    background: #ffffff;
    font-family: 'DM Sans', sans-serif;
}

.section-header {
    margin-bottom: 40px;
}

 

/* Video Card */
.video-card {
    transition: all 0.3s ease-in-out;
}

.video-card:hover {
    transform: translateY(-5px);
}

/* Thumbnail */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.video-thumbnail img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}


.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

/* Overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    color: #fff;
    font-size: 22px;
    background: rgba(0, 0, 0, 0.6);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-duration {
    color: #fff;
    font-size: 12px;
    background: rgba(0,0,0,0.6);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Content */
.video-content h5 {
     
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-align: left;
  color: #212121;
    margin-top: 12px;
}

.video-content p {
     
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #6a6a6a;
    margin-bottom: 5px;
}

.video-underline {
    display: block;
    width: 40px;
    height: 2px;
    background: #b22222;
}

/* Modal Styling */
.video-modal-content {
    background: transparent;
    border: none;
}

.video-close {
    position: absolute;
    top: -35px;
    right: 0;
    color: #fff;
    font-size: 30px;
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .video-thumbnail img {
        height: 170px;
    }
}

@media (max-width: 767px) {
    .recent-videos-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .video-thumbnail img {
        height: 160px;
    }
}

@media (max-width: 575px) {
    .video-thumbnail img {
        height: 150px;
    }
}















/* ===============================
   FOOTER SECTION
=============================== */
.footer-section {
    background: linear-gradient(to right, #1f1f1f, #2b2b2b);
    color: #ccc;
    padding: 70px 0 20px;
    font-family: 'DM Sans', sans-serif;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-about p {
     
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #f3f3f3;
}

/* Footer Titles */
.footer-title {
     
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
    margin-bottom: 20px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
     text-decoration: none;
    transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  text-align: left;
  color: #f3f3f3;
  
}

.footer-links a:hover {
    color: #ffffff;
    
}

/* Social Icons */
.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2e2e2e;
    color: #ffffff;
    margin-right: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #b22222;
    transform: translateY(-3px);
	text-decoration:none;
}

/* Footer Gallery */
.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.footer-gallery img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.footer-gallery img:hover {
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 0, 0, 0.4);
    text-align: center;
    padding-top: 15px;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

@media (max-width: 991px) {
	.events-section {
    padding: 20px;
}
.categories-section {
    padding: 20px;
}
.recent-videos-section {
    padding: 20px;
}
	
}


 /* ================= event page start here ================= */

/* ================= NAVBAR ================= */
        .navbar-custom {
            background: #ffffff;
            border-radius: 12px;
            padding: 10px 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
        }

        .navbar-nav .nav-link.active {
            color: #b22222;
            font-weight: 600;
        }

        /* ================= HERO SECTION ================= */
        .hero-section-event {
            background-image: linear-gradient(133deg, #b22222 53%, #800000 104%);
            padding: 40px 0 120px;
            text-align: center;
            color: #fff;
        }

        .hero-section-event h2 {
            font-weight: 700;
			    padding-top: 60px;
        }

        .event-banner {
            margin-top: -90px;
        }

        .event-banner img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        /* ================= SECTIONS ================= */
        .section-padding {
            padding: 40px 80px;
        }

        

        .about-text {
           
  font-size: 24px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.92;
  letter-spacing: normal;
  text-align: left;
  color: #212121;
  padding-top:20px;
        }
		
		.about-text-inner
		{
		 font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: normal;
  text-align: left;
  color: #212121;
		}
 

/* SECTION TITLE */
.section-title-event {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
    color: #212121;
}

.section-title-event::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 28px;
    background: #b22222;
    border-radius: 3px;
}

/* CATEGORY CARD */
.category-card-event {
    background: #f1f1f1;
    border: 1px solid #dcdcdc;
    border-radius: 14px;
    padding: 22px 25px;
    margin-bottom: 18px;
    transition: all 0.3s ease-in-out;
}

.category-card-event:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* TITLE */
.category-title-event {
    
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #212121;
    margin-bottom: 5px;
}

/* SUBTEXT */
.category-sub-event {
     
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #212121;
    margin-bottom: 0;
}

/* INCLUSIVE TITLE */
.inclusive-title-event {
     
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #212121;
    margin-bottom: 4px;
}

/* INCLUSIVE TEXT */
.inclusive-text-event {
     
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #212121;
    margin-bottom: 0;
}

/* PRICE */
.price-event {
     
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.44;
  letter-spacing: normal; 
  color: #212121;
}

.price-event span {
    display: block;
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

/* ADD BUTTON */
.add-btn-event {
    background: #b22222;
    color: #fff;
    border-radius: 25px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
    border: none;
}

.add-btn-event:hover {
    background: #8b0000;
    color: #fff;
}
.add-btn-event:focus-visible {
   border:none;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .price-event {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .section-title-event {
        font-size: 28px;
    }

    .category-card-event {
        padding: 18px;
    }

    .text-lg-right,
    .text-md-right {
        text-align: left !important;
    }

    .add-btn-event {
        margin-top: 10px;
    }
}