/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

/* Hero Section Animation */
.hero-section {
    position: relative;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #ffc107;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #d7200a;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #0dcaf0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Hero Card Animation */
.hero-card {
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Hover Card Effect */
.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

/* Navbar Styling */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: all 0.3s ease;
    padding: 10px 16px !important;
}

.nav-link:hover,
.nav-link.active {
    color: #d7200a !important;
}

.nav-link i {
    font-size: 0.9rem;
}

/* Form Styling */
.form-control {
    border: 2px solid #e9ecef;
    padding: 8px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #d7200a;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

/* Icon Wrappers */
.icon-wrapper {
    transition: all 0.3s ease;
}

.hover-card:hover .icon-wrapper {
    transform: scale(1.1);
}

/* Button Animations */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .display-2 {
        font-size: 2.5rem;
    }
    .display-4 {
        font-size: 2rem;
    }
    .hero-section {
        min-height: 100vh;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Footer Hover */
.hover-opacity {
    transition: all 0.3s ease;
}

.hover-opacity:hover {
    opacity: 1 !important;
    color: #ffc107 !important;
}

/* Social Icons */
.social-icons a {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: #ffc107 !important;
}

/* Badge Animation */
.badge {
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #d7200a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #bb2d3b;
}

/* Loading Animation for Images */
img {
    transition: all 0.5s ease;
}

img:hover {
    transform: scale(1.02);
}

/* Counter Animation */
.counter {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, #d7200a, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
section.page-title-section {
    background-color: #460b04;
    padding: 50px 0px;
    color: #fff;
}
.pt80{
    padding-top: 80px;
}
.pb80{
    padding-bottom: 80px;
}
a.navbar-brand img {
    height: 75px;
}
.bg-danger{
    background-color: #d7200a !important;
}
.mobile__padding {
    padding: 30px 20px;
}
.navbar-toggler:focus{
   box-shadow: none !important;
}

/*==============================
EVENT COMPLETED
==============================*/

.event-completed{
    background:#1d203d;
    padding:80px 0;
}

.event-badge{

    display:inline-block;
    background:#ffc107;
    color:#111;
    padding:10px 30px;
    border-radius:40px;
    font-weight:600;
    font-size:15px;

}

.event-title{

    color:#fff;
    font-size:52px;
    font-weight:700;
    line-height:1.3;

}

.event-subtitle{

    color:#d7d9e2;
    font-size:18px;
    max-width:850px;
    margin:20px auto 0;
    line-height:1.8;

}

.event-card{

    background:#fff;
    border-radius:20px;
    padding:50px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);

}


/*==============================
Statistics
==============================*/

.stat-box{

    background:#f8f9fa;
    border-radius:15px;
    padding:35px 20px;
    text-align:center;
    transition:.3s;
    height:100%;
    border:1px solid #eee;

}

.stat-box:hover{

    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.stat-box .icon{

    font-size:45px;
    margin-bottom:15px;

}

.stat-box h3{

    font-size:40px;
    font-weight:700;
    color:#0d6efd;

}

.stat-box p{

    margin:0;
    color:#666;
    font-size:18px;

}


/*==============================
Feature Boxes
==============================*/

.feature-box{

    text-align:center;
    border:1px solid #eee;
    border-radius:15px;
    padding:35px 25px;
    transition:.3s;
    height:100%;

}

.feature-box:hover{

    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.feature-icon{

    font-size:50px;
    margin-bottom:15px;

}

.feature-box h4{

    font-size:24px;
    margin-bottom:15px;
    font-weight:700;

}

.feature-box p{

    color:#666;
    line-height:1.8;
    margin-bottom:25px;

}

.feature-box .btn{

    border-radius:40px;
    padding:12px 35px;
    font-weight:600;

}


/*==============================
Thank You Box
==============================*/

.thank-you-box{

    background:#fff8df;
    border:1px solid #ffe39c;
    border-radius:15px;
    padding:30px;
    text-align:center;

}

.thank-you-box h4{

    color:#dc3545;
    font-weight:700;
    margin-bottom:15px;

}

.thank-you-box p{

    color:#555;
    font-size:17px;
    line-height:1.8;
    margin:0;

}


/*==============================
Responsive
==============================*/

@media(max-width:992px){

.event-title{

    font-size:40px;

}

.event-card{

    padding:35px;

}

}

@media(max-width:768px){

.event-completed{

    padding:60px 0;

}

.event-title{

    font-size:30px;

}

.event-subtitle{

    font-size:16px;

}

.event-card{

    padding:25px;

}

.stat-box{

    padding:25px 15px;

}

.stat-box h3{

    font-size:34px;

}

.feature-box{

    padding:25px;

}

.feature-box .btn{

    width:100%;

}

}

@media(max-width:576px){

.event-title{

    font-size:26px;

}

.event-subtitle{

    font-size:15px;

}

.event-card{

    padding:20px;

}

.event-badge{

    font-size:13px;
    padding:8px 20px;

}

.stat-box .icon{

    font-size:38px;

}

.feature-icon{

    font-size:42px;

}

.thank-you-box{

    padding:20px;

}

}

/*=========================
CONTACT SECTION
=========================*/

.contact-section{
    background:#f8f9fc;
}

.section-badge{

    display:inline-block;
    background:#ffc107;
    color:#000;
    padding:8px 22px;
    border-radius:30px;
    font-weight:600;

}

.section-title{

    font-size:48px;
    font-weight:700;
    margin-top:20px;
    color:#1b1f3a;

}

.section-subtitle{

    max-width:700px;
    margin:15px auto 0;
    color:#666;
    font-size:17px;
    line-height:1.8;

}


/* Left Side */

.contact-info{

    background:#1b1f3a;
    color:#fff;
    padding:45px;
    border-radius:20px;
    height:100%;

}

.contact-info h3{

    font-size:30px;
    font-weight:700;
    margin-bottom:20px;

}

.contact-info>p{

    color:#ddd;
    margin-bottom:35px;
    line-height:1.8;

}

.info-item{

    display:flex;
    align-items:flex-start;
    margin-bottom:30px;

}

.info-item .icon{

    width:55px;
    height:55px;
    background:#ffc107;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-right:20px;
    flex-shrink:0;

}

.info-item h6{

    margin-bottom:5px;
    font-weight:600;

}

.info-item p{

    margin:0;
    color:#ddd;

}


/* Right Side */

.contact-form{

    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-form .form-control{

    height:55px;
    border-radius:10px;
    border:1px solid #ddd;

}

.contact-form textarea.form-control{

    height:auto;
    resize:none;

}

.contact-form .form-control:focus{

    border-color:#0d6efd;
    box-shadow:none;

}
.contact-form button {
    border-radius: 50px;
    font-weight: 600;
    background-color: #fe2f18;
}


/*=========================
Responsive
=========================*/

@media(max-width:992px){

.contact-info,
.contact-form{

    padding:35px;

}

.section-title{

    font-size:38px;

}

}

@media(max-width:768px){

.section-title{

    font-size:30px;

}

.contact-info,
.contact-form{

    padding:25px;

}

.info-item{

    margin-bottom:20px;

}

.contact-form button{

    width:100%;

}

}

@media(max-width:576px){

.section-title{

    font-size:26px;

}

.section-subtitle{

    font-size:15px;

}

.contact-info h3{

    font-size:24px;

}

.info-item .icon{

    width:45px;
    height:45px;
    font-size:18px;
    margin-right:15px;

}

}
