.footer-widget a {
    color: #fff;
    text-decoration: none;
}

.navbar-brand img.logo-img {
    width: 35%;
}

.front-header .container {
    max-width: 100% !important;
    height: 90px;
}

ul.navbar-nav {
    margin: 0px 100px 0px 0px;
}

ul.navbar-nav {
    margin: 0px 100px 0px 0px !important;
}

.nav-item a.nav-link {
    font-size: 16px;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #f8f9fa;
    --dark-color: #2c3e50;
}

/* Header Styles */
.front-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.front-header.scrolled {
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.98);
}

.logo img {
    width: 180px;
    height: auto;
    transition: all 0.3s ease;
}

.front-header.scrolled .logo img {
    width: 150px;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    position: relative;
    margin: 0 5px;
}

.main-nav ul li a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.main-nav ul li a:hover {
    color: var(--secondary-color);
    background: rgba(52, 152, 219, 0.1);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 70%;
}

/* Login Button */
.login-btn {
    background: linear-gradient(45deg, var(--secondary-color), #f78118);
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 25px;
    /* font-weight: 600; */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    font-size: 16px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--dark-color);
    cursor: pointer;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        padding: 80px 20px 20px;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav ul li {
        margin: 5px 0;
    }

    .main-nav ul li a {
        padding: 12px 15px;
        border-radius: 5px;
    }

    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .mobile-menu-overlay.active {
        display: block;
    }
}

/* Video Slider - Full Width */
.video-slider-section {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.video-slider-container {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
}

.video-slider {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.video-content {
    max-width: 800px;
    padding: 40px;
}

.video-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.video-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
    color: white;
}

/* Full Width Image Slider */
.full-image-slider {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.full-slide {
    height: 200vh;
    background-size: cover;
    background-position: center;
}

/* Content Section */
.content-image-section {
    padding: 100px 0;
    background: var(--light-color);
}

.content-part {
    padding: 15px 20px;
}

.content-part h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.content-part p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Small Image Slider */
.small-image-slider-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
}

.small-slider-item {
    padding: 15px;
    text-align: center;
}

.small-slider-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.small-slider-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Attractive Footer */
.footer-main {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.footer-widget h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-links a i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.developer-credit {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.developer-credit a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.developer-credit a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .video-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .video-slider-container {
        height: 70vh;
        min-height: 500px;
    }

    .video-content h1 {
        font-size: 2.5rem;
    }

    .video-content {
        padding: 20px;
    }

    .content-image-section .row>div {
        margin-bottom: 30px;
    }

    .content-part {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .video-slider-container {
        height: 60vh;
        min-height: 400px;
    }

    .video-content h1 {
        font-size: 2rem;
    }

    .video-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}
