/* Desktop menu */
/* Active navbar links including dropdowns */
.main-menu a.active,
.main-menu .dropdown-menu-item a.active {
    color: #d32f2f !important;
    /* force color */
    font-weight: bold;
    /* optional */
}

/* Mobile menu */
.off-canvas-menu-list a.active,
.off-canvas-menu-list .sub-menu a.active {
    color: #d32f2f;
    font-weight: bold;
}

/* Social Sidebar */
.social-sidebar {
    position: fixed;
    top: 30%;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
    margin-right: 10px;
}

.social-sidebar a {
    background: #f5f5f5;
    padding: 5px;
    border-radius: 4px;
    text-align: center;
    transition: background 0.3s;
}

.social-sidebar a:hover {
    background: #ddd;
}

/* Expertise Sidebar */
.expertise {
    border-left: 3px solid orange;
    padding-left: 15px;
    max-height: 700px;
    overflow-y: auto;
    position: sticky;
    top: 80px;
    /* adjust for your header height */
}

.expertise ul {
    list-style: none;
    padding-left: 0;
}

.expertise ul li {
    margin: 6px 0;
}

.expertise ul li a {
    text-decoration: none;
    color: #333;
}

.expertise ul li a:hover {
    color: #0d6efd;
}

/* Video Container */
.video-container {
    text-align: center;
    margin: 20px 0;
}

.video-container iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* text Section */
.container.text-center p {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.3;
}

.social-icon img {
    width: 30px;
    /* slightly larger */
    height: 30px;
    border-radius: 50%;
    /* round icons */
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 5px;
    margin-right: 5px;
    background-color: #fff;
    /* optional background */
}

.social-icon:hover img {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-bg {
    background-image: url("../../images/banner/360_F_630023928_XxF1TXveKuH8rzhedzdb7MJVxvxVZ5Jn.jpg");
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    /* optional, if you want rounded corners */
    height: 250px;
}

/* button hover */
.custom-btn:hover {
    background-color: #140169;
    /* Custom hover background */
    color: #fff;
    /* Custom text color */
    transform: scale(1.05);
    /* Slight zoom effect */
    transition: all 0.3s ease;
    /* Smooth animation */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero .container.text-center p {
        font-size: 32px;
    }

    .expertise {
        height: auto;
        border-left: none;
        border-top: 3px solid orange;
        margin-top: 20px;
        padding-top: 15px;
    }
}

@media (max-width: 768px) {
    .hero .container.text-center p {
        font-size: 26px;
    }

    .social-sidebar {
        top: auto;
        bottom: 10px;
        right: 10px;
        flex-direction: row;
        background: #fff;
        padding: 5px;
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .hero .container.text-center p {
        font-size: 22px;
        padding: 10px 5px;
    }

    .video-container img {
        max-width: 100%;
    }
}

/* Logo text style */
.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    white-space: nowrap;
    color: #233d63;
}

/* Smaller logo text on mobile */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1rem;
    }
}

/* Adjust logo image size on small screens */
@media (max-width: 576px) {
    .logo-img {
        width: 40px;
    }

    .logo-text {
        font-size: 0.9rem;
    }
}

/* Default navbar */
.header-menu-area {
    transition: all 0.3s ease;
    padding: 20px 0;
}

/* Shrinked navbar */
.header-menu-area.shrink {
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Optional: shrink logo size too */
.header-menu-area.shrink .logo-img {
    width: 40px;
    transition: all 0.3s ease;
}

.header-menu-area.shrink .logo-text {
    font-size: 1rem;
    transition: all 0.3s ease;
}
