/* 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;
}
