/* header css */
:root {
    --primary: #2a4393; /* Royal Blue */
    --secondary: #ffd70d; /* Bright Yellow-Gold */
    --accent: #f04e23; /* Vivid Red-Orange for pops of energy */
    
    --light: #fdfdfd; /* Soft White */
    --dark: #1e1e2f; /* Dark Navy-Charcoal Mix */
    --text-primary: #1e1e2f; /* Strong Dark Text */
    --text-secondary: #4b4b6b; /* Muted Navy-Grey Text */
    --background-main: #ffffff; /* Clean White Background */
    --background-secondary: #f2f4fa; /* Light Cool Grey */
    --footer-background: #1b2a60; /* Deep Blue Footer */
    --button-primary: #2a4393; /* Royal Blue Button */
    --button-primary-hover: #1e2f6d; /* Darker Blue Hover */
    --button-secondary: #ffd70d; /* Bright Yellow Button */
    --button-secondary-hover: #e6be00; /* Slightly Darker Yellow */
    --link-color: #2a4393; /* Royal Blue Links */
    --link-hover: #1e2f6d; /* Darker Blue Hover */
    --border-color: #dcdfe8; /* Soft Cool Grey Border */
}



/* Creative Topbar with Gradient and Pattern */
.viam_topbar {
    padding: 10px 0;
    background: #1b2a60;
    color: #fdfdfd;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.viam_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.viam_topbar-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.viam_topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 300;
}

.viam_topbar-item i {
    color: #ffd70d;
    transition: transform 0.3s ease;
}

.viam_topbar-item:hover i {
    transform: scale(1.2);
}

.viam_topbar-social {
    display: flex;
    gap: 15px;
}

.viam_social-link {
    color: #fdfdfd;
    text-decoration: none;
    font-size: 14px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.viam_social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #ffd70d, #f04e23);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.viam_social-link:hover {
    transform: translateY(-3px);
    color: #1e1e2f;
}

.viam_social-link:hover::before {
    opacity: 1;
}

/* Main Navbar with Neumorphism Styling */
.viam_navbar {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 50px; /* Height of topbar */
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s ease;
}

.viam_navbar.compact {
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.viam_navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.viam_brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.viam_logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        6px 6px 12px rgba(0, 0, 0, 0.05),
        -6px -6px 12px rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.viam_logo::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: conic-gradient(#2a4393, #f04e23, #ffd70d, #2a4393);
    border-radius: 8px;
    animation: spin 8s linear infinite;
}

.viam_logo::after {
    content: 'V';
    position: absolute;
    font-size: 28px;
    font-weight: 800;
    color: #fdfdfd;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.viam_brand-name {
    font-size: 22px;
    font-weight: 700;
    color: #2a4393;
    letter-spacing: 1px;
    position: relative;
    background: linear-gradient(to right, #2a4393, #f04e23);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.viam_nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.viam_nav-link {
    text-decoration: none;
    color: #1e1e2f;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
    background-color: transparent;
}

.viam_nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #ffd70d, #f04e23);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.viam_nav-link:hover {
    color: #2a4393;
    background-color: #f2f4fa;
    box-shadow: 
        3px 3px 5px rgba(0, 0, 0, 0.05),
        -3px -3px 5px rgba(255, 255, 255, 0.5);
}

.viam_nav-link:hover::before {
    width: 80%;
}

.viam_nav-link.active {
    color: #2a4393;
    background-color: #f2f4fa;
    box-shadow: 
        3px 3px 5px rgba(0, 0, 0, 0.05),
        -3px -3px 5px rgba(255, 255, 255, 0.5);
}

.viam_nav-link.active::before {
    width: 80%;
}

.viam_cta {
    text-decoration: none;
    background: linear-gradient(45deg, #2a4393, #f04e23);
    color: #fdfdfd;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-left: 15px;
    box-shadow: 
        5px 5px 10px rgba(0, 0, 0, 0.1),
        -5px -5px 10px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.viam_cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        8px 8px 15px rgba(0, 0, 0, 0.1),
        -8px -8px 15px rgba(255, 255, 255, 0.5);
}

.viam_cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.viam_cta:hover::before {
    transform: rotate(45deg) translateX(100%) translateY(100%);
}

.viam_hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.viam_hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #1e1e2f;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.viam_hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: #f04e23;
}

.viam_hamburger.active span:nth-child(2) {
    opacity: 0;
}

.viam_hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: #f04e23;
}

/* Mobile Navbar */
.viam_mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 100px 30px 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 9;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    overflow-y: auto;
}

.viam_mobile-nav.active {
    right: 0;
}

.viam_mobile-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.viam_mobile-link {
    text-decoration: none;
    color: #1e1e2f;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: #f2f4fa;
    box-shadow: 
        3px 3px 5px rgba(0, 0, 0, 0.05),
        -3px -3px 5px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.viam_mobile-link i {
    color: #f04e23;
    font-size: 18px;
}

.viam_mobile-link:hover {
    background: linear-gradient(45deg, #2a4393, #f04e23);
    color: #fdfdfd;
    transform: translateX(-5px);
}

.viam_mobile-link:hover i {
    color: #fdfdfd;
}

.viam_mobile-cta {
    display: none;
    margin-top: 30px;
    text-align: center;
    padding: 15px;
    background: linear-gradient(45deg, #2a4393, #f04e23);
    color: #fdfdfd;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 
        5px 5px 10px rgba(0, 0, 0, 0.1),
        -5px -5px 10px rgba(255, 255, 255, 0.5);
}

.viam_mobile-contact {
    margin-top: 40px;
    display: none;
    flex-direction: column;
    gap: 15px;
}

.viam_mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b4b6b;
    font-size: 14px;
}

.viam_mobile-contact-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f4fa;
    border-radius: 50%;
    color: #2a4393;
    box-shadow: 
        3px 3px 5px rgba(0, 0, 0, 0.05),
        -3px -3px 5px rgba(255, 255, 255, 0.5);
}

.viam_backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 8;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.viam_backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Add space for fixed navbar */
.viam_content {
    margin-top: 120px; /* Height of topbar + navbar + some space */
    padding: 20px;
}

/* Additional Styles */
.viam_navbar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #2a4393, #f04e23);
}

.viam_notification {
    position: relative;
}

.viam_notification::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: #f04e23;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

/* Media Queries */
@media (max-width: 992px) {
    .viam_nav-link {
        padding: 8px 12px;
    }
    
    .viam_cta {
        padding: 8px 20px;
    }
}

@media (max-width: 768px) {
    .viam_topbar-contact {
        display: none;
    }
    
    .viam_topbar .viam_container {
        justify-content: center;
    }
    
    .viam_hamburger {
        display: flex;
    }
    
    .viam_nav {
        display: none;
    }
    
    .viam_mobile-cta,
    .viam_mobile-contact {
        display: flex;
    }
    
    .viam_content {
        margin-top: 100px;
    }
}

@media (max-width: 576px) {
    .viam_logo {
        width: 40px;
        height: 40px;
    }
    
    .viam_brand-name {
        font-size: 18px;
    }
    
    .viam_mobile-nav {
        width: 100%;
    }
}
/* footer are css */
.viam_footer {
    background: linear-gradient(135deg, #1b2a60 0%, #1e1e2f 100%);
    color: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.viam_footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}

/* Wave Design */
.viam_footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 1;
}

.viam_footer-wave svg {
    width: 100%;
    height: 100%;
}

.viam_footer-wave path {
    fill: #ffffff;
}

/* Footer Main Content */
.viam_footer-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 30px;
}

.viam_footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* Footer Logo Section */
.viam_footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.viam_footer-logo {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd70d 0%, #f04e23 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.3s ease;
}

.viam_footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 215, 13, 0.5));
}

.viam_footer-tagline {
    color: #fdfdfd;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 300px;
}

/* Footer Contact Info */
.viam_footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.viam_footer-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffd70d;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.viam_footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #f04e23, transparent);
    border-radius: 3px;
}

.viam_footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.viam_footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.viam_footer-contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd70d 0%, #f04e23 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.viam_footer-contact-icon i {
    font-size: 18px;
    color: #1e1e2f;
}

.viam_footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.viam_footer-contact-label {
    font-size: 14px;
    color: #ffd70d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.viam_footer-contact-value {
    font-size: 16px;
    color: #fdfdfd;
    line-height: 1.4;
}

/* Footer Quick Links */
.viam_footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.viam_footer-link {
    color: #fdfdfd;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
    opacity: 0.8;
}

.viam_footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background: #f04e23;
    transition: width 0.3s ease;
}

.viam_footer-link:hover {
    color: #ffd70d;
    opacity: 1;
    padding-left: 25px;
}

.viam_footer-link:hover::before {
    width: 15px;
}

/* Footer Newsletter */
.viam_footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.viam_footer-newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.viam_footer-newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    color: #fdfdfd;
    font-size: 16px;
    transition: all 0.3s ease;
}

.viam_footer-newsletter-input:focus {
    outline: none;
    border-color: #ffd70d;
    background: rgba(255, 255, 255, 0.1);
}

.viam_footer-newsletter-button {
    padding: 12px 25px;
    background: linear-gradient(135deg, #ffd70d, #f04e23);
    border: none;
    border-radius: 25px;
    color: #1e1e2f;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.viam_footer-newsletter-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.viam_footer-newsletter-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(240, 78, 35, 0.3);
}

.viam_footer-newsletter-button:hover::before {
    left: 100%;
}

/* Footer Map Section */
.viam_footer-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.viam_footer-map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.viam_footer-map-container:hover {
    box-shadow: 0 8px 25px rgba(240, 78, 35, 0.2);
    transform: translateY(-5px);
}

.viam_footer-map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.viam_footer-map-container:hover iframe {
    filter: grayscale(0%);
}

/* Footer Social Icons */
.viam_footer-social {
    display: flex;
    gap: 15px;
}

.viam_footer-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fdfdfd;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.viam_footer-social-icon:hover {
    background: linear-gradient(135deg, #ffd70d, #f04e23);
    color: #1e1e2f;
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(240, 78, 35, 0.3);
    border-color: transparent;
}

/* Footer Bottom */
.viam_footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.viam_footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.viam_footer-copyright {
    font-size: 14px;
    color: #fdfdfd;
    opacity: 0.8;
}

.viam_footer-development {
    font-size: 14px;
    color: #fdfdfd;
    opacity: 0.8;
}

.viam_footer-development a {
    color: #ffd70d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.viam_footer-development a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffd70d;
    transition: width 0.3s ease;
}

.viam_footer-development a:hover {
    color: #f04e23;
}

.viam_footer-development a:hover::after {
    width: 100%;
}

.viam_footer-bottom-links {
    display: flex;
    gap: 20px;
}

.viam_footer-bottom-link {
    color: #fdfdfd;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
}

.viam_footer-bottom-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffd70d;
    transition: width 0.3s ease;
}

.viam_footer-bottom-link:hover {
    color: #ffd70d;
    opacity: 1;
}

.viam_footer-bottom-link:hover::after {
    width: 100%;
}

/* Scroll to Top Button */
.viam_footer-scroll-top {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd70d, #f04e23);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e1e2f;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.viam_footer-scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(240, 78, 35, 0.3);
}

/* Animations */
@keyframes wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.95);
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

.viam_footer-wave svg {
    animation: wave 15s linear infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.viam_footer-brand,
.viam_footer-contact,
.viam_footer-links,
.viam_footer-map {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.viam_footer-brand {
    animation-delay: 0.2s;
}

.viam_footer-contact {
    animation-delay: 0.4s;
}

.viam_footer-links {
    animation-delay: 0.6s;
}

.viam_footer-map {
    animation-delay: 0.8s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .viam_footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .viam_footer-content {
        padding: 40px 0 20px;
    }

    .viam_footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .viam_footer-scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .viam_footer-logo {
        font-size: 28px;
    }

    .viam_footer-section-title {
        font-size: 20px;
    }

    .viam_footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .viam_footer-newsletter-form {
        flex-direction: column;
    }

    .viam_footer-newsletter-input {
        width: 100%;
    }

    .viam_footer-newsletter-button {
        width: 100%;
    }
}

/* viam slider */
 /* Main Slider Section */
 .viam_homeslidernew {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background-color: #ffffff;
}

/* Slider Container */
.viam_homeslidernew-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

/* Slider Item */
.viam_homeslidernew-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.viam_homeslidernew-item.active {
    opacity: 1;
    z-index: 1;
}

/* Slider Background Overlay */
.viam_homeslidernew-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(26, 32, 66, 0.8) 0%, rgba(26, 32, 66, 0.6) 50%, rgba(26, 32, 66, 0.4) 100%);
    z-index: 0;
}

/* Slider 1 - Empowering Futures */
.viam_homeslidernew-item:nth-child(1) {
    background-image: url('../images/banner/viam_banner01.jpg');
}

/* Slider 2 - Job-Oriented Courses */
.viam_homeslidernew-item:nth-child(2) {
    background-image: url('../images/banner/viam_banner02.jpg');
}

/* Slider 3 - Practical Training */
.viam_homeslidernew-item:nth-child(3) {
    background-image: url('../images/banner/viam_banner03.jpg');
}

/* Slider 4 - Affordable Education */
.viam_homeslidernew-item:nth-child(4) {
    background-image: url('../images/banner/viam_banner01.jpg');
}

/* Slider Content Wrapper */
.viam_homeslidernew-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 130px 20px 0 20px; /* Increased top padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
}



/* Slider Text Content */
.viam_homeslidernew-text {
    max-width: 620px;
    color: #ffffff;
    padding: 30px;
    background: rgba(26, 32, 66, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border-left: 5px solid #ffd70d;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.8s ease, opacity 0.8s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.viam_homeslidernew-headline {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
    color: #ffffff;
}

.viam_homeslidernew-headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd70d, #f04e23);
    border-radius: 2px;
}

.viam_homeslidernew-subheadline {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.6;
}

.viam_homeslidernew-cta-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.viam_homeslidernew-cta {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.viam_homeslidernew-cta-primary {
    background: #f04e23;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(240, 78, 35, 0.3);
    border: 2px solid #f04e23;
}

.viam_homeslidernew-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(240, 78, 35, 0.4);
}

.viam_homeslidernew-cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffd70d;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.viam_homeslidernew-cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #ffd70d;
    transition: width 0.3s ease;
    z-index: -1;
}

