@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo+Black&family=Bebas+Neue&family=Lato:wght@400;700&family=Open+Sans:wght@400;600&family=Oswald:wght@400;500;700&family=Poppins:wght@400;600&family=Rajdhani:wght@400;600&family=Roboto:wght@400;500;700&family=Teko:wght@400;600&family=Ubuntu:wght@400;500&display=swap');
body{
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
}

.logo{
    width: 180px;
}

.banner-carousel,
.banner-carousel .owl-item,
.banner-slide {
  height: 80vh;
  position: relative;
}

.banner-carousel .item img {
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(33, 37, 41, 0.999) 5%, rgba(0, 0, 0, 0.4) 100%);
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.banner-text h2 {
  font-size: 4.5rem;
  font-weight: bold;
}

/* Dropdown in offcanvas */
.offcanvas .dropdown-menu {
    position: static !important;
    transform: none !important;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0.5rem;
}

.offcanvas .dropdown-item {
    color: #fff;
    padding: 0.5rem 1rem;
}

.offcanvas .dropdown-item:hover,
.offcanvas .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.offcanvas .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Event Cards Styling */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card.border-success:hover {
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.3);
}

.card.border-secondary:hover {
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-section.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.hero-section.bg-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

/* Registration Number page */
.otp-container {
    height: 70vh;
}



/* global button */
.global_button {
    background-color: #652d90;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    /* width: 100%; */
    padding: 8px 0;
}
.global_button:hover{
    border: #652d90 1px solid;
    color: #652d90;
}

.global_button-outline {
    border: #652d90 1.5px solid;
    color: #652d90;
}

/* Auth button styling */
.auth-btn {
    transition: all 0.3s ease;
    border-radius: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.25rem;
}

.auth-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.9);
}

.auth-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-1px);
}

.auth-btn-solid {
    background: #652d90;
    border: 2px solid #652d90;
    color: #fff;
}

.auth-btn-solid:hover {
    background: #5a2580;
    border-color: #5a2580;
    color: #fff;
    transform: translateY(-1px);
}

/* mobile responsive */
@media (max-width: 767px) {
 .banner-text h2 {
  font-size: 3.5rem;
  font-weight: bold;
}

 /* Mobile navigation buttons */
 .navbar .d-flex .btn {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    margin: 0 0.25rem;
 }

 .navbar .d-flex .btn-outline-light {
    border-width: 1px;
 }
}




