/* Custom Styles */
:root {
    --primary-color: #027954;
    --secondary-color: #6c757d;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

html {
    scroll-behavior: smooth;
  }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg.jpeg') center/cover;
    z-index: -1;
    opacity: 0.9;
    filter: blur(1px);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
}

/* Logo Image */
#about img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    padding: 20px;
}

/* Cards */
.card {
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

/* Form */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Social Icons */
.social-icons a {
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color) !important;
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }

    #about img {
        max-height: 300px;
        margin-bottom: 20px;
    }
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

/* Submit Section */
#duthi {
    background-color: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 800px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

#duthi:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

#duthi h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

#duthi .form-label {
    font-weight: 600;
    color: var(--dark-color);
}

#duthi .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.8rem;
    transition: all 0.3s ease;
}

#duthi .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(2, 121, 84, 0.25);
}

#duthi .btn-primary {
    background-color: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

#duthi .btn-primary:hover {
    background-color: #026b4a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 121, 84, 0.3);
}

/* Icon Colors */
.text-primary {
    color: var(--primary-color) !important;
}

/* Rules Section */
#rules .row {
    display: flex;
    flex-wrap: wrap;
}

#rules .col-md-4 {
    display: flex;
    margin-bottom: 1.5rem;
}

#rules .card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

#rules .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}

#rules .card-body h3 {
    margin-bottom: 1rem;
}

#rules .card-body p {
    margin-bottom: 0.5rem;
} 

.tox-promotion, .tox-statusbar__right-container {
            display: none !important;
}