.viam_homeslidernew-cta-secondary:hover {
    color: #1e1e2f;
    transform: translateY(-3px);
}

.viam_homeslidernew-cta-secondary:hover::before {
    width: 100%;
}

/* Slider Animation Classes */
.viam_homeslidernew-item.active .viam_homeslidernew-text {
    animation: slideInUp 1s forwards;
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Slider Controls */
.viam_homeslidernew-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.viam_homeslidernew-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.viam_homeslidernew-dot.active {
    background-color: #ffd70d;
    transform: scale(1.2);
}

.viam_homeslidernew-dot:hover {
    background-color: #ffd70d;
}

/* Slider Arrows */
.viam_homeslidernew-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    color: #ffffff;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.viam_homeslidernew-arrow:hover {
    background-color: #ffd70d;
    color: #1e1e2f;
}

.viam_homeslidernew-arrow-prev {
    left: 20px;
}

.viam_homeslidernew-arrow-next {
    right: 20px;
}

/* Admission Form */
.viam_homeslidernew-form {
    width: 350px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInLeft 1s forwards 0.5s;
    border-top: 5px solid #2a4393;
    position: relative;
    overflow: hidden;
}

.viam_homeslidernew-form::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(42, 67, 147, 0.1) 0%, rgba(42, 67, 147, 0) 70%);
    border-radius: 50%;
    right: -75px;
    top: -75px;
    z-index: -1;
}

.viam_homeslidernew-form::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(240, 78, 35, 0.1) 0%, rgba(240, 78, 35, 0) 70%);
    border-radius: 50%;
    left: -50px;
    bottom: -50px;
    z-index: -1;
}

@keyframes slideInLeft {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.viam_homeslidernew-form-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2a4393;
    text-align: center;
}

.viam_homeslidernew-form-subtitle {
    font-size: 14px;
    color: #4b4b6b;
    margin-bottom: 20px;
    text-align: center;
}

.viam_homeslidernew-form-subtitle span {
    background: linear-gradient(90deg, #f04e23, #ffd70d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.viam_homeslidernew-form-group {
    margin-bottom: 15px;
    position: relative;
}

.viam_homeslidernew-form-icon {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #2a4393;
    font-size: 16px;
}

.viam_homeslidernew-form-control {
    width: 100%;
    padding: 12px 12px 12px 45px;
    border: 1px solid #dcdfe8;
    border-radius: 50px;
    font-size: 14px;
    color: #1e1e2f;
    transition: all 0.3s ease;
}

.viam_homeslidernew-form-control:focus {
    outline: none;
    border-color: #2a4393;
    box-shadow: 0 0 0 3px rgba(42, 67, 147, 0.1);
}

.viam_homeslidernew-form-control::placeholder {
    color: #b0b5c5;
}

.viam_homeslidernew-form-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #2a4393, #f04e23);
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(42, 67, 147, 0.2);
}

.viam_homeslidernew-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 67, 147, 0.3);
}

.viam_homeslidernew-form-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background: linear-gradient(90deg, #f04e23, #ffd70d);
    color: #ffffff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 5px 10px rgba(240, 78, 35, 0.2);
}

.viam_homeslidernew-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 14px;
    color: #4b4b6b;
}

.viam_homeslidernew-whatsapp i {
    color: #25D366;
    font-size: 18px;
}

.viam_homeslidernew-whatsapp a {
    color: #2a4393;
    text-decoration: none;
    font-weight: 600;
}

.viam_homeslidernew-whatsapp a:hover {
    text-decoration: underline;
}

/* Loading Animation */
.viam_homeslidernew-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.viam_homeslidernew-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.viam_homeslidernew-spinner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid rgba(42, 67, 147, 0.1);
    border-top-color: #2a4393;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive styles */
@media (max-width: 1200px) {
    .viam_homeslidernew-content {
        padding: 0 40px;
    }
    
    .viam_homeslidernew-headline {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .viam_homeslidernew {
        height: auto;
    }
    
    .viam_homeslidernew-content {
        flex-direction: column;
        padding: 100px 30px 50px 30px;
        gap: 30px;
    }
    
    .viam_homeslidernew-item {
        position: relative;
        opacity: 1;
        height: auto;
        min-height: 100vh;
        display: none;
    }
    
    .viam_homeslidernew-item.active {
        display: flex;
    }
    
    .viam_homeslidernew-headline {
        font-size: 32px;
    }
    
    .viam_homeslidernew-text {
        max-width: 100%;
    }
    
    .viam_homeslidernew-form {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .viam_homeslidernew-content {
        padding: 90px 20px 40px 20px;
    }
    
    .viam_homeslidernew-headline {
        font-size: 28px;
    }
    
    .viam_homeslidernew-subheadline {
        font-size: 16px;
    }
    
    .viam_homeslidernew-cta {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .viam_homeslidernew-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .viam_homeslidernew-content {
        padding: 140px 15px 30px 15px;
    }
    
    .viam_homeslidernew-headline {
        font-size: 24px;
    }
    
    .viam_homeslidernew-text {
        padding: 20px;
    }
    
    .viam_homeslidernew-cta-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .viam_homeslidernew-cta {
        width: 100%;
        text-align: center;
    }
    
    .viam_homeslidernew-form {
        padding: 20px;
    }
    
    .viam_homeslidernew-form-title {
        font-size: 20px;
    }
    
    .viam_homeslidernew-controls {
        bottom: 10px;
    }
}
/*about area css*/
.viam_about {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 5%;
    background: #f9f9ff;
    position: relative;
    overflow: hidden;
}

.viam_about::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ef4136, #fbb040);
    border-radius: 50%;
    top: -250px;
    left: -250px;
    opacity: 0.05;
    z-index: 0;
}

.viam_about_image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
    z-index: 1;
}

.viam_about_shape1 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #3f51b5;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    left: 15%;
    opacity: 0.1;
    animation: morphShape 15s ease-in-out infinite;
    z-index: -1;
}

.viam_about_shape2 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: #ff9800;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: 15%;
    right: 10%;
    opacity: 0.1;
    animation: morphShape 12s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.viam_about_image_container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: rotate(-3deg);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.viam_about_image_container:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.viam_about_image_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.viam_about_image_container:hover img {
    transform: scale(1.08);
}

.viam_about_image_container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(63, 81, 181, 0.2), rgba(255, 152, 0, 0.1));
    z-index: 1;
}

.viam_about_image_decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: #f44336;
    border-radius: 30px;
    transform: rotate(45deg);
    opacity: 0.08;
    z-index: -1;
}

.viam_about_image_circle {
    position: absolute;
    bottom: -25px;
    left: -25px;
    width: 100px;
    height: 100px;
    background: #4caf50;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.viam_about_content {
    flex: 1;
    min-width: 300px;
    padding: 20px 30px;
    z-index: 1;
}

.viam_about_subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3f51b5;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    padding-left: 40px;
}

.viam_about_subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #3f51b5;
    transform: translateY(-50%);
}

.viam_about_title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #212121;
    line-height: 1.2;
}

.viam_about_text {
    margin-bottom: 20px;
    color: #555555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.viam_about_highlight {
    color: #3f51b5;
    font-weight: 600;
}

.viam_about_features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.viam_about_feature {
    flex: 1;
    min-width: 200px;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.viam_about_feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #3f51b5;
    transition: all 0.3s ease;
}

.viam_about_feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.viam_about_feature:hover::before {
    width: 100%;
    opacity: 0.05;
}

.viam_about_feature:nth-child(2)::before {
    background: #ff9800;
}

.viam_about_feature:nth-child(3)::before {
    background: #4caf50;
}

.viam_about_feature_icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(63, 81, 181, 0.1);
    border-radius: 12px;
    color: #3f51b5;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.viam_about_feature:nth-child(2) .viam_about_feature_icon {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.viam_about_feature:nth-child(3) .viam_about_feature_icon {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.viam_about_feature:hover .viam_about_feature_icon {
    transform: scale(1.1);
}

.viam_about_feature_title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #212121;
}

.viam_about_feature_text {
    font-size: 0.95rem;
    color: #666666;
}

/* Responsive design */
@media screen and (max-width: 1200px) {
    .viam_about {
        padding: 60px 5%;
    }

    .viam_about_title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 992px) {
    .viam_about_image_container {
        height: 350px;
    }

    .viam_about_shape1,
    .viam_about_shape2 {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .viam_about {
        flex-direction: column;
        padding: 50px 5%;
    }

    .viam_about_image {
        margin-bottom: 40px;
        order: 1;
    }

    .viam_about_content {
        order: 2;
    }

    .viam_about_image_container {
        height: 300px;
        transform: rotate(0deg);
    }

    .viam_about_title {
        font-size: 2rem;
    }

    .viam_about_feature {
        min-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .viam_about {
        padding: 40px 4%;
    }

    .viam_about_image_container {
        height: 250px;
    }

    .viam_about_subtitle {
        font-size: 0.9rem;
    }

    .viam_about_title {
        font-size: 1.8rem;
    }

    .viam_about_text {
        font-size: 1rem;
    }

    .viam_about_feature {
        padding: 20px;
    }
}
/*courses css*/
.viam_courses {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.viam_courses_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.viam_courses_header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.viam_courses_title_wrap {
    
    position: relative;
}

.viam_courses_subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2a4393;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.viam_courses_title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 20px;
    position: relative;
  
}

.viam_courses_title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f04e23;
    border-radius: 2px;
}

.viam_courses_title_accent {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.viam_courses_title_accent::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: #ffd70d;
    z-index: -1;
    opacity: 0.5;
}

.viam_courses_description {
    max-width: 700px;
    margin: 20px auto 0;
    color: #4b4b6b;
    font-size: 1.1rem;
}

.viam_courses_tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
    flex-wrap: wrap;
    gap: 15px;
}

.viam_courses_tab {
    padding: 14px 30px;
    background: #ffffff;
    color: #1e1e2f;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #2a4393;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    min-width: 220px;
    text-align: center;
}

.viam_courses_tab.active,
.viam_courses_tab:hover {
    background: #2a4393;
    color: #ffffff;
}

.viam_courses_tab_emoji {
    margin-right: 8px;
    font-size: 1.2rem;
}

.viam_courses_content {
    position: relative;
}

.viam_courses_panel {
    display: none;
    animation: fadeEffect 0.5s;
}

.viam_courses_panel.active {
    display: block;
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

.viam_courses_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.viam_courses_card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.viam_courses_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.viam_courses_card_image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.viam_courses_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.viam_courses_card:hover .viam_courses_card_image img {
    transform: scale(1.1);
}

.viam_courses_card_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(42, 67, 147, 0.3), transparent);
}

.viam_courses_card_tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: #ffd70d;
    color: #1e1e2f;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 30px;
    z-index: 2;
}

.viam_courses_card_content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.viam_courses_card_title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.viam_courses_card:hover .viam_courses_card_title {
    color: #2a4393;
}

.viam_courses_card_description {
    color: #4b4b6b;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.viam_courses_card_features {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #dcdfe8;
}

.viam_courses_card_feature {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #4b4b6b;
}

.viam_courses_card_feature_icon {
    margin-right: 8px;
    color: #2a4393;
}

.viam_courses_pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.viam_courses_pagination_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dcdfe8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.viam_courses_pagination_dot.active,
.viam_courses_pagination_dot:hover {
    background: #2a4393;
}

.viam_courses_see_more {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.viam_courses_see_more_btn {
    padding: 16px 40px;
    background: #2a4393;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(42, 67, 147, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.viam_courses_see_more_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1e2f6d;
    z-index: -1;
    transition: transform 0.5s ease;
    transform: scaleX(0);
    transform-origin: right;
}

.viam_courses_see_more_btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.viam_courses_see_more_btn:hover {
    box-shadow: 0 15px 30px rgba(42, 67, 147, 0.3);
}

.viam_courses_see_more_btn_icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.viam_courses_see_more_btn:hover .viam_courses_see_more_btn_icon {
    transform: translateX(5px);
}

/* Hidden elements for pagination */
.viam_courses_grid_page {
    display: none;
}

.viam_courses_grid_page.active {
    display: grid;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .viam_courses {
        padding: 80px 0;
    }

    .viam_courses_title {
        font-size: 2.4rem;
    }

    .viam_courses_grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .viam_courses {
        padding: 60px 0;
    }

    .viam_courses_title {
        font-size: 2.2rem;
    }

    .viam_courses_grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .viam_courses_card_image {
        height: 200px;
    }
}

@media screen and (max-width: 576px) {
    .viam_courses {
        padding: 50px 0;
    }

    .viam_courses_header {
        margin-bottom: 40px;
    }

    .viam_courses_subtitle {
        font-size: 0.9rem;
    }

    .viam_courses_title {
        font-size: 1.8rem;
    }

    .viam_courses_description {
        font-size: 1rem;
    }

    .viam_courses_tab {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .viam_courses_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .viam_courses_card_image {
        height: 180px;
    }
}
/*why choose area css*/
.viam_whychooseus {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fdfdfd 0%, #f2f4fa 100%);
}

.viam_whychooseus_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.viam_whychooseus_header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.viam_whychooseus_subtitle {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2a4393;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
}

.viam_whychooseus_subtitle::before,
.viam_whychooseus_subtitle::after {
    content: "★";
    color: #ffd70d;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.viam_whychooseus_subtitle::before {
    left: -25px;
}

.viam_whychooseus_subtitle::after {
    right: -25px;
}

.viam_whychooseus_title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 20px;
    position: relative;

}

.viam_whychooseus_title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f04e23;
    border-radius: 2px;
}

.viam_whychooseus_description {
    max-width: 800px;
    margin: 30px auto 0;
    color: #4b4b6b;
    font-size: 1.1rem;
    line-height: 1.8;
}

.viam_whychooseus_highlight {
    font-weight: 700;
    color: #2a4393;
}

.viam_whychooseus_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
    gap: 30px;
}

.viam_whychooseus_features {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.viam_whychooseus_feature {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-left: 5px solid #2a4393;
}

.viam_whychooseus_feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.viam_whychooseus_feature:nth-child(2) {
    border-left-color: #ffd70d;
}

.viam_whychooseus_feature:nth-child(3) {
    border-left-color: #f04e23;
}

.viam_whychooseus_feature:nth-child(4) {
    border-left-color: #43b9af;
}

.viam_whychooseus_feature:nth-child(5) {
    border-left-color: #9c27b0;
}

.viam_whychooseus_feature:nth-child(6) {
    border-left-color: #ff9800;
}

.viam_whychooseus_feature::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(42, 67, 147, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    top: 0;
    left: 0;
    z-index: -1;
}

.viam_whychooseus_feature_icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    color: #2a4393;
}

