/* ======================================
   GLOBAL STYLES & VARIABLES
   ====================================== */

:root {
    /* Color Palette */
    --dark-blue: #1a2942;
    --dark-blue-light: #2d3e5f;
    --navy: #0f1e3a;
    --light-blue: #e8f1ff;
    --lighter-blue: #f5f9ff;

    --golden: #fbbf24;
    --golden-bright: #fcd34d;
    --golden-dark: #f59e0b;
    --golden-light: #fef3c7;

    --white: #ffffff;
    --off-white: #f8fafc;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --text-light: #94a3b8;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2d3e5f 0%, #1a2942 100%);
    --gradient-golden: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-light: linear-gradient(135deg, #f5f9ff 0%, #e8f1ff 100%);
    --gradient-hero: linear-gradient(135deg, rgba(29, 78, 216, 0.8) 0%, rgba(30, 58, 138, 0.9) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-golden: 0 4px 20px rgba(251, 191, 36, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.section-padding {
    padding: 100px 0;
}

/* ======================================
   NAVIGATION BAR
   ====================================== */

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

/* .logo-img {
    width: 200px;
    height: 45px;
    filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.3));
} */

.logo-img {
    width: auto;
    max-width: 200px;
    /* height: 45px; */
    height: 60px;
    /* object-fit: contain; */
    filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.3));
}

.brand-text {
    color: var(--dark-blue);
    font-size: 1.1rem;
    line-height: 1.2;
    font-weight: 700;
}

.brand-sub {
    color: var(--golden-dark);
    font-size: 0.7rem;
    font-weight: 500;
}

.nav-link {
    color: black !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 15px !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-golden);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--golden-dark) !important;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.btn-join {
    background: var(--gradient-golden);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-golden);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 28px rgba(251, 191, 36, 0.4);
    color: var(--white);
}

/* ======================================
   HERO BANNER SECTION
   ====================================== */

.hero-banner {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 50%, #1a2942 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.15) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-custom a:hover {
    color: var(--golden-bright);
}

.breadcrumb-custom .separator {
    color: var(--golden-bright);
}

.breadcrumb-custom .current {
    color: var(--golden-bright);
    font-weight: 600;
}

.banner-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.banner-line {
    width: 150px;
    height: 4px;
    background: var(--gradient-golden);
    margin: 30px auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--golden-bright);
    border-radius: 20px;
    position: relative;
    animation: mouseScroll 2s infinite;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--golden-bright);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes mouseScroll {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

/* ======================================
   MAIN CONTENT & MEETING CARD
   ====================================== */

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: var(--off-white);
}

/* Card shell */
.meeting-card {
    width: 100%;
    max-width: 720px;
    min-height: 400px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: cardEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Animated background gradient */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(251, 191, 36, 0.15) 0%,
        rgba(139, 92, 246, 0.15) 50%,
        rgba(59, 130, 246, 0.15) 100%);
    animation: gradientShift 8s ease infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(20px);
    }
}

/* Floating particles */
.particle {
    position: absolute;
    background: rgba(251, 191, 36, 0.4);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(2) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    background: rgba(139, 92, 246, 0.3);
}

.particle:nth-child(4) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 70%;
    animation-delay: 4s;
    background: rgba(59, 130, 246, 0.3);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.6;
    }
}

/* Two-column interior grid */
.content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 35px 45px;
}

/* Left column */
.left-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    animation: slideInLeft 0.6s ease 0.2s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3); }
    50%      { box-shadow: 0 4px 20px rgba(251, 191, 36, 0.6); }
}

.logo svg {
    width: 22px;
    height: 22px;
    fill: #0f172a;
}

.brand-name {
    font-size: 13px;
    font-weight: 600;
    color: #fbbf24;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.event-badge {
    display: inline-block;
    width: fit-content;
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    padding: 5px 14px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 15px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    animation: slideInLeft 0.6s ease 0.3s both;
}

/* Scoped so it doesn't bleed into other h1 / .title rules */
.meeting-card .title {
    font-size: 25px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 0.6s ease 0.4s both;
}

.subtitle {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 20px;
    animation: slideInLeft 0.6s ease 0.5s both;
}

/* Right column */
.right-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    animation: slideInRight 0.6s ease both;
}

.info-card:nth-child(1) { animation-delay: 0.4s; }
.info-card:nth-child(2) { animation-delay: 0.5s; }
.info-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-5px);
    border-color: rgba(251, 191, 36, 0.3);
}

.icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper.calendar {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.icon-wrapper.time {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.icon-wrapper.location {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.icon-wrapper svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.cta-button {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0f172a;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
    margin-top: 8px;
    animation: slideInRight 0.6s ease 0.7s both;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.5);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Decorative corner glows */
.corner-accent {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
}

.corner-accent.top-right {
    top: -75px;
    right: -75px;
    background: #fbbf24;
}

.corner-accent.bottom-left {
    bottom: -75px;
    left: -75px;
    background: #8b5cf6;
}

/* ======================================
   FOOTER SECTION
   ====================================== */

.footer {
    background: var(--dark-blue);
    position: relative;
}

.footer-main {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
    margin-bottom: 20px;
}

.footer-logo {
    width: 230px;
    height: 50px;
    margin-bottom: 15px;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.4;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--golden);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--golden-bright);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.social-link:hover {
    background: var(--gradient-golden);
    color: var(--white);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: var(--shadow-golden);
}

/* Footer Links */
.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-golden);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--golden-bright);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--golden-bright);
    padding-left: 10px;
}

.footer-links a:hover i {
    transform: translateX(5px);
}

/* Location Map */
.location-map {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid rgba(251, 191, 36, 0.3);
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-map:hover .map-img {
    transform: scale(1.1);
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--golden-bright);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.copyright-text strong {
    color: var(--golden-bright);
}

.designer-link {
    color: var(--golden-bright);
    text-decoration: none;
    transition: all 0.3s ease;
}

.designer-link:hover {
    color: var(--golden);
    text-decoration: underline;
}

/* Back to Top */
.back-to-top {
    width: 50px;
    height: 50px;
    background: var(--gradient-golden);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-golden);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 32px rgba(251, 191, 36, 0.5);
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */

/* Tablets */
@media (max-width: 992px) {
    .section-padding {
        padding: 70px 0;
    }

    .banner-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .hero-banner {
        height: 400px;
    }

    .banner-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefits-list {
        gap: 10px;
    }

    .benefit-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .logo-showcase {
        padding: 30px;
    }

    .main-logo {
        max-width: 250px;
    }

    .footer-main {
        padding: 50px 0 30px;
    }

    .text-center.text-md-start,
    .text-center.text-md-end {
        text-align: center !important;
    }

    .back-to-top {
        margin-top: 15px;
    }

    /* Meeting card — stack to single column */
    .main-content {
        padding: 50px 16px;
    }

    .meeting-card {
        min-height: auto;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }

    .meeting-card .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 14px;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .banner-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .mvv-card {
        padding: 30px 20px;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Meeting card — tighter on tiny screens */
    .main-content {
        padding: 40px 12px;
    }

    .content-wrapper {
        padding: 30px 20px;
        gap: 24px;
    }

    .meeting-card .title {
        font-size: 24px;
    }

    .info-card {
        padding: 12px 16px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ======================================
   NAVBAR MOBILE RESPONSIVENESS FIXES
   ====================================== */

.navbar-toggler {
    border: 2px solid var(--golden);
    border-radius: 8px;
    padding: 8px 12px;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 1051;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--golden-bright);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
    outline: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(251, 191, 36, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        margin-top: 15px;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        border: 2px solid var(--light-blue);
        position: relative;
        z-index: 1050;
    }

    .navbar-nav {
        gap: 5px;
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 12px 20px !important;
        border-radius: 8px;
        margin: 0 !important;
        width: 100%;
        text-align: left;
        font-size: 1rem;
        background: transparent;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        min-height: 48px;
    }

    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(135deg, #f5f9ff 0%, #e8f1ff 100%);
        color: var(--dark-blue) !important;
        transform: translateX(5px);
    }

    .nav-link::before {
        display: none;
    }

    .btn-join {
        width: 100%;
        margin: 15px 0 0 0 !important;
        padding: 14px 30px;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .navbar {
        z-index: 1050;
        position: fixed;
        width: 100%;
        top: 0;
    }
}

.navbar-collapse.collapsing {
    transition: height 0.35s ease;
    overflow: hidden;
}

.navbar-collapse.collapse:not(.show) {
    display: none;
}

.navbar-collapse.collapse.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .navbar-toggler {
        min-width: 48px;
        min-height: 48px;
    }
}

@media (max-width: 768px) {
    .form-control {
        padding: 16px 20px;
        font-size: 16px;
    }

  
}
@media (max-width: 375px) {
    .logo-img {
        max-width: 120px;
        height: 30px;
    }
}
@media (min-width: 376px and max-width: 576px) {
    .logo-img {
        width: 70px !important;
        /*height: 35px;*/
    }
}