.viam_whychooseus_feature:nth-child(2) .viam_whychooseus_feature_icon {
    color: #ffd70d;
}

.viam_whychooseus_feature:nth-child(3) .viam_whychooseus_feature_icon {
    color: #f04e23;
}

.viam_whychooseus_feature:nth-child(4) .viam_whychooseus_feature_icon {
    color: #43b9af;
}

.viam_whychooseus_feature:nth-child(5) .viam_whychooseus_feature_icon {
    color: #9c27b0;
}

.viam_whychooseus_feature:nth-child(6) .viam_whychooseus_feature_icon {
    color: #ff9800;
}

.viam_whychooseus_feature_title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 15px;
}

.viam_whychooseus_feature_text {
    color: #4b4b6b;
    line-height: 1.7;
}

.viam_whychooseus_image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viam_whychooseus_image_container {
    width: 100%;
    height: 100%;
    max-height: 600px;
    position: relative;
    z-index: 2;
}

.viam_whychooseus_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.viam_whychooseus_image_shape1 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #2a4393;
    opacity: 0.1;
    border-radius: 50%;
    top: -40px;
    right: -40px;
    z-index: 1;
}

.viam_whychooseus_image_shape2 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: #ffd70d;
    opacity: 0.1;
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
    z-index: 1;
}

.viam_whychooseus_badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #2a4393;
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(42, 67, 147, 0.3);
    z-index: 3;
}

.viam_whychooseus_badge_accent {
    color: #ffd70d;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
    .viam_whychooseus {
        padding: 80px 0;
    }

    .viam_whychooseus_title {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 992px) {
    .viam_whychooseus_content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .viam_whychooseus_image {
        margin-bottom: 40px;
        max-width: 450px;
    }

    .viam_whychooseus_features {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .viam_whychooseus {
        padding: 60px 0;
    }

    .viam_whychooseus_title {
        font-size: 2rem;
    }

    .viam_whychooseus_description {
        font-size: 1rem;
    }

    .viam_whychooseus_feature {
        padding: 25px;
    }

    .viam_whychooseus_feature_title {
        font-size: 1.2rem;
    }

    .viam_whychooseus_badge {
        right: 0;
        bottom: 20px;
        padding: 10px 20px;
    }
}

@media screen and (max-width: 576px) {
    .viam_whychooseus {
        padding: 50px 0;
    }

    .viam_whychooseus_header {
        margin-bottom: 40px;
    }

    .viam_whychooseus_subtitle {
        font-size: 0.9rem;
    }

    .viam_whychooseus_title {
        font-size: 1.8rem;
    }

    .viam_whychooseus_feature {
        padding: 20px;
        margin-bottom: 20px;
    }

    .viam_whychooseus_feature_icon {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .viam_whychooseus_feature_title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .viam_whychooseus_badge {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}
/*admission countdown area css*/
.viam_admissioncountdown {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2a4393 0%, #1b2a60 100%);
    color: #ffffff;
}

.viam_admissioncountdown_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.viam_admissioncountdown_pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.viam_admissioncountdown_content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.viam_admissioncountdown_left {
    flex: 1;
    min-width: 300px;
}

.viam_admissioncountdown_badge {
    display: inline-block;
    background: #f04e23;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(240, 78, 35, 0.3);
    position: relative;
    overflow: hidden;
}

.viam_admissioncountdown_badge_icon {
    margin-right: 8px;
}

.viam_admissioncountdown_title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.viam_admissioncountdown_title_highlight {
    color: #ffd70d;
}

.viam_admissioncountdown_text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 600px;
}

.viam_admissioncountdown_courses {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.viam_admissioncountdown_course {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    font-weight: 500;
    position: relative;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border-left: 3px solid #ffd70d;
}

.viam_admissioncountdown_course:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.viam_admissioncountdown_course_icon {
    margin-right: 10px;
    color: #ffd70d;
}

.viam_admissioncountdown_features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 35px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.viam_admissioncountdown_feature {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.95rem;
    padding-right: 20px;
    position: relative;
}

.viam_admissioncountdown_feature:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: 0;
    color: #ffd70d;
}

.viam_admissioncountdown_feature_icon {
    color: #ffd70d;
    margin-right: 8px;
}

.viam_admissioncountdown_cta {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffd70d;
}

.viam_admissioncountdown_right {
    flex: 1;
    min-width: 300px;
}

.viam_admissioncountdown_card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    color: #1e1e2f;
    position: relative;
    overflow: hidden;
}

.viam_admissioncountdown_card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 215, 13, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
    border-radius: 0 0 0 150px;
}

.viam_admissioncountdown_deadline {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #2a4393;
}

.viam_admissioncountdown_deadline_icon {
    color: #f04e23;
    margin-right: 10px;
}

.viam_admissioncountdown_timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.viam_admissioncountdown_time {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.viam_admissioncountdown_time_value {
    background: #2a4393;
    color: #ffffff;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    box-shadow: 0 10px 20px rgba(42, 67, 147, 0.2);
    position: relative;
    overflow: hidden;
}

.viam_admissioncountdown_time_value::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
    left: 0;
}

.viam_admissioncountdown_time_label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4b4b6b;
    text-transform: uppercase;
}

.viam_admissioncountdown_location {
    margin-bottom: 25px;
    text-align: center;
}

.viam_admissioncountdown_location_item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #4b4b6b;
}

.viam_admissioncountdown_location_icon {
    color: #2a4393;
    margin-right: 10px;
}

.viam_admissioncountdown_contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.viam_admissioncountdown_contact_item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: #f2f4fa;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #2a4393;
    transition: all 0.3s ease;
}

.viam_admissioncountdown_contact_item:hover {
    background: #e6e9f5;
}

.viam_admissioncountdown_contact_icon {
    margin-right: 8px;
}

.viam_admissioncountdown_button {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background: #f04e23;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(240, 78, 35, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.viam_admissioncountdown_button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transition: left 0.8s ease;
    z-index: -1;
}

.viam_admissioncountdown_button:hover {
    background: #e23d15;
}

.viam_admissioncountdown_button:hover::before {
    left: 100%;
}

.viam_admissioncountdown_tagline {
    margin-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

.viam_admissioncountdown_tagline_highlight {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 5px;
    color: #2a4393;
}

/* Media queries */
@media screen and (max-width: 992px) {
    .viam_admissioncountdown {
        padding: 70px 0;
    }

    .viam_admissioncountdown_content {
        gap: 40px;
    }

    .viam_admissioncountdown_title {
        font-size: 2.2rem;
    }

    .viam_admissioncountdown_courses {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .viam_admissioncountdown {
        padding: 60px 0;
    }

    .viam_admissioncountdown_title {
        font-size: 2rem;
    }

    .viam_admissioncountdown_text {
        font-size: 1rem;
    }

    .viam_admissioncountdown_courses {
        grid-template-columns: 1fr 1fr;
    }

    .viam_admissioncountdown_timer {
        gap: 10px;
    }

    .viam_admissioncountdown_time_value {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .viam_admissioncountdown_contact {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .viam_admissioncountdown_contact_item {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .viam_admissioncountdown {
        padding: 50px 0;
    }

    .viam_admissioncountdown_title {
        font-size: 1.8rem;
    }

    .viam_admissioncountdown_courses {
        grid-template-columns: 1fr;
    }

    .viam_admissioncountdown_features {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .viam_admissioncountdown_feature::after {
        display: none;
    }

    .viam_admissioncountdown_card {
        padding: 30px 20px;
    }

    .viam_admissioncountdown_deadline {
        font-size: 1.2rem;
    }

    .viam_admissioncountdown_time_value {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .viam_admissioncountdown_time_label {
        font-size: 0.7rem;
    }
}
/*placement area css*/
.viam_placementpartner {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: #f9faff;
}

.viam_placementpartner_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.viam_placementpartner_header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.viam_placementpartner_title_wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.viam_placementpartner_subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2a4393;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.viam_placementpartner_title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e1e2f;
    position: relative;
    z-index: 1;
}

.viam_placementpartner_title_bg {
    position: absolute;
    height: 15px;
    background-color: rgba(255, 215, 13, 0.3);
    bottom: 5px;
    left: -10px;
    right: -10px;
    z-index: -1;
}

.viam_placementpartner_description {
    max-width: 800px;
    margin: 0 auto;
    color: #4b4b6b;
    font-size: 1.1rem;
    line-height: 1.8;
}

.viam_placementpartner_content {
    margin-top: 50px;
}

.viam_placementpartner_tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 15px;
}

.viam_placementpartner_tab {
    padding: 12px 25px;
    background: #ffffff;
    color: #1e1e2f;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.viam_placementpartner_tab.active,
.viam_placementpartner_tab:hover {
    background: #2a4393;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(42, 67, 147, 0.2);
}

.viam_placementpartner_panels {
    position: relative;
    overflow: hidden;
}

.viam_placementpartner_panel {
    display: none;
}

.viam_placementpartner_panel.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.viam_placementpartner_slider_container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.viam_placementpartner_slider {
    display: flex;
    animation: slideLeftToRight 30s linear infinite;
    gap: 30px;
    width: fit-content;
}

@keyframes slideLeftToRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.viam_placementpartner_logo {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 120px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.viam_placementpartner_logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.viam_placementpartner_logo img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: grayscale(100%);
}

.viam_placementpartner_logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.viam_placementpartner_logo::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2a4393, #f04e23);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.viam_placementpartner_logo:hover::before {
    transform: scaleX(1);
}

.viam_placementpartner_stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 70px;
    padding-top: 70px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.viam_placementpartner_stat {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.viam_placementpartner_stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.viam_placementpartner_stat_value {
    font-size: 3rem;
    font-weight: 700;
    color: #2a4393;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.viam_placementpartner_stat:nth-child(2) .viam_placementpartner_stat_value {
    color: #f04e23;
}

.viam_placementpartner_stat:nth-child(3) .viam_placementpartner_stat_value {
    color: #ffd70d;
}

.viam_placementpartner_stat:nth-child(4) .viam_placementpartner_stat_value {
    color: #43b9af;
}

.viam_placementpartner_stat_value::after {
    content: "+";
    font-size: 1.5rem;
    position: absolute;
    top: 5px;
    right: -15px;
}

.viam_placementpartner_stat_label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e1e2f;
}

.viam_placementpartner_stat_desc {
    font-size: 0.9rem;
    color: #4b4b6b;
    margin-top: 5px;
}

.viam_placementpartner_stat_icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 5rem;
    color: rgba(42, 67, 147, 0.05);
}

.viam_placementpartner_cta {
    margin-top: 80px;
    text-align: center;
}

.viam_placementpartner_cta_text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e1e2f;
    margin-bottom: 30px;
}

.viam_placementpartner_cta_highlight {
    color: #2a4393;
}

.viam_placementpartner_cta_button {
    display: inline-block;
    padding: 15px 35px;
    background: #f04e23;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(240, 78, 35, 0.2);
}

.viam_placementpartner_cta_button:hover {
    background: #e23d15;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(240, 78, 35, 0.3);
}

.viam_placementpartner_shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.viam_placementpartner_shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.viam_placementpartner_shape1 {
    width: 300px;
    height: 300px;
    background: #2a4393;
    top: -150px;
    left: -150px;
}

.viam_placementpartner_shape2 {
    width: 200px;
    height: 200px;
    background: #ffd70d;
    bottom: 10%;
    right: -100px;
}

.viam_placementpartner_shape3 {
    width: 150px;
    height: 150px;
    background: #f04e23;
    top: 40%;
    right: 10%;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .viam_placementpartner {
        padding: 80px 0;
    }

    .viam_placementpartner_title {
        font-size: 2.5rem;
    }

    .viam_placementpartner_stat_value {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .viam_placementpartner {
        padding: 60px 0;
    }

    .viam_placementpartner_title {
        font-size: 2.2rem;
    }

    .viam_placementpartner_description {
        font-size: 1rem;
    }

    .viam_placementpartner_logo {
        width: 150px;
        height: 100px;
        padding: 15px;
    }

    .viam_placementpartner_stat_value {
        font-size: 2.2rem;
    }

    .viam_placementpartner_cta_text {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 576px) {
    .viam_placementpartner {
        padding: 50px 0;
    }

    .viam_placementpartner_title {
        font-size: 1.8rem;
    }

    .viam_placementpartner_logo {
        width: 120px;
        height: 80px;
        padding: 10px;
    }

    .viam_placementpartner_tab {
        width: calc(50% - 10px);
        padding: 10px 15px;
        font-size: 0.9rem;
        text-align: center;
    }

    .viam_placementpartner_stat {
        padding: 20px;
    }

    .viam_placementpartner_stat_value {
        font-size: 2rem;
    }

    .viam_placementpartner_cta_button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
/*testrimonials area css*/
.viam_testimonials {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9ff 0%, #f2f4fa 100%);
}

.viam_testimonials_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.viam_testimonials_header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.viam_testimonials_title_wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.viam_testimonials_emoji {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.viam_testimonials_title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e1e2f;
    position: relative;
    z-index: 1;
}

.viam_testimonials_title::after {
    content: "";
    position: absolute;
    height: 15px;
    background-color: rgba(255, 215, 13, 0.3);
    bottom: 5px;
    left: -10px;
    right: -10px;
    z-index: -1;
}

.viam_testimonials_slider_container {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.viam_testimonials_slider {
    display: flex;
    animation: slideRightToLeft 60s linear infinite;
    gap: 30px;
    width: fit-content;
}

@keyframes slideRightToLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.viam_testimonials_card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    width: 380px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.viam_testimonials_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.viam_testimonials_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #2a4393;
}

.viam_testimonials_stars {
    color: #ffd70d;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.viam_testimonials_student {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.viam_testimonials_student_info {
    flex: 1;
}

.viam_testimonials_student_name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1e1e2f;
}

.viam_testimonials_student_course {
    font-style: italic;
    color: #4b4b6b;
    font-size: 0.9rem;
}

.viam_testimonials_quote {
    flex: 1;
    font-size: 1rem;
    line-height: 1.8;
    color: #4b4b6b;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(42, 67, 147, 0.1);
}

.viam_testimonials_quote::before {
    content: """;
    position: absolute;
    font-size: 3rem;
    color: rgba(42, 67, 147, 0.1);
    top: -20px;
    left: 10px;
    font-family: serif;
}

.viam_testimonials_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #f2f4fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a4393;
    margin-left: 20px;
    border: 3px solid #f2f4fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.viam_testimonials_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.viam_testimonials_controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.viam_testimonials_control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    color: #2a4393;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.viam_testimonials_control:hover {
    background: #2a4393;
    color: #ffffff;
    transform: scale(1.1);
}

.viam_testimonials_dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.viam_testimonials_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dcdfe8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.viam_testimonials_dot.active,
.viam_testimonials_dot:hover {
    background: #2a4393;
    transform: scale(1.2);
}

.viam_testimonials_cta {
    text-align: center;
    margin-top: 60px;
}

.viam_testimonials_cta_text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e1e2f;
    margin-bottom: 25px;
}

.viam_testimonials_cta_text_highlight {
    color: #2a4393;
}

.viam_testimonials_cta_button {
    display: inline-block;
    padding: 15px 35px;
    background: #f04e23;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(240, 78, 35, 0.2);
}

.viam_testimonials_cta_button:hover {
    background: #e23d15;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(240, 78, 35, 0.3);
}

.viam_testimonials_shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.viam_testimonials_shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.viam_testimonials_shape1 {
    width: 400px;
    height: 400px;
    background: #2a4393;
    top: -100px;
    right: -100px;
}

.viam_testimonials_shape2 {
    width: 300px;
    height: 300px;
    background: #f04e23;
    bottom: -50px;
    left: -50px;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .viam_testimonials {
        padding: 80px 0;
    }

    .viam_testimonials_title {
        font-size: 2.5rem;
    }

    .viam_testimonials_card {
        width: 350px;
        min-height: 260px;
        padding: 25px;
    }
}

@media screen and (max-width: 768px) {
    .viam_testimonials {
        padding: 60px 0;
    }

    .viam_testimonials_title {
        font-size: 2.2rem;
    }

    .viam_testimonials_card {
        width: 320px;
        min-height: 240px;
        padding: 20px;
    }

    .viam_testimonials_student {
        flex-direction: column;
    }

    .viam_testimonials_avatar {
        margin: 0 0 15px 0;
    }

    .viam_testimonials_cta_text {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 576px) {
    .viam_testimonials {
        padding: 50px 0;
    }

    .viam_testimonials_title {
        font-size: 1.8rem;
    }

    .viam_testimonials_card {
        width: 280px;
    }

    .viam_testimonials_control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .viam_testimonials_cta_button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
/*our affilation area css*/
.viam_ouraffilation {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.viam_ouraffilation_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.viam_ouraffilation_header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.viam_ouraffilation_title_wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.viam_ouraffilation_title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1e1e2f;
    position: relative;
    z-index: 1;
}

.viam_ouraffilation_title_bg {
    position: absolute;
    width: 100%;
    height: 20px;
    background-color: rgba(255, 215, 13, 0.4);
    bottom: 10px;
    left: 0;
    z-index: 0;
}

.viam_ouraffilation_description {
    max-width: 700px;
    margin: 0 auto;
    color: #4b4b6b;
    font-size: 1.1rem;
    line-height: 1.8;
}

.viam_ouraffilation_categories {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
    flex-wrap: wrap;
}

.viam_ouraffilation_category {
    background: #ffffff;
    color: #1e1e2f;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.viam_ouraffilation_category.active {
    background: #2a4393;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(42, 67, 147, 0.2);
}

.viam_ouraffilation_category:not(.active):hover {
    border-color: #2a4393;
    transform: translateY(-3px);
}

.viam_ouraffilation_slider_section {
    position: relative;
    margin-top: 50px;
    padding: 30px 0;
    overflow: hidden;
}

.viam_ouraffilation_slider_label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #f04e23;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 20px;
    border-radius: 30px;
    z-index: 10;
}

.viam_ouraffilation_slider_container {
    position: relative;
    padding: 10px 0;
    overflow: hidden;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.viam_ouraffilation_slider {
    display: flex;
    gap: 30px;
    animation: slideRightToLeft 30s linear infinite;
    width: fit-content;
    padding: 20px 0;
}

.viam_ouraffilation_slider:hover {
    animation-play-state: paused;
}

@keyframes slideRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.viam_ouraffilation_logo {
    width: 180px;
    height: 100px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.viam_ouraffilation_logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.viam_ouraffilation_logo::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #2a4393, #f04e23);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.viam_ouraffilation_logo:hover::after {
    transform: scaleX(1);
}

.viam_ouraffilation_logo img {
    max-width: 85%;
    max-height: 70%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.viam_ouraffilation_logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.viam_ouraffilation_stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 70px;
    margin-bottom: 50px;
}

.viam_ouraffilation_stat {
    width: 200px;
    text-align: center;
    position: relative;
}

.viam_ouraffilation_stat_value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2a4393;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #2a4393, #43b9af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.viam_ouraffilation_stat:nth-child(2) .viam_ouraffilation_stat_value {
    background: linear-gradient(45deg, #f04e23, #ffd70d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.viam_ouraffilation_stat:nth-child(3) .viam_ouraffilation_stat_value {
    background: linear-gradient(45deg, #43b9af, #2a4393);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.viam_ouraffilation_stat:nth-child(4) .viam_ouraffilation_stat_value {
    background: linear-gradient(45deg, #ffd70d, #f04e23);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.viam_ouraffilation_stat_value::after {
    content: "+";
    font-size: 2rem;
    position: absolute;
    top: 5px;
    right: -20px;
}

.viam_ouraffilation_stat_label {
    font-size: 1rem;
    color: #4b4b6b;
    font-weight: 500;
}

.viam_ouraffilation_stat_icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.viam_ouraffilation_stat_icon::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(42, 67, 147, 0.1);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.viam_ouraffilation_stat:nth-child(2) .viam_ouraffilation_stat_icon::after {
    background: rgba(240, 78, 35, 0.1);
}

.viam_ouraffilation_stat:nth-child(3) .viam_ouraffilation_stat_icon::after {
    background: rgba(67, 185, 175, 0.1);
}

.viam_ouraffilation_stat:nth-child(4) .viam_ouraffilation_stat_icon::after {
    background: rgba(255, 215, 13, 0.1);
}

.viam_ouraffilation_cta {
    text-align: center;
    margin-top: 80px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.viam_ouraffilation_cta::before,
.viam_ouraffilation_cta::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.viam_ouraffilation_cta::before {
    background: radial-gradient(rgba(42, 67, 147, 0.05) 0%, transparent 70%);
    top: -150px;
    left: -150px;
}

.viam_ouraffilation_cta::after {
    background: radial-gradient(rgba(240, 78, 35, 0.05) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
}

.viam_ouraffilation_cta_title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 20px;
}

.viam_ouraffilation_cta_text {
    font-size: 1.1rem;
    color: #4b4b6b;
    max-width: 700px;
    margin: 0 auto 30px;
}

.viam_ouraffilation_cta_text strong {
    color: #2a4393;
}

.viam_ouraffilation_cta_button {
    display: inline-block;
    padding: 15px 40px;
    background: #2a4393;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(42, 67, 147, 0.2);
}

.viam_ouraffilation_cta_button:hover {
    background: #1e2f6d;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(42, 67, 147, 0.3);
}

.viam_ouraffilation_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.viam_ouraffilation_bg_shape {
    position: absolute;
    z-index: -1;
}

.viam_ouraffilation_bg_shape1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(rgba(42, 67, 147, 0.03) 0%, transparent 70%);
    top: -300px;
    right: -300px;
}

.viam_ouraffilation_bg_shape2 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(rgba(240, 78, 35, 0.03) 0%, transparent 70%);
    bottom: -250px;
    left: -250px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .viam_ouraffilation {
        padding: 80px 0;
    }

    .viam_ouraffilation_title {
        font-size: 2.8rem;
    }

    .viam_ouraffilation_stats {
        gap: 30px;
    }

    .viam_ouraffilation_stat {
        width: 180px;
    }

    .viam_ouraffilation_stat_value {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .viam_ouraffilation {
        padding: 60px 0;
    }

    .viam_ouraffilation_title {
        font-size: 2.4rem;
    }

    .viam_ouraffilation_description {
        font-size: 1rem;
    }

    .viam_ouraffilation_category {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .viam_ouraffilation_stats {
        gap: 20px;
    }

    .viam_ouraffilation_stat {
        width: 150px;
    }

    .viam_ouraffilation_stat_value {
        font-size: 2.5rem;
    }

    .viam_ouraffilation_cta_title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .viam_ouraffilation {
        padding: 50px 0;
    }

    .viam_ouraffilation_title {
        font-size: 2rem;
    }

    .viam_ouraffilation_categories {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .viam_ouraffilation_category {
        width: 80%;
        text-align: center;
    }

    .viam_ouraffilation_stats {
        gap: 30px;
    }

    .viam_ouraffilation_stat {
        width: 130px;
    }

    .viam_ouraffilation_stat_value {
        font-size: 2.2rem;
    }

    .viam_ouraffilation_cta {
        padding: 30px 20px;
    }

    .viam_ouraffilation_cta_button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
/*about us area css*/
.viam_aboutusarea {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.viam_aboutusarea_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.viam_aboutusarea_content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.viam_aboutusarea_image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
}

.viam_aboutusarea_image_container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 115%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.viam_aboutusarea_image_main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.viam_aboutusarea_image_container:hover .viam_aboutusarea_image_main {
    transform: scale(1.05);
}

.viam_aboutusarea_shape {
    position: absolute;
    z-index: -1;
}

.viam_aboutusarea_shape1 {
    width: 120px;
    height: 120px;
    background: #2a4393;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -40px;
    left: -40px;
    opacity: 0.1;
    animation: morphShape 15s infinite alternate;
}

.viam_aboutusarea_shape2 {
    width: 80px;
    height: 80px;
    background: #ffd70d;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: -30px;
    right: -30px;
    opacity: 0.15;
    animation: morphShape 12s infinite alternate-reverse;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.viam_aboutusarea_image_badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #2a4393;
    color: #ffffff;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(42, 67, 147, 0.3);
    z-index: 2;
}

.viam_aboutusarea_image_badge span {
    color: #ffd70d;
}

.viam_aboutusarea_text {
    flex: 1;
    min-width: 300px;
}

.viam_aboutusarea_subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2a4393;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.viam_aboutusarea_subtitle::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #2a4393;
    top: 50%;
    margin-left: 10px;
}

.viam_aboutusarea_title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e1e2f;
    margin-bottom: 25px;
    line-height: 1.2;
}

.viam_aboutusarea_title span {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.viam_aboutusarea_title span::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 12px;
    background: rgba(255, 215, 13, 0.4);
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.viam_aboutusarea_description {
    margin-bottom: 25px;
    color: #4b4b6b;
    font-size: 1.05rem;
    line-height: 1.8;
}

.viam_aboutusarea_highlight {
    color: #2a4393;
    font-weight: 600;
}

.viam_aboutusarea_features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.viam_aboutusarea_feature {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.viam_aboutusarea_feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.viam_aboutusarea_feature_icon {
    font-size: 1.5rem;
    color: #2a4393;
    margin-right: 15px;
    margin-top: 5px;
}

.viam_aboutusarea_feature_text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e1e2f;
}

.viam_aboutusarea_buttons {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.viam_aboutusarea_button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.viam_aboutusarea_button_primary {
    background: #2a4393;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(42, 67, 147, 0.2);
}

.viam_aboutusarea_button_primary:hover {
    background: #1e2f6d;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(42, 67, 147, 0.3);
}

.viam_aboutusarea_button_secondary {
    background: transparent;
    color: #2a4393;
    border: 2px solid #2a4393;
}

.viam_aboutusarea_button_secondary:hover {
    background: rgba(42, 67, 147, 0.05);
    transform: translateY(-5px);
}

.viam_aboutusarea_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.viam_aboutusarea_bg_shape {
    position: absolute;
    z-index: -1;
}

.viam_aboutusarea_bg_shape1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(rgba(42, 67, 147, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
}

.viam_aboutusarea_bg_shape2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(rgba(240, 78, 35, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -300px;
    left: -300px;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .viam_aboutusarea {
        padding: 80px 0;
    }

    .viam_aboutusarea_title {
        font-size: 2.5rem;
    }

    .viam_aboutusarea_content {
        gap: 40px;
    }

    .viam_aboutusarea_features {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .viam_aboutusarea {
        padding: 60px 0;
    }

    .viam_aboutusarea_content {
        flex-direction: column-reverse;
    }

    .viam_aboutusarea_image {
        max-width: 100%;
    }

    .viam_aboutusarea_title {
        font-size: 2.2rem;
    }

    .viam_aboutusarea_description {
        font-size: 1rem;
    }

    .viam_aboutusarea_feature {
        padding: 12px;
    }

    .viam_aboutusarea_feature_icon {
        font-size: 1.3rem;
    }

    .viam_aboutusarea_feature_text {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    .viam_aboutusarea {
        padding: 50px 0;
    }

    .viam_aboutusarea_title {
        font-size: 1.8rem;
    }

    .viam_aboutusarea_subtitle {
        font-size: 1rem;
    }

    .viam_aboutusarea_image_badge {
        padding: 10px 20px;
        font-size: 0.9rem;
        right: 0;
        bottom: 20px;
    }

    .viam_aboutusarea_features {
        grid-template-columns: 1fr;
    }

    .viam_aboutusarea_buttons {
        flex-direction: column;
        gap: 15px;
    }

    .viam_aboutusarea_button {
        width: 100%;
        text-align: center;
    }
}

/* mvv area css */
.viam_mvv {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.viam_mvv_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.viam_mvv_header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.viam_mvv_header_title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e1e2f;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.viam_mvv_header_title::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 4px;
    background: #f04e23;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.viam_mvv_header_text {
    max-width: 800px;
    margin: 0 auto;
    color: #4b4b6b;
    font-size: 1.1rem;
}

.viam_mvv_cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.viam_mvv_card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.viam_mvv_card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.viam_mvv_card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 67, 147, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

.viam_mvv_card_header {
    padding: 30px;
    display: flex;
    align-items: center;
    position: relative;
}

.viam_mvv_card_header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: linear-gradient(to right, rgba(42, 67, 147, 0.2), transparent);
}

.viam_mvv_card_icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(42, 67, 147, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.8rem;
    color: #2a4393;
    flex-shrink: 0;
}

.viam_mvv_card:nth-child(2) .viam_mvv_card_icon {
    background: rgba(240, 78, 35, 0.1);
    color: #f04e23;
}

.viam_mvv_card:nth-child(3) .viam_mvv_card_icon {
    background: rgba(255, 215, 13, 0.1);
    color: #e6be00;
}

.viam_mvv_card_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e1e2f;
}

.viam_mvv_card_body {
    padding: 30px;
}

.viam_mvv_card_text {
    color: #4b4b6b;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.viam_mvv_card_highlight {
    color: #2a4393;
    font-weight: 600;
}

.viam_mvv_card_values {
    margin-top: 25px;
}

.viam_mvv_card_value {
    display: flex;
    margin-bottom: 20px;
}

.viam_mvv_card_value_icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(42, 67, 147, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #2a4393;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.viam_mvv_card_value_text {
    flex: 1;
}

.viam_mvv_card_value_title {
    font-weight: 600;
    color: #1e1e2f;
    margin-bottom: 5px;
}

.viam_mvv_card_value_description {
    font-size: 0.9rem;
    color: #4b4b6b;
}

.viam_mvv_pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
}

.viam_mvv_decoration {
    position: absolute;
    z-index: 1;
}

.viam_mvv_decoration1 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(rgba(42, 67, 147, 0.05) 0%, transparent 70%);
    top: 10%;
    left: -100px;
}

.viam_mvv_decoration2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(rgba(240, 78, 35, 0.05) 0%, transparent 70%);
    bottom: 10%;
    right: -150px;
}

.viam_mvv_decoration3 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(rgba(255, 215, 13, 0.05) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .viam_mvv {
        padding: 80px 0;
    }
    
    .viam_mvv_header_title {
        font-size: 2.4rem;
    }
    
    .viam_mvv_card {
        min-width: calc(50% - 15px);
    }
}

@media screen and (max-width: 768px) {
    .viam_mvv {
        padding: 60px 0;
    }
    
    .viam_mvv_header_title {
        font-size: 2rem;
    }
    
    .viam_mvv_header_text {
        font-size: 1rem;
    }
    
    .viam_mvv_card {
        min-width: 100%;
    }
    
    .viam_mvv_card_header {
        padding: 25px;
    }
    
    .viam_mvv_card_body {
        padding: 25px;
    }
    
    .viam_mvv_card_icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .viam_mvv_card_title {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 576px) {
    .viam_mvv {
        padding: 50px 0;
    }
    
    .viam_mvv_header_title {
        font-size: 1.8rem;
    }
    
    .viam_mvv_cards {
        gap: 25px;
    }
    
    .viam_mvv_card_header {
        padding: 20px;
    }
    
    .viam_mvv_card_body {
        padding: 20px;
    }
    
    .viam_mvv_card_value {
        align-items: flex-start;
    }
    
    .viam_mvv_card_value_icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
/* services area css*/
.viam_services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff, #f2f4fa);
    overflow: hidden;
}

.viam_services__container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.viam_services__header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.viam_services__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a4393;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.viam_services__title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #f04e23;
    border-radius: 2px;
}

.viam_services__subtitle {
    font-size: 1.1rem;
    color: #4b4b6b;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 1.5rem;
    font-style: italic;
}

.viam_services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.viam_services__card {
    background-color: #fdfdfd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #dcdfe8;
}

.viam_services__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(42, 67, 147, 0.15);
}

.viam_services__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2a4393, #ffd70d);
    z-index: 2;
}

.viam_services__card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.viam_services__card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(42, 67, 147, 0.1);
    margin-bottom: 1.5rem;
}

.viam_services__card-icon i {
    font-size: 28px;
    color: #2a4393;
}

.viam_services__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2a4393;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 15px;
}

.viam_services__card-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #ffd70d;
    border-radius: 50%;
}

.viam_services__card-description {
    color: #4b4b6b;
    font-size: 0.95rem;
    flex-grow: 1;
}

.viam_services__card-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(42, 67, 147, 0.07);
    line-height: 1;
}

.viam_services__cta {
    text-align: center;
    margin-top: 3.5rem;
}

.viam_services__button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #2a4393;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(42, 67, 147, 0.3);
}

.viam_services__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.viam_services__button:hover {
    background-color: #1e2f6d;
    transform: translateY(-3px);
}

.viam_services__button:hover::before {
    left: 100%;
}

.viam_services__decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 215, 13, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.viam_services__decoration-1 {
    top: -150px;
    left: -150px;
}

.viam_services__decoration-2 {
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background-color: rgba(42, 67, 147, 0.05);
}

.viam_services__badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 3;
}

@media screen and (max-width: 768px) {
    .viam_services {
        padding: 4rem 0;
    }

    .viam_services__title {
        font-size: 2rem;
    }

    .viam_services__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .viam_services__card-content {
        padding: 1.5rem;
    }
    
    .viam_services__card {
        height: auto;
        min-height: 230px;
    }
}

@media screen and (max-width: 480px) {
    .viam_services {
        padding: 3rem 0;
    }

    .viam_services__title {
        font-size: 1.8rem;
    }

    .viam_services__subtitle {
        font-size: 1rem;
    }

    .viam_services__card-title {
        font-size: 1.2rem;
    }
}
/* chairman message */
.viam_chairmanmessage {
    padding: 6rem 0;
    background-color: #f2f4fa;
    position: relative;
    overflow: hidden;
}

.viam_chairmanmessage__container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.viam_chairmanmessage__content {
    flex: 1;
    min-width: 300px;
    padding-right: 3rem;
}

.viam_chairmanmessage__header {
    margin-bottom: 1.5rem;
    position: relative;
}

.viam_chairmanmessage__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2a4393;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.viam_chairmanmessage__title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #f04e23;
    border-radius: 2px;
}

.viam_chairmanmessage__text {
    margin-bottom: 1.5rem;
    color: #4b4b6b;
    line-height: 1.8;
}

.viam_chairmanmessage__text strong {
    color: #2a4393;
    font-weight: 600;
}

.viam_chairmanmessage__signature {
    margin-top: 2rem;
    font-style: italic;
    color: #1e1e2f;
}

.viam_chairmanmessage__name {
    font-weight: 700;
    color: #2a4393;
}

.viam_chairmanmessage__position {
    font-size: 0.9rem;
    color: #4b4b6b;
}

.viam_chairmanmessage__image-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

.viam_chairmanmessage__image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(42, 67, 147, 0.15);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.5s ease;
}

.viam_chairmanmessage__image-container:hover {
    transform: scale(1.02) rotateY(5deg);
}

.viam_chairmanmessage__image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.viam_chairmanmessage__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 67, 147, 0.85), rgba(27, 42, 96, 0.7));
    opacity: 0.2;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.viam_chairmanmessage__image-container:hover .viam_chairmanmessage__image-overlay {
    opacity: 0.4;
}

.viam_chairmanmessage__image-frame {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(255, 215, 13, 0.3);
    border-radius: 5px;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.4s ease;
}

.viam_chairmanmessage__image-container:hover .viam_chairmanmessage__image-frame {
    transform: scale(1);
    opacity: 1;
}

.viam_chairmanmessage__float-shape {
    position: absolute;
    border-radius: 50%;
    background-color: #ffd70d;
    opacity: 0.1;
    animation: floatAnimation 8s ease-in-out infinite;
}

.viam_chairmanmessage__shape-1 {
    width: 100px;
    height: 100px;
    top: -50px;
    right: 30%;
    animation-delay: 0s;
}

.viam_chairmanmessage__shape-2 {
    width: 70px;
    height: 70px;
    bottom: 50px;
    left: 10%;
    background-color: #f04e23;
    animation-delay: 2s;
}

.viam_chairmanmessage__shape-3 {
    width: 120px;
    height: 120px;
    bottom: -60px;
    right: 10%;
    background-color: #2a4393;
    animation-delay: 4s;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.viam_chairmanmessage__quote-icon {
    font-size: 4rem;
    color: rgba(42, 67, 147, 0.07);
    line-height: 1;
    position: absolute;
    top: 2rem;
    left: 0;
    z-index: -1;
}

.viam_chairmanmessage__background-shape {
    position: absolute;
    z-index: 0;
}

.viam_chairmanmessage__bg-shape-1 {
    width: 500px;
    height: 500px;
    background-color: rgba(42, 67, 147, 0.03);
    border-radius: 50%;
    top: -250px;
    left: -200px;
}

.viam_chairmanmessage__bg-shape-2 {
    width: 400px;
    height: 400px;
    background-color: rgba(255, 215, 13, 0.03);
    border-radius: 50%;
    bottom: -200px;
    right: -100px;
}

@media screen and (max-width: 992px) {
    .viam_chairmanmessage__container {
        flex-direction: column-reverse;
    }

    .viam_chairmanmessage__content {
        padding-right: 0;
        margin-top: 3rem;
        max-width: 100%;
    }

    .viam_chairmanmessage__image-wrapper {
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }

    .viam_chairmanmessage__image-container {
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .viam_chairmanmessage {
        padding: 4rem 0;
    }

    .viam_chairmanmessage__title {
        font-size: 1.8rem;
    }

    .viam_chairmanmessage__image-container {
        height: 350px;
    }
}

@media screen and (max-width: 480px) {
    .viam_chairmanmessage {
        padding: 3rem 0;
    }

    .viam_chairmanmessage__title {
        font-size: 1.6rem;
    }

    .viam_chairmanmessage__image-container {
        height: 300px;
    }

    .viam_chairmanmessage__text {
        font-size: 0.95rem;
    }
}
/* breadcrumb area css */
.viam_breadcrumb {
    position: relative;
    overflow: hidden;
    background-color: #f2f4fa;
    padding: 2rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.viam_breadcrumb__container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.viam_breadcrumb__left {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.viam_breadcrumb__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a4393;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.viam_breadcrumb__title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #f04e23;
    border-radius: 2px;
}

.viam_breadcrumb__path {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.viam_breadcrumb__item {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}

.viam_breadcrumb__link {
    color: #4b4b6b;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.viam_breadcrumb__link:hover {
    color: #2a4393;
    background-color: rgba(42, 67, 147, 0.05);
}

.viam_breadcrumb__link--active {
    color: #2a4393;
    font-weight: 600;
    background-color: rgba(42, 67, 147, 0.05);
}

.viam_breadcrumb__separator {
    color: #dcdfe8;
    margin: 0 0.3rem;
    font-size: 0.8rem;
}

.viam_breadcrumb__description {
    margin-top: 1.5rem;
    color: #4b4b6b;
    font-size: 1rem;
    max-width: 600px;
}

.viam_breadcrumb__right {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.viam_breadcrumb__gallery {
    position: relative;
    width: 100%;
    height: 300px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.viam_breadcrumb__image-container {
    position: absolute;
    width: 140px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform-origin: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    border: 3px solid #ffffff;
}

.viam_breadcrumb__image-container:hover {
    transform: scale(1.05) translateZ(20px);
    box-shadow: 0 15px 30px rgba(42, 67, 147, 0.2);
    z-index: 10;
}

.viam_breadcrumb__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.viam_breadcrumb__image-container:hover .viam_breadcrumb__image {
    transform: scale(1.1);
}

.viam_breadcrumb__image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.viam_breadcrumb__image-container:hover .viam_breadcrumb__image-overlay {
    transform: translateY(0);
}

.viam_breadcrumb__image-1 {
    top: 20px;
    left: 10%;
    transform: rotate(-5deg);
    animation: float1 7s ease-in-out infinite;
}

.viam_breadcrumb__image-2 {
    top: 60px;
    left: 35%;
    transform: rotate(3deg);
    animation: float2 6s ease-in-out infinite;
}

.viam_breadcrumb__image-3 {
    top: 40px;
    right: 10%;
    transform: rotate(7deg);
    animation: float3 8s ease-in-out infinite;
}

.viam_breadcrumb__image-4 {
    bottom: 30px;
    left: 20%;
    transform: rotate(-8deg);
    animation: float4 9s ease-in-out infinite;
}

.viam_breadcrumb__image-5 {
    bottom: 10px;
    right: 25%;
    transform: rotate(5deg);
    animation: float5 7.5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-10px); }
}

@keyframes float2 {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-8px); }
}

@keyframes float3 {
    0%, 100% { transform: rotate(7deg) translateY(0); }
    50% { transform: rotate(7deg) translateY(-12px); }
}

@keyframes float4 {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50% { transform: rotate(-8deg) translateY(-7px); }
}

@keyframes float5 {
    0%, 100% { transform: rotate(5deg) translateY(0); }
    50% { transform: rotate(5deg) translateY(-10px); }
}

.viam_breadcrumb__circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    animation: pulse 10s linear infinite;
}

.viam_breadcrumb__circle-1 {
    width: 200px;
    height: 200px;
    background-color: #2a4393;
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.viam_breadcrumb__circle-2 {
    width: 150px;
    height: 150px;
    background-color: #ffd70d;
    bottom: -70px;
    left: 20%;
    animation-delay: 3s;
}

.viam_breadcrumb__circle-3 {
    width: 100px;
    height: 100px;
    background-color: #f04e23;
    top: 50%;
    left: -30px;
    animation-delay: 5s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

@media screen and (max-width: 992px) {
    .viam_breadcrumb__container {
        flex-direction: column;
    }

    .viam_breadcrumb__left {
        padding-right: 0;
        margin-bottom: 2rem;
        width: 100%;
    }

    .viam_breadcrumb__right {
        width: 100%;
    }

    .viam_breadcrumb__gallery {
        height: 270px;
    }

    .viam_breadcrumb__image-container {
        width: 120px;
        height: 150px;
    }
}

@media screen and (max-width: 768px) {
    .viam_breadcrumb {
        padding: 1.5rem 0;
    }

    .viam_breadcrumb__title {
        font-size: 2rem;
    }

    .viam_breadcrumb__description {
        font-size: 0.95rem;
    }

    .viam_breadcrumb__gallery {
        height: 240px;
    }

    .viam_breadcrumb__image-container {
        width: 100px;
        height: 130px;
    }
}

@media screen and (max-width: 480px) {
    .viam_breadcrumb__title {
        font-size: 1.7rem;
    }

    .viam_breadcrumb__path {
        margin-top: 1.2rem;
    }

    .viam_breadcrumb__link {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }

    .viam_breadcrumb__description {
        font-size: 0.9rem;
        margin-top: 1.2rem;
    }

    .viam_breadcrumb__gallery {
        height: 220px;
    }

    .viam_breadcrumb__image-container {
        width: 90px;
        height: 120px;
    }
}
/* gallery area css */

.viam_gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f2f4fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.viam_gallery__container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.viam_gallery__header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.viam_gallery__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a4393;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.viam_gallery__title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f04e23;
    border-radius: 2px;
}

.viam_gallery__subtitle {
    font-size: 1.1rem;
    color: #4b4b6b;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 1.5rem;
}

.viam_gallery__filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    gap: 0.8rem;
}

.viam_gallery__filter-btn {
    padding: 0.6rem 1.2rem;
    background: #ffffff;
    border: 1px solid #dcdfe8;
    border-radius: 30px;
    color: #4b4b6b;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.viam_gallery__filter-btn:hover {
    background-color: #2a4393;
    color: #ffffff;
    border-color: #2a4393;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 67, 147, 0.15);
}

.viam_gallery__filter-btn--active {
    background-color: #2a4393;
    color: #ffffff;
    border-color: #2a4393;
    box-shadow: 0 5px 15px rgba(42, 67, 147, 0.15);
}

.viam_gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.viam_gallery__item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1;
}

.viam_gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(42, 67, 147, 0.15);
}

.viam_gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.viam_gallery__item:hover .viam_gallery__image {
    transform: scale(1.1);
}

.viam_gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(30, 30, 47, 0.8), transparent);
    color: #ffffff;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.viam_gallery__item:hover .viam_gallery__overlay {
    transform: translateY(0);
}

.viam_gallery__item-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.viam_gallery__item-category {
    font-size: 0.85rem;
    color: #ffd70d;
}

.viam_gallery__icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.viam_gallery__item:hover .viam_gallery__icon {
    opacity: 1;
    transform: translateY(0);
}

.viam_gallery__load-more {
    text-align: center;
    margin-top: 3rem;
}

.viam_gallery__load-btn {
    padding: 0.8rem 2rem;
    background-color: #2a4393;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(42, 67, 147, 0.15);
    position: relative;
    overflow: hidden;
}

.viam_gallery__load-btn:hover {
    background-color: #1e2f6d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(42, 67, 147, 0.2);
}

.viam_gallery__load-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.viam_gallery__load-btn:hover::after {
    left: 100%;
}

.viam_gallery__circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(240, 78, 35, 0.03);
    z-index: 1;
}

.viam_gallery__circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
}

.viam_gallery__circle-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -150px;
    background-color: rgba(42, 67, 147, 0.03);
}

.viam_gallery__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.viam_gallery__modal.active {
    opacity: 1;
    visibility: visible;
}

.viam_gallery__modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.viam_gallery__modal.active .viam_gallery__modal-content {
    transform: scale(1);
}

.viam_gallery__modal-image {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.viam_gallery__modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e1e2f;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.viam_gallery__modal-close:hover {
    background-color: #f04e23;
    color: #ffffff;
    transform: rotate(90deg);
}

.viam_gallery__modal-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #ffffff;
}

.viam_gallery__modal-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.viam_gallery__modal-category {
    font-size: 0.9rem;
    color: #dcdfe8;
}

@media screen and (max-width: 1200px) {
    .viam_gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .viam_gallery {
        padding: 4rem 0;
    }

    .viam_gallery__title {
        font-size: 2.2rem;
    }

    .viam_gallery__subtitle {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .viam_gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .viam_gallery__title {
        font-size: 2rem;
    }

    .viam_gallery__item-title {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .viam_gallery {
        padding: 3rem 0;
    }

    .viam_gallery__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .viam_gallery__title {
        font-size: 1.8rem;
    }

    .viam_gallery__subtitle {
        font-size: 0.95rem;
    }

    .viam_gallery__filter-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .viam_gallery__load-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }
}
/* contact area css */
.viam_contactus {
    position: relative;
    overflow: hidden;
    background-color: #f2f4fa;
}

.viam_contactus__wrapper {
    position: relative;
    z-index: 2;
}

.viam_contactus__top {
    background-color: #2a4393;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.viam_contactus__shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.viam_contactus__shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -150px;
    right: 10%;
}

.viam_contactus__shape-2 {
    width: 200px;
    height: 200px;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    bottom: -100px;
    left: 5%;
    animation: morph 15s linear infinite alternate;
}

@keyframes morph {
    0% {
        border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    }
    50% {
        border-radius: 58% 42% 33% 67% / 51% 64% 36% 49%;
    }
    100% {
        border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    }
}

.viam_contactus__container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.viam_contactus__header {
    text-align: center;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.viam_contactus__title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: #ffffff;
}

.viam_contactus__title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ffd70d;
    border-radius: 2px;
}

.viam_contactus__subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 1.5rem auto 0;
    padding-top: 1rem;
}

.viam_contactus__cards-wrapper {
    transform: translateY(50px);
}

.viam_contactus__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.viam_contactus__card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.viam_contactus__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(42, 67, 147, 0.2);
}

.viam_contactus__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2a4393, #f04e23);
    z-index: 0;
}

.viam_contactus__card-icon {
    width: 70px;
    height: 70px;
    background-color: #f2f4fa;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #2a4393;
    transition: all 0.3s ease;
}

.viam_contactus__card:hover .viam_contactus__card-icon {
    background-color: #2a4393;
    color: #ffffff;
    transform: rotateY(180deg);
}

.viam_contactus__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2a4393;
    margin-bottom: 0.8rem;
}

.viam_contactus__card-text {
    color: #4b4b6b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.viam_contactus__card-link {
    display: inline-block;
    margin-top: 1rem;
    color: #2a4393;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.viam_contactus__card-link:hover {
    color: #f04e23;
}

.viam_contactus__main {
    padding: 8rem 0 5rem;
    background-color: #ffffff;
}

.viam_contactus__content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.viam_contactus__form-wrapper {
    flex: 1.5;
    min-width: 350px;
    position: relative;
}

.viam_contactus__form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2a4393;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.viam_contactus__form-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #f04e23;
    border-radius: 2px;
}

.viam_contactus__form {
    position: relative;
}

.viam_contactus__form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.viam_contactus__form-group {
    flex: 1;
    min-width: 250px;
}

.viam_contactus__input,
.viam_contactus__textarea,
.viam_contactus__select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #dcdfe8;
    border-radius: 10px;
    background-color: #f8f9fc;
    color: #1e1e2f;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.viam_contactus__input:focus,
.viam_contactus__textarea:focus,
.viam_contactus__select:focus {
    border-color: #2a4393;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(42, 67, 147, 0.1);
}

.viam_contactus__textarea {
    min-height: 150px;
    resize: vertical;
}

.viam_contactus__submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2a4393;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.viam_contactus__submit:hover {
    background-color: #1e2f6d;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 67, 147, 0.2);
}

.viam_contactus__submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.viam_contactus__submit:hover::before {
    left: 100%;
}

.viam_contactus__info {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.viam_contactus__info-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2a4393;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.viam_contactus__info-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #f04e23;
    border-radius: 2px;
}

.viam_contactus__info-text {
    color: #4b4b6b;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.viam_contactus__info-list {
    list-style: none;
}

.viam_contactus__info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #dcdfe8;
}

.viam_contactus__info-item:last-child {
    border-bottom: none;
}

.viam_contactus__info-icon {
    width: 50px;
    height: 50px;
    background-color: #f2f4fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2a4393;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.viam_contactus__info-item:hover .viam_contactus__info-icon {
    background-color: #2a4393;
    color: #ffffff;
    transform: rotateY(180deg);
}

.viam_contactus__info-content {
    flex: 1;
}

.viam_contactus__info-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e1e2f;
    margin-bottom: 0.3rem;
}

.viam_contactus__info-value {
    color: #4b4b6b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.viam_contactus__info-link {
    color: #2a4393;
    text-decoration: none;
    transition: all 0.3s ease;
}

.viam_contactus__info-link:hover {
    color: #f04e23;
}

.viam_contactus__social {
    display: flex;
    gap: 0.7rem;
    margin-top: 2rem;
}

.viam_contactus__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f4fa;
    color: #2a4393;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.viam_contactus__social-link:hover {
    background-color: #2a4393;
    color: #ffffff;
    transform: translateY(-5px);
}

.viam_contactus__map {
    margin-top: 4rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    height: 350px;
}

.viam_contactus__map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media screen and (max-width: 992px) {
    .viam_contactus__title {
        font-size: 2.5rem;
    }
    
    .viam_contactus__card {
        max-width: 300px;
    }
    
    .viam_contactus__content {
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .viam_contactus__top {
        padding: 3rem 0;
    }
    
    .viam_contactus__title {
        font-size: 2.2rem;
    }
    
    .viam_contactus__subtitle {
        font-size: 1rem;
    }
    
    .viam_contactus__cards {
        gap: 15px;
    }
    
    .viam_contactus__card {
        min-width: 220px;
        padding: 1.5rem;
    }
    
    .viam_contactus__main {
        padding: 7rem 0 4rem;
    }
    
    .viam_contactus__form-title,
    .viam_contactus__info-title {
        font-size: 1.6rem;
    }
    
    .viam_contactus__map {
        height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .viam_contactus__top {
        padding: 2.5rem 0;
    }
    
    .viam_contactus__title {
        font-size: 1.8rem;
    }
    
    .viam_contactus__subtitle {
        font-size: 0.95rem;
    }
    
    .viam_contactus__cards-wrapper {
        transform: translateY(30px);
    }
    
    .viam_contactus__card {
        min-width: 100%;
        padding: 1.3rem;
    }
    
    .viam_contactus__main {
        padding: 5rem 0 3rem;
    }
    
    .viam_contactus__form-title,
    .viam_contactus__info-title {
        font-size: 1.4rem;
    }
    
    .viam_contactus__form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .viam_contactus__map {
        height: 250px;
        margin-top: 2.5rem;
    }
}
/* courses area css */

.viam_courses {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #f9f9fc, #f2f4fa);
}

.viam_courses_container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.viam_courses_header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.viam_courses_subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #f04e23;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    padding: 0 15px;
}

.viam_courses_subtitle::before,
.viam_courses_subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: #f04e23;
}

.viam_courses_subtitle::before {
    left: -40px;
}

.viam_courses_subtitle::after {
    right: -40px;
}

.viam_courses_title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2a4393;
    margin-bottom: 1.5rem;
    position: relative;
   
    padding-bottom: 1.5rem;
}

.viam_courses_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #2a4393, #f04e23);
    border-radius: 2px;
}

.viam_courses_description {
    font-size: 1.1rem;
    color: #4b4b6b;
    max-width: 700px;
    margin: 0 auto;
}

.viam_courses_tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    gap: 1.5rem;
}

.viam_courses_tab {
    padding: 1rem 2rem;
    background-color: transparent;
    border: 2px solid #2a4393;
    border-radius: 50px;
    color: #2a4393;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.viam_courses_tab.active {
    background-color: #2a4393;
    color: white;
    box-shadow: 0 5px 15px rgba(42, 67, 147, 0.2);
}

.viam_courses_tab:hover:not(.active) {
    background-color: rgba(42, 67, 147, 0.1);
    transform: translateY(-3px);
}

.viam_courses_tab_emoji {
    margin-right: 0.8rem;
}

.viam_courses_content {
    position: relative;
}

.viam_courses_panel {
    display: none;
}

.viam_courses_panel.active {
    display: block;
    animation: fadeUp 0.6s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.viam_courses_grid_page {
    display: none;
}

.viam_courses_grid_page.active {
    display: block;
}

.viam_courses_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.viam_courses_card {
    position: relative;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(220, 223, 232, 0.3);
}

.viam_courses_card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(42, 67, 147, 0.12);
}

.viam_courses_card_top {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.viam_courses_card_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
}

.viam_courses_card:hover .viam_courses_card_image {
    transform: scale(1.1);
}

.viam_courses_card_tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2a4393, #1e2f6d);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(42, 67, 147, 0.2);
}

.viam_courses_card_content {
    padding: 2rem;
}

.viam_courses_card_title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2a4393;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    border-bottom: 2px solid rgba(42, 67, 147, 0.1);
    padding-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.viam_courses_card:hover .viam_courses_card_title {
    color: #f04e23;
}

.viam_courses_card_description {
    color: #4b4b6b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.viam_courses_card_info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.viam_courses_card_feature {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #4b4b6b;
    background-color: #f8f9fc;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.viam_courses_card_feature_icon {
    margin-right: 6px;
}

.viam_courses_card_buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.viam_courses_card_apply {
    flex: 2;
}

.viam_courses_card_apply_btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #2a4393, #1e2f6d);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.viam_courses_card_apply_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.viam_courses_card_apply_btn:hover::before {
    left: 100%;
}

.viam_courses_card_apply_btn:hover {
    background: linear-gradient(135deg, #f04e23, #e03d12);
    box-shadow: 0 5px 15px rgba(240, 78, 35, 0.2);
}

.viam_courses_card_whatsapp {
    flex: 1;
}

.viam_courses_card_whatsapp_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.15);
}

.viam_courses_card_whatsapp_btn:hover {
    background-color: #1ea952;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.viam_courses_card_whatsapp_icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.viam_courses_pagination {
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
    gap: 0.5rem;
}

.viam_courses_pagination_dot {
    width: 12px;
    height: 12px;
    background-color: #dcdfe8;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.viam_courses_pagination_dot.active {
    background-color: #2a4393;
    transform: scale(1.3);
}

.viam_courses_see_more {
    text-align: center;
    margin-top: 4rem;
}

.viam_courses_see_more_btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #2a4393, #1e2f6d);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(42, 67, 147, 0.15);
    letter-spacing: 1px;
}

.viam_courses_see_more_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.viam_courses_see_more_btn:hover::before {
    left: 100%;
}

.viam_courses_see_more_btn:hover {
    background: linear-gradient(135deg, #f04e23, #e03d12);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(240, 78, 35, 0.2);
}

.viam_courses_see_more_btn_icon {
    margin-left: 0.8rem;
    transition: all 0.3s ease;
}

.viam_courses_see_more_btn:hover .viam_courses_see_more_btn_icon {
    transform: translateX(5px);
}

/* Shape decorations */
.viam_courses_shape {
    position: absolute;
    z-index: 1;
}

.viam_courses_shape-1 {
    top: 5%;
    right: 5%;
    width: 200px;
    height: 200px;
    border-radius: 32% 58% 69% 43% / 48% 32% 59% 55%;
    background-color: rgba(42, 67, 147, 0.03);
    animation: morphBlob 15s linear infinite alternate;
}

.viam_courses_shape-2 {
    bottom: 10%;
    left: 5%;
    width: 250px;
    height: 250px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background-color: rgba(240, 78, 35, 0.03);
    animation: morphBlob 20s linear infinite alternate-reverse;
}

@keyframes morphBlob {
    0% {
        border-radius: 32% 58% 69% 43% / 48% 32% 59% 55%;
    }
    25% {
        border-radius: 61% 39% 51% 49% / 57% 31% 69% 43%;
    }
    50% {
        border-radius: 40% 60% 42% 58% / 41% 51% 49% 59%;
    }
    75% {
        border-radius: 47% 53% 34% 66% / 65% 36% 64% 35%;
    }
    100% {
        border-radius: 32% 58% 69% 43% / 48% 32% 59% 55%;
    }
}

.viam_courses_dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(rgba(42, 67, 147, 0.03) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 1;
}

/* Fixed WhatsApp button */
.viam_whatsapp_fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.viam_whatsapp_fixed_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.viam_whatsapp_fixed_btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.6;
    z-index: -1;
    animation: pulseWA 2s infinite;
}

@keyframes pulseWA {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.viam_whatsapp_fixed_icon {
    color: white;
    font-size: 28px;
}

.viam_whatsapp_fixed_btn:hover {
    transform: scale(1.1) rotate(10deg);
}

.viam_whatsapp_fixed_tooltip {
    position: absolute;
    top: -70px;
    right: 0;
    background-color: white;
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    font-weight: 600;
    color: #1e1e2f;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.viam_whatsapp_fixed_tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.viam_whatsapp_fixed_btn:hover .viam_whatsapp_fixed_tooltip {
    opacity: 1;
    visibility: visible;
    top: -80px;
}

@media screen and (max-width: 992px) {
    .viam_courses {
        padding: 5rem 0;
    }

    .viam_courses_title {
        font-size: 3rem;
    }

    .viam_courses_grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .viam_courses {
        padding: 4rem 0;
    }

    .viam_courses_title {
        font-size: 2.5rem;
    }

    .viam_courses_subtitle::before,
    .viam_courses_subtitle::after {
        width: 25px;
    }

    .viam_courses_subtitle::before {
        left: -30px;
    }

    .viam_courses_subtitle::after {
        right: -30px;
    }

    .viam_courses_tabs {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0 auto 3rem;
    }

    .viam_courses_grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .viam_whatsapp_fixed_btn {
        width: 55px;
        height: 55px;
    }

    .viam_whatsapp_fixed_icon {
        font-size: 24px;
    }
}

@media screen and (max-width: 576px) {
    .viam_courses {
        padding: 3rem 0;
    }

    .viam_courses_title {
        font-size: 2rem;
    }

    .viam_courses_card_title {
        font-size: 1.3rem;
    }

    .viam_courses_card_buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .viam_whatsapp_fixed_btn {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20px;
    }

    .viam_whatsapp_fixed_icon {
        font-size: 22px;
    }
}

/* courses area css */
.viam_coursedetails {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fc, #f2f4fa);
}

.viam_coursedetails__container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.viam_coursedetails__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.viam_coursedetails__header-left {
    flex: 1;
    min-width: 320px;
}

.viam_coursedetails__breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.viam_coursedetails__breadcrumb-item {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}

.viam_coursedetails__breadcrumb-link {
    color: #4b4b6b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.viam_coursedetails__breadcrumb-link:hover {
    color: #2a4393;
}

.viam_coursedetails__breadcrumb-separator {
    color: #dcdfe8;
    margin: 0 0.5rem;
    font-size: 0.8rem;
}

.viam_coursedetails__badge {
    display: inline-block;
    background-color: #f04e23;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 30px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.viam_coursedetails__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2a4393;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.viam_coursedetails__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.viam_coursedetails__meta-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #4b4b6b;
}

.viam_coursedetails__meta-icon {
    margin-right: 0.5rem;
    color: #2a4393;
    font-size: 1.1rem;
}

.viam_coursedetails__header-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
}

.viam_coursedetails__cta {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    width: 100%;
    max-width: 350px;
    text-align: center;
    border: 1px solid rgba(220, 223, 232, 0.5);
}

.viam_coursedetails__cta-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2a4393;
    margin-bottom: 1.5rem;
}

.viam_coursedetails__apply-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #2a4393;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.viam_coursedetails__apply-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: 1;
}

.viam_coursedetails__apply-btn:hover::before {
    left: 100%;
}

.viam_coursedetails__apply-btn:hover {
    background-color: #1e2f6d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 67, 147, 0.2);
}

.viam_coursedetails__whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.viam_coursedetails__whatsapp-btn:hover {
    background-color: #1ea952;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.viam_coursedetails__whatsapp-icon {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.viam_coursedetails__content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.viam_coursedetails__main {
    flex: 2;
    min-width: 320px;
}

.viam_coursedetails__sidebar {
    flex: 1;
    min-width: 300px;
}

.viam_coursedetails__card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
    overflow: hidden;
    border: 1px solid rgba(220, 223, 232, 0.5);
}

.viam_coursedetails__card-header {
    background-color: #2a4393;
    color: white;
    padding: 1.5rem;
    position: relative;
}

.viam_coursedetails__card-title {
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.viam_coursedetails__card-icon {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.viam_coursedetails__card-body {
    padding: 2rem;
}

.viam_coursedetails__image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.viam_coursedetails__section-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #2a4393;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.viam_coursedetails__section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #f04e23;
    border-radius: 2px;
}

.viam_coursedetails__description {
    color: #4b4b6b;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.viam_coursedetails__tabs {
    margin-bottom: 2.5rem;
}

.viam_coursedetails__tab-list {
    display: flex;
    border-bottom: 1px solid rgba(220, 223, 232, 0.7);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.viam_coursedetails__tab {
    padding: 1rem 1.5rem;
    color: #4b4b6b;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.viam_coursedetails__tab.active {
    color: #2a4393;
    border-bottom-color: #2a4393;
}

.viam_coursedetails__tab:hover:not(.active) {
    color: #2a4393;
}

.viam_coursedetails__tab-content {
    display: none;
}

.viam_coursedetails__tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.viam_coursedetails__list {
    list-style: none;
    margin-bottom: 2rem;
}

.viam_coursedetails__list-item {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    color: #4b4b6b;
}

.viam_coursedetails__list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #f04e23;
}

.viam_coursedetails__features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.viam_coursedetails__feature {
    display: flex;
    align-items: center;
    background-color: #f8f9fc;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.viam_coursedetails__feature:hover {
    background-color: #2a4393;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 67, 147, 0.1);
}

.viam_coursedetails__feature-icon {
    background-color: #ffffff;
    color: #2a4393;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.viam_coursedetails__feature:hover .viam_coursedetails__feature-icon {
    background-color: #f04e23;
    color: #ffffff;
}

.viam_coursedetails__future-list {
    list-style: none;
    margin-bottom: 2rem;
}

.viam_coursedetails__future-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(220, 223, 232, 0.7);
}

.viam_coursedetails__future-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.viam_coursedetails__future-icon {
    background-color: rgba(42, 67, 147, 0.1);
    color: #2a4393;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.viam_coursedetails__future-item:hover .viam_coursedetails__future-icon {
    background-color: #2a4393;
    color: #ffffff;
    transform: rotateY(180deg);
}

.viam_coursedetails__future-content {
    flex: 1;
}

.viam_coursedetails__future-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a4393;
    margin-bottom: 0.5rem;
}

.viam_coursedetails__future-text {
    color: #4b4b6b;
    font-size: 0.95rem;
}

.viam_coursedetails__highlights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.viam_coursedetails__highlight {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 223, 232, 0.3);
}

.viam_coursedetails__highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 67, 147, 0.1);
}

.viam_coursedetails__highlight-header {
    background-color: #2a4393;
    color: white;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.viam_coursedetails__highlight-body {
    padding: 1.5rem;
}

.viam_coursedetails__highlight-list {
    list-style: none;
}

.viam_coursedetails__highlight-item {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #4b4b6b;
    font-size: 0.95rem;
}

.viam_coursedetails__highlight-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2a4393;
    font-weight: 600;
}

.viam_coursedetails__instructors {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.viam_coursedetails__instructor {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    padding: 1.5rem;
    border: 1px solid rgba(220, 223, 232, 0.3);
}

.viam_coursedetails__instructor:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 67, 147, 0.1);
}

.viam_coursedetails__instructor-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 5px solid rgba(42, 67, 147, 0.1);
    transition: all 0.3s ease;
}

.viam_coursedetails__instructor:hover .viam_coursedetails__instructor-avatar {
    border-color: #2a4393;
}

.viam_coursedetails__instructor-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a4393;
    margin-bottom: 0.5rem;
}

.viam_coursedetails__instructor-position {
    font-size: 0.9rem;
    color: #4b4b6b;
    margin-bottom: 1rem;
}

.viam_coursedetails__instructor-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.viam_coursedetails__instructor-social-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f8f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b4b6b;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.viam_coursedetails__instructor-social-link:hover {
    background-color: #2a4393;
    color: white;
}

.viam_coursedetails__quote {
    background-color: rgba(42, 67, 147, 0.05);
    border-left: 4px solid #2a4393;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 10px 10px 0;
    position: relative;
}

.viam_coursedetails__quote-text {
    color: #2a4393;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.viam_coursedetails__quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    color: rgba(42, 67, 147, 0.1);
    z-index: 0;
}

.viam_coursedetails__quote-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4b4b6b;
}

.viam_coursedetails__eligibility {
    margin-bottom: 2rem;
}

.viam_coursedetails__requirements {
    list-style: none;
    margin-bottom: 2rem;
}

.viam_coursedetails__requirement {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    color: #4b4b6b;
}

.viam_coursedetails__requirement::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #f04e23;
    font-weight: 600;
    font-size: 1.5rem;
}

.viam_coursedetails__documents {
    list-style: none;
    margin-bottom: 2rem;
}

.viam_coursedetails__document {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #4b4b6b;
}

.viam_coursedetails__document-icon {
    color: #2a4393;
    margin-right: 0.8rem;
}

@media screen and (max-width: 1024px) {
    .viam_coursedetails__title {
        font-size: 2.3rem;
    }
    
    .viam_coursedetails__header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .viam_coursedetails__header-right {
        width: 100%;
        justify-content: flex-start;
    }
    
    .viam_coursedetails__cta {
        max-width: 100%;
    }
    
    .viam_coursedetails__image {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .viam_coursedetails {
        padding: 3rem 0;
    }
    
    .viam_coursedetails__title {
        font-size: 2rem;
    }
    
    .viam_coursedetails__section-title {
        font-size: 1.5rem;
    }
    
    .viam_coursedetails__tab {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    .viam_coursedetails__title {
        font-size: 1.8rem;
    }
    
    .viam_coursedetails__badge {
        font-size: 0.7rem;
    }
    
    .viam_coursedetails__meta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .viam_coursedetails__tab-list {
        flex-direction: column;
        border-bottom: none;
    }
    
    .viam_coursedetails__tab {
        border: 1px solid rgba(220, 223, 232, 0.7);
        border-radius: 6px;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .viam_coursedetails__tab.active {
        background-color: #2a4393;
        color: white;
        border-color: #2a4393;
    }
    
    .viam_coursedetails__image {
        height: 250px;
    }
    
    .viam_coursedetails__card-body {
        padding: 1.5rem;
    }
}
/* appplication area css */
.viam_application_form {
    max-width: 650px;
    margin: 30px auto;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(42, 67, 147, 0.12);
    overflow: hidden;
    position: relative;
}

.viam_application_form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #2a4393 0%, #f04e23 50%, #ffd70d 100%);
}

.viam_application_form .form-header {
    position: relative;
    background-color: #2a4393;
    color: #ffffff;
    padding: 35px 30px;
    text-align: center;
    overflow: hidden;
}

.viam_application_form .form-header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 215, 13, 0.2);
    border-radius: 50%;
}

.viam_application_form .form-header::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 200px;
    height: 200px;
    background-color: rgba(240, 78, 35, 0.15);
    border-radius: 50%;
    z-index: 0;
}

.viam_application_form .form-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.viam_application_form .form-header p {
    font-size: 16px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.viam_application_form .form-content {
    padding: 40px 30px;
    position: relative;
}

.viam_application_form .form-content::before {
    content: "";
    position: absolute;
    top: 50px;
    right: -80px;
    width: 200px;
    height: 200px;
    background-color: rgba(42, 67, 147, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.viam_application_form .form-group {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.viam_application_form .floating-label {
    position: relative;
}

.viam_application_form .floating-label input,
.viam_application_form .floating-label textarea {
    height: 56px;
    padding: 20px 16px 0;
    font-size: 16px;
}

.viam_application_form .floating-label textarea {
    height: auto;
    min-height: 120px;
    padding-top: 24px;
}

.viam_application_form .floating-label label {
    position: absolute;
    top: 20px;
    left: 16px;
    transition: all 0.25s ease;
    pointer-events: none;
    font-size: 16px;
    color: #4b4b6b;
    z-index: 2;
}

.viam_application_form .floating-label input:focus ~ label,
.viam_application_form .floating-label textarea:focus ~ label,
.viam_application_form .floating-label input:not(:placeholder-shown) ~ label,
.viam_application_form .floating-label textarea:not(:placeholder-shown) ~ label {
    top: 7px;
    font-size: 12px;
    color: #2a4393;
}

.viam_application_form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1e1e2f;
    font-size: 15px;
}

.viam_application_form label .required {
    color: #f04e23;
    margin-left: 4px;
}

.viam_application_form input,
.viam_application_form select,
.viam_application_form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #dcdfe8;
    border-radius: 12px;
    font-size: 15px;
    color: #1e1e2f;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.viam_application_form input:focus,
.viam_application_form select:focus,
.viam_application_form textarea:focus {
    outline: none;
    border-color: #2a4393;
    box-shadow: 0 0 0 4px rgba(42, 67, 147, 0.1);
}

.viam_application_form input::placeholder,
.viam_application_form textarea::placeholder {
    color: transparent;
}

.viam_application_form textarea {
    min-height: 120px;
    resize: vertical;
}

.viam_application_form .type-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.viam_application_form .type-card {
    position: relative;
}

.viam_application_form .type-card input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.viam_application_form .type-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 15px;
    border: 2px solid #dcdfe8;
    border-radius: 16px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    min-height: 140px;
}

.viam_application_form .type-label .icon {
    width: 48px;
    height: 48px;
    background-color: rgba(42, 67, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.viam_application_form .type-label .icon svg {
    width: 24px;
    height: 24px;
    fill: #2a4393;
    transition: all 0.3s ease;
}

.viam_application_form .type-label span {
    font-weight: 500;
    font-size: 14px;
}

.viam_application_form .type-card input:checked + .type-label {
    border-color: #2a4393;
    background-color: rgba(42, 67, 147, 0.05);
}

.viam_application_form .type-card input:checked + .type-label .icon {
    background-color: #2a4393;
}

.viam_application_form .type-card input:checked + .type-label .icon svg {
    fill: #ffffff;
}

/* Date Picker Styling */
.viam_application_form .calendar-wrapper {
    margin-top: 15px;
    margin-bottom: 25px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(42, 67, 147, 0.08);
    overflow: hidden;
    border: 2px solid #dcdfe8;
}

.viam_application_form .calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #f8f9fc;
    border-bottom: 1px solid #dcdfe8;
}

.viam_application_form .calendar-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e1e2f;
}

.viam_application_form .calendar-nav {
    display: flex;
    gap: 10px;
}

.viam_application_form .calendar-nav-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #dcdfe8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.viam_application_form .calendar-nav-btn:hover {
    background-color: #2a4393;
    border-color: #2a4393;
    color: #ffffff;
}

.viam_application_form .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 15px;
    gap: 5px;
}

.viam_application_form .calendar-weekday {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #4b4b6b;
    height: 32px;
    text-transform: uppercase;
}

.viam_application_form .calendar-day {
    position: relative;
    height: 38px;
}

.viam_application_form .calendar-day input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.viam_application_form .calendar-day input:disabled {
    cursor: default;
}

.viam_application_form .calendar-day-label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.viam_application_form .calendar-day input:checked + .calendar-day-label {
    background-color: #2a4393;
    color: #ffffff;
    font-weight: 600;
}

.viam_application_form .calendar-day input:not(:disabled):not(:checked) + .calendar-day-label:hover {
    background-color: rgba(42, 67, 147, 0.1);
}

.viam_application_form .calendar-day.disabled .calendar-day-label {
    color: #b0b5c5;
    cursor: default;
}

.viam_application_form .calendar-day.today .calendar-day-label {
    background-color: rgba(255, 215, 13, 0.2);
    font-weight: 600;
}

.viam_application_form .calendar-day.has-events .calendar-day-label::after {
    content: "";
    position: absolute;
    bottom: 6px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #f04e23;
}

.viam_application_form .section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e1e2f;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(42, 67, 147, 0.1);
    display: flex;
    align-items: center;
}

.viam_application_form .section-title .step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #2a4393;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 12px;
}

.viam_application_form .section-divider {
    height: 2px;
    background: linear-gradient(90deg, #2a4393, transparent);
    margin: 35px 0;
    position: relative;
}

.viam_application_form .section-divider::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 18px;
    height: 18px;
    background-color: #2a4393;
    border-radius: 50%;
}

.viam_application_form .accent-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background-color: rgba(255, 215, 13, 0.2);
    color: #1e1e2f;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}

.viam_application_form .accent-badge::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ffd70d;
    border-radius: 50%;
    margin-right: 8px;
}

.viam_application_form .time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.viam_application_form .time-slot {
    position: relative;
}

.viam_application_form .time-slot input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.viam_application_form .time-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    border: 2px solid #dcdfe8;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    background-color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.viam_application_form .time-slot input:checked + .time-label {
    background-color: #2a4393;
    border-color: #2a4393;
    color: #ffffff;
}

.viam_application_form .time-slot input:disabled + .time-label {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

.viam_application_form .consultant-selector {
    position: relative;
    z-index: 1;
}

.viam_application_form .consultant-selector select {
    appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232a4393'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.viam_application_form .checkbox-group {
    margin-top: 25px;
}

.viam_application_form .checkbox-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
}

.viam_application_form .checkbox-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.viam_application_form .checkbox-item .custom-checkbox {
    min-width: 22px;
    height: 22px;
    border: 2px solid #dcdfe8;
    border-radius: 6px;
    margin-right: 12px;
    margin-top: 2px;
    position: relative;
    transition: all 0.2s ease;
}

.viam_application_form .checkbox-item .custom-checkbox::after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.viam_application_form .checkbox-item input:checked ~ .custom-checkbox {
    background-color: #2a4393;
    border-color: #2a4393;
}

.viam_application_form .checkbox-item input:checked ~ .custom-checkbox::after {
    display: block;
}

.viam_application_form .checkbox-item label {
    font-weight: normal;
    font-size: 14px;
    margin-bottom: 0;
    cursor: pointer;
    user-select: none;
}

.viam_application_form .form-note {
    margin-top: 25px;
    padding: 15px;
    background-color: rgba(42, 67, 147, 0.05);
    border-left: 3px solid #2a4393;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
}

.viam_application_form .form-note .note-icon {
    min-width: 24px;
    height: 24px;
    background-color: rgba(42, 67, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    margin-top: 2px;
}

.viam_application_form .form-note .note-icon svg {
    width: 12px;
    height: 12px;
    fill: #2a4393;
}

.viam_application_form .form-note p {
    font-size: 14px;
    color: #4b4b6b;
    margin: 0;
}

.viam_application_form .form-buttons {
    padding: 30px;
    background-color: #f8f9fc;
    border-top: 1px solid #dcdfe8;
    text-align: right;
    position: relative;
}

.viam_application_form .form-buttons::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2a4393 0%, #f04e23 50%, #ffd70d 100%);
}

.viam_application_form .btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.viam_application_form .btn-primary {
    background-color: #2a4393;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(42, 67, 147, 0.25);
    position: relative;
    overflow: hidden;
}

.viam_application_form .btn-primary:hover {
    background-color: #1e2f6d;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(42, 67, 147, 0.3);
}

.viam_application_form .btn-primary::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.viam_application_form .btn-primary:hover::after {
    left: 100%;
}

/* Toast notification */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #2a4393;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification .toast-icon {
    margin-right: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .viam_application_form .type-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .viam_application_form .form-header {
        padding: 25px 20px;
    }
    
    .viam_application_form .form-content,
    .viam_application_form .form-buttons {
        padding: 25px 20px;
    }
    
    .viam_application_form .form-header h1 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .viam_application_form .type-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .viam_application_form .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .viam_application_form .section-title {
        font-size: 16px;
    }
    
    .viam_application_form .form-header h1 {
        font-size: 22px;
    }
    /* faq css */
    .viam_faq {
        max-width: 1000px;
        margin: 40px auto;
        position: relative;
    }
    
    .viam_faq .faq-header {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
    }
    
    .viam_faq .faq-header h2 {
        font-size: 38px;
        font-weight: 700;
        color: #2a4393;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }
    
    .viam_faq .faq-header h2::after {
        content: "";
        position: absolute;
        width: 70px;
        height: 4px;
        background-color: #ffd70d;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .viam_faq .faq-header p {
        font-size: 18px;
        color: #4b4b6b;
        max-width: 700px;
        margin: 20px auto 0;
    }
    
    .viam_faq .faq-search {
        position: relative;
        max-width: 550px;
        margin: 0 auto 40px;
    }
    
    .viam_faq .faq-search input {
        width: 100%;
        padding: 18px 60px 18px 25px;
        border: none;
        border-radius: 50px;
        background-color: #ffffff;
        box-shadow: 0 5px 20px rgba(42, 67, 147, 0.08);
        font-size: 16px;
        color: #1e1e2f;
        transition: all 0.3s ease;
    }
    
    .viam_faq .faq-search input:focus {
        outline: none;
        box-shadow: 0 5px 25px rgba(42, 67, 147, 0.15);
    }
    
    .viam_faq .faq-search button {
        position: absolute;
        right: 8px;
        top: 8px;
        width: 44px;
        height: 44px;
        border: none;
        border-radius: 50%;
        background-color: #2a4393;
        color: #ffffff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .viam_faq .faq-search button:hover {
        background-color: #1e2f6d;
    }
    
    .viam_faq .faq-search svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }
    
    .viam_faq .faq-categories {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .viam_faq .category-btn {
        padding: 12px 24px;
        border: none;
        border-radius: 30px;
        background-color: #ffffff;
        color: #4b4b6b;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(42, 67, 147, 0.05);
    }
    
    .viam_faq .category-btn:hover {
        background-color: #f8f9fc;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(42, 67, 147, 0.1);
    }
    
    .viam_faq .category-btn.active {
        background-color: #2a4393;
        color: #ffffff;
    }
    
    .viam_faq .faq-container {
        background-color: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(42, 67, 147, 0.08);
        position: relative;
    }
    
    .viam_faq .faq-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, #2a4393 0%, #f04e23 50%, #ffd70d 100%);
    }
    
    .viam_faq .faq-item {
        border-bottom: 1px solid rgba(220, 223, 232, 0.6);
        overflow: hidden;
    }
    
    .viam_faq .faq-item:last-child {
        border-bottom: none;
    }
    
    .viam_faq .faq-question {
        padding: 25px 30px;
        background-color: #ffffff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s ease;
    }
    
    .viam_faq .faq-question:hover {
        background-color: #f8f9fc;
    }
    
    .viam_faq .faq-question h3 {
        font-size: 18px;
        font-weight: 600;
        color: #1e1e2f;
        flex: 1;
        padding-right: 20px;
        transition: all 0.3s ease;
    }
    
    .viam_faq .faq-toggle {
        min-width: 26px;
        height: 26px;
        border-radius: 50%;
        background-color: rgba(42, 67, 147, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .viam_faq .faq-toggle svg {
        width: 14px;
        height: 14px;
        fill: #2a4393;
        transition: all 0.3s ease;
    }
    
    .viam_faq .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, padding 0.3s ease;
        background-color: #f8f9fc;
    }
    
    .viam_faq .faq-answer-content {
        padding: 0 30px;
        color: #4b4b6b;
        font-size: 16px;
    }
    
    .viam_faq .faq-item.active .faq-question {
        background-color: #f8f9fc;
    }
    
    .viam_faq .faq-item.active .faq-question h3 {
        color: #2a4393;
    }
    
    .viam_faq .faq-item.active .faq-toggle {
        background-color: #2a4393;
        transform: rotate(180deg);
    }
    
    .viam_faq .faq-item.active .faq-toggle svg {
        fill: #ffffff;
    }
    
    .viam_faq .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 20px 0 30px;
    }
    
    .viam_faq .faq-footer {
        text-align: center;
        margin-top: 40px;
    }
    
    .viam_faq .faq-footer p {
        color: #4b4b6b;
        margin-bottom: 20px;
    }
    
    .viam_faq .support-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 30px;
        background-color: #2a4393;
        color: #ffffff;
        border: none;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 5px 15px rgba(42, 67, 147, 0.2);
        transition: all 0.3s ease;
    }
    
    .viam_faq .support-btn:hover {
        background-color: #1e2f6d;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(42, 67, 147, 0.25);
    }
    
    .viam_faq .support-btn svg {
        width: 18px;
        height: 18px;
        margin-right: 10px;
        fill: currentColor;
    }
    
    .viam_faq .faq-bg-element {
        position: absolute;
        z-index: -1;
    }
    
    .viam_faq .faq-bg-element.dot-grid {
        top: 40px;
        left: -60px;
        width: 150px;
        height: 150px;
        background-image: radial-gradient(#dcdfe8 2px, transparent 2px);
        background-size: 15px 15px;
    }
    
    .viam_faq .faq-bg-element.circle {
        bottom: 60px;
        right: -100px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(255, 215, 13, 0.1) 0%, rgba(240, 78, 35, 0.05) 100%);
    }
    
    .viam_faq .floating-badge {
        position: absolute;
        top: -15px;
        right: 30px;
        padding: 8px 20px;
        background-color: #ffd70d;
        color: #1e1e2f;
        font-size: 14px;
        font-weight: 600;
        border-radius: 30px;
        box-shadow: 0 5px 15px rgba(255, 215, 13, 0.3);
    }
    
    /* Animation for answering questions */
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    .viam_faq .faq-item.active .faq-question h3 {
        animation: pulse 0.5s ease;
    }
    
    /* Responsive styles */
    @media (max-width: 992px) {
        .viam_faq .faq-header h2 {
            font-size: 32px;
        }
        
        .viam_faq .faq-header p {
            font-size: 16px;
        }
        
        .viam_faq .faq-question h3 {
            font-size: 17px;
        }
    }
    
    @media (max-width: 768px) {
        .viam_faq .faq-header h2 {
            font-size: 28px;
        }
        
        .viam_faq .faq-categories {
            flex-wrap: nowrap;
            overflow-x: auto;
            justify-content: flex-start;
            padding-bottom: 10px;
        }
        
        .viam_faq .faq-categories::-webkit-scrollbar {
            height: 5px;
        }
        
        .viam_faq .faq-categories::-webkit-scrollbar-thumb {
            background-color: rgba(42, 67, 147, 0.2);
            border-radius: 5px;
        }
        
        .viam_faq .category-btn {
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .viam_faq .faq-question {
            padding: 20px;
        }
        
        .viam_faq .faq-answer-content {
            padding: 0 20px;
        }
        
        .viam_faq .faq-question h3 {
            font-size: 16px;
        }
        
        .viam_faq .floating-badge {
            top: -10px;
            right: 20px;
            font-size: 12px;
            padding: 6px 15px;
        }
    }
    
    @media (max-width: 576px) {
        .viam_faq .faq-header h2 {
            font-size: 24px;
        }
        
        .viam_faq .faq-header p {
            font-size: 15px;
        }
        
        .viam_faq .faq-search input {
            padding: 15px 50px 15px 20px;
            font-size: 15px;
        }
        
        .viam_faq .faq-search button {
            width: 38px;
            height: 38px;
        }
        
        .viam_faq .faq-question h3 {
            font-size: 15px;
        }
        
        .viam_faq .faq-toggle {
            min-width: 22px;
            height: 22px;
        }
        
        .viam_faq .support-btn {
            padding: 12px 25px;
            font-size: 15px;
        }
    }