/* header css */
:root {
    --primary: #3DA73F;
    --secondary: #FFA200;
    --dark: #333333;
    --white: #ffffff;
    --gradient: linear-gradient(45deg, var(--primary), var(--secondary));
}

.akcollege_header {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
}

/* Top Section */
.akcollege_top {
    background: var(--dark);
    color: var(--white);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.akcollege_top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 2px;
    background: var(--gradient);
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.akcollege_top_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.akcollege_info {
    display: flex;
    gap: 20px;
}

.akcollege_info_item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.akcollege_info_item:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.akcollege_info_item i {
    color: var(--primary);
    transition: all 0.3s;
}

.akcollege_info_item:hover i {
    transform: rotate(15deg);
}

/* Logo Section */
.akcollege_logo_section {
    background: #ffffff;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.akcollege_logo_bg {
    position: absolute;
    inset: 0;
    
}

.akcollege_logo_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.akcollege_logo {
    width: 1920px;
    height: 150px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.akcollege_logo::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.akcollege_logo:hover {
    transform: translateY(-5px);
}

.akcollege_logo:hover::before {
    opacity: 1;
}

/* Navigation Section */
.akcollege_nav {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.akcollege_nav_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.akcollege_menu {
    display: flex;
    gap: 5px;
    align-items: center;
}

.akcollege_menu_link {
    text-decoration: none;
    color: var(--dark);
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s;
    border-radius: 25px;
    overflow: hidden;
}

.akcollege_menu_link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s;
}

.akcollege_menu_link:hover {
    color: var(--primary);
}

.akcollege_menu_link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.akcollege_apply_btn {
    background: var(--secondary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.akcollege_apply_btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s;
}

.akcollege_apply_btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(61, 167, 63, 0.3);
}

.akcollege_apply_btn:hover::before {
    transform: scale(1);
}

.akcollege_social {
    display: flex;
    gap: 10px;
}

.akcollege_social_link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.akcollege_social_link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.akcollege_social_link i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.akcollege_social_link:hover {
    color: var(--white);
}

.akcollege_social_link:hover::before {
    opacity: 1;
}

.akcollege_social_link:hover i {
    transform: rotateY(360deg);
}

.akcollege_mobile_menu {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
}

.akcollege_mobile_menu span {
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--primary);
    left: 5px;
    transition: all 0.3s;
}

.akcollege_mobile_menu span:nth-child(1) { top: 10px; }
.akcollege_mobile_menu span:nth-child(2) { top: 19px; }
.akcollege_mobile_menu span:nth-child(3) { top: 28px; }

@media (max-width: 768px) {
    .akcollege_info {
        display: none;
    }

    .akcollege_logo {
        width: 1920px;
        height: 120px;
    }

    .akcollege_menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        flex-direction: column;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .akcollege_menu.active {
        display: flex;
    }

    .akcollege_mobile_menu {
        display: block;
    }

    .akcollege_mobile_menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .akcollege_mobile_menu.active span:nth-child(2) {
        opacity: 0;
    }

    .akcollege_mobile_menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .akcollege_social {
        display: none;
    }
}

/* footer css  */
@keyframes waveAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(61, 167, 63, 0.2); }
    50% { box-shadow: 0 0 30px rgba(255, 162, 0, 0.3); }
}

.akcollege_footer {
    position: relative;
    background: #004D40;
    overflow: hidden;
}

.akcollege_footer_waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    animation: waveAnimation 20s linear infinite;
}

.akcollege_footer_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 20px 50px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    color: #fff;
}

.akcollege_footer_about {
    grid-column: span 5;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: floatUp 6s ease-in-out infinite;
}

.akcollege_footer_about_logo {
    width: 200px;
    height: 80px;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.akcollege_footer_about_text {
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.akcollege_footer_features {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.akcollege_footer_feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.akcollege_footer_feature:hover {
    transform: translateX(10px);
    background: rgba(61, 167, 63, 0.2);
}

.akcollege_footer_feature i {
    font-size: 24px;
    color: #FFA200;
}

.akcollege_footer_feature_text {
    font-size: 18px;
    font-weight: 500;
}

.akcollege_footer_contact {
    grid-column: span 4;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    animation: glowPulse 3s infinite;
}

.akcollege_footer_title {
    font-size: 24px;
    margin-bottom: 25px;
    color: #FFA200;
    position: relative;
    display: inline-block;
}

.akcollege_footer_title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: #3DA73F;
    transition: width 0.3s ease;
}

.akcollege_footer_contact:hover .akcollege_footer_title::after {
    width: 100%;
}

.akcollege_footer_info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.akcollege_footer_info_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.akcollege_footer_info_item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.akcollege_footer_info_item i {
    width: 40px;
    height: 40px;
    background: #FFA200;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.akcollege_footer_info_item:hover i {
    transform: rotate(360deg);
    background: #3DA73F;
}

.akcollege_footer_bottom {
    grid-column: span 12;
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.akcollege_footer_social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.akcollege_footer_social_link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.akcollege_footer_social_link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #3DA73F, #FFA200);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.akcollege_footer_social_link:hover::before {
    opacity: 1;
}

.akcollege_footer_social_link i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.akcollege_footer_social_link:hover i {
    transform: rotate(360deg);
}

.akcollege_footer_credits {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.akcollege_footer_developer {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(45deg, #3DA73F, #FFA200);
    border-radius: 20px;
    color: #fff;
    font-weight: bold;
    margin: 0 5px;
    transition: transform 0.3s ease;
}

.akcollege_footer_developer:hover {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .akcollege_footer_about,
    .akcollege_footer_features,
    .akcollege_footer_contact {
        grid-column: span 12;
    }
    
    .akcollege_footer_features {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .akcollege_footer_feature {
        flex: 1 1 calc(50% - 10px);
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .akcollege_footer_feature {
        flex: 1 1 100%;
    }
    
    .akcollege_footer_waves {
        height: 50px;
    }
    
    .akcollege_footer_container {
        padding-top: 100px;
    }
}

/* hero area styles */
.akcollege_homebanner {
    background: url("/assets/images/banner/akcollege_banner.jpg");
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.akcollege_homebanner_container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
    align-items: center;
}

.akcollege_homebanner_image {
    position: relative;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.akcollege_homebanner_image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.akcollege_homebanner_form {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    animation: formSlideIn 1s ease-out;
}

@keyframes formSlideIn {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.akcollege_homebanner_form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3DA73F, #FFA200);
}

.akcollege_homebanner_form_title {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.akcollege_homebanner_form_title span {
    color: #3DA73F;
    font-weight: bold;
}

.akcollege_homebanner_form_group {
    margin-bottom: 20px;
}

.akcollege_homebanner_form_label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.akcollege_homebanner_form_input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.akcollege_homebanner_form_input:focus {
    border-color: #3DA73F;
    box-shadow: 0 0 0 3px rgba(61, 167, 63, 0.1);
    outline: none;
}

.akcollege_homebanner_form_select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23555' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 10px center;
}

.akcollege_homebanner_form_submit {
    width: 100%;
    padding: 15px;
    background: #3DA73F;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.akcollege_homebanner_form_submit:hover {
    background: #FFA200;
    transform: translateY(-2px);
}

.akcollege_homebanner_form_submit::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255,255,255,0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0.2) 75%,
        transparent 75%,
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.akcollege_homebanner_form_submit:hover::after {
    opacity: 1;
    animation: buttonGlow 1s linear;
}

@keyframes buttonGlow {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

@media (max-width: 992px) {
    .akcollege_homebanner_container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .akcollege_homebanner_image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .akcollege_homebanner {
        padding: 30px 0;
    }

    .akcollege_homebanner_form {
        padding: 30px 20px;
    }

    .akcollege_homebanner_form_title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .akcollege_homebanner_image {
        max-width: 300px;
    }

    .akcollege_homebanner_form_title {
        font-size: 20px;
    }

    .akcollege_homebanner_form_input,
    .akcollege_homebanner_form_select {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* about area css */
.akcollege_about {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.akcollege_about_shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.akcollege_about_shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.akcollege_about_shape:nth-child(1) {
    width: 300px;
    height: 300px;
    background: #3DA73F;
    top: -150px;
    left: -150px;
    animation: shapeFloat 8s ease-in-out infinite;
}

.akcollege_about_shape:nth-child(2) {
    width: 200px;
    height: 200px;
    background: #FFA200;
    bottom: -100px;
    right: -100px;
    animation: shapeFloat 6s ease-in-out infinite reverse;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -20px) rotate(10deg); }
}

.akcollege_about_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.akcollege_about_image {
    position: relative;

}

.akcollege_about_image_frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.akcollege_about_image_frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(61, 167, 63, 0.2), rgba(255, 162, 0, 0.2));
    z-index: 1;
    transition: opacity 0.3s ease;
}

.akcollege_about_image_frame:hover::before {
    opacity: 0;
}

.akcollege_about_image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transform: translateZ(0);
    transition: transform 0.3s ease;
}

.akcollege_about_image:hover img {
    transform: translateZ(20px);
}

.akcollege_about_image_border {
    position: absolute;
    inset: 0;
    border: 3px solid #3DA73F;
    border-radius: 20px;
    transform: translate(15px, 15px);
    pointer-events: none;
}

.akcollege_about_content {
    padding: 20px;
}

.akcollege_about_title {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.akcollege_about_title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background: #3DA73F;
    transition: width 0.3s ease;
}

.akcollege_about_content:hover .akcollege_about_title::after {
    width: 120px;
}

.akcollege_about_text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.akcollege_about_features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.akcollege_about_feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.akcollege_about_feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.akcollege_about_feature i {
    font-size: 24px;
    color: #3DA73F;
    transition: transform 0.3s ease;
}

.akcollege_about_feature:hover i {
    transform: rotate(360deg);
    color: #FFA200;
}

.akcollege_about_feature_text {
    font-weight: 500;
    color: #333;
}

@media (max-width: 992px) {
    .akcollege_about_container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .akcollege_about_image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .akcollege_about {
        padding: 60px 0;
    }

    .akcollege_about_title {
        font-size: 30px;
    }

    .akcollege_about_features {
        grid-template-columns: 1fr;
    }

    .akcollege_about_shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .akcollege_about_title {
        font-size: 26px;
    }

    .akcollege_about_image_border {
        transform: translate(10px, 10px);
    }
}

/* courses area css */
.akcollege_courses {
    padding: 100px 0;
    background: linear-gradient(135deg, #004D40 0%, #00695C 100%);
    position: relative;
    overflow: hidden;
}

.akcollege_courses_waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(61, 167, 63, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 162, 0, 0.1) 0%, transparent 50%);
}

.akcollege_courses_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.akcollege_courses_header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.akcollege_courses_title {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.akcollege_courses_subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.akcollege_courses_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.akcollege_courses_card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.akcollege_courses_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.akcollege_courses_image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.akcollege_courses_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.akcollege_courses_card:hover .akcollege_courses_image img {
    transform: scale(1.1);
}

.akcollege_courses_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.akcollege_courses_card:hover .akcollege_courses_overlay {
    opacity: 1;
}

.akcollege_courses_badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 15px;
    background: #FFA200;
    color: white;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
}

.akcollege_courses_content {
    padding: 25px;
    position: relative;
}

.akcollege_courses_icon {
    width: 60px;
    height: 60px;
    background: #3DA73F;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    right: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.akcollege_courses_card:hover .akcollege_courses_icon {
    transform: rotate(360deg);
    background: #FFA200;
}

.akcollege_courses_icon i {
    font-size: 28px;
    color: white;
}

.akcollege_courses_name {
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
}

.akcollege_courses_description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.akcollege_courses_features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.akcollege_courses_feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
}

.akcollege_courses_feature i {
    color: #FFA200;
}

.akcollege_courses_button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #3DA73F;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.akcollege_courses_button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.akcollege_courses_card:hover .akcollege_courses_button {
    background: #FFA200;
}

.akcollege_courses_button:hover::before {
    transform: scale(1);
}

@media (max-width: 1024px) {
    .akcollege_courses_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .akcollege_courses {
        padding: 60px 0;
    }

    .akcollege_courses_grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .akcollege_courses_title {
        font-size: 32px;
    }

    .akcollege_courses_features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .akcollege_courses_title {
        font-size: 28px;
    }

    .akcollege_courses_content {
        padding: 20px;
    }

    .akcollege_courses_image {
        height: 180px;
    }
}

.akcollege_courses_bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    position: relative;
}

.akcollege_courses_readmore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.akcollege_courses_readmore::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.akcollege_courses_readmore:hover {
    background: #FFA200;
    border-color: #FFA200;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 162, 0, 0.3);
}

.akcollege_courses_readmore:hover::before {
    transform: scale(1);
}

.akcollege_courses_readmore i {
    transition: transform 0.3s ease;
}

.akcollege_courses_readmore:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .akcollege_courses_bottom {
        margin-top: 30px;
    }

    .akcollege_courses_readmore {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* why different area css */
.akcollege_whydifferent {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.akcollege_whydifferent_pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(#3DA73F 1px, transparent 1px),
        radial-gradient(#FFA200 1px, transparent 1px);
    background-size: 50px 50px, 40px 40px;
    background-position: 0 0, 25px 25px;
    opacity: 0.06;
}

.akcollege_whydifferent_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.akcollege_whydifferent_header {
    text-align: center;
    margin-bottom: 60px;
}

.akcollege_whydifferent_title {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.akcollege_whydifferent_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: #3DA73F;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.akcollege_whydifferent_title:hover::after {
    width: 120px;
}

.akcollege_whydifferent_subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.akcollege_whydifferent_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.akcollege_whydifferent_card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.akcollege_whydifferent_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 167, 63, 0.1) 0%, rgba(255, 162, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.akcollege_whydifferent_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.akcollege_whydifferent_card:hover::before {
    opacity: 1;
}

.akcollege_whydifferent_icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    position: relative;
}

.akcollege_whydifferent_icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(61, 167, 63, 0.1);
    z-index: -1;
    transition: transform 0.3s ease;
}

.akcollege_whydifferent_card:hover .akcollege_whydifferent_icon::before {
    transform: rotate(45deg);
    background: rgba(255, 162, 0, 0.1);
}

.akcollege_whydifferent_icon i {
    font-size: 36px;
    color: #3DA73F;
    transition: all 0.3s ease;
}

.akcollege_whydifferent_card:hover .akcollege_whydifferent_icon i {
    color: #FFA200;
    transform: scale(1.1);
}

.akcollege_whydifferent_cardtitle {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.akcollege_whydifferent_cardtext {
    color: #666;
    line-height: 1.7;
}

.akcollege_whydifferent_counter_row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: linear-gradient(135deg, #3DA73F 0%, #4FC158 100%);
    padding: 50px 40px;
    border-radius: 20px;
    color: white;
    margin-top: 40px;
    box-shadow: 0 15px 30px rgba(61, 167, 63, 0.2);
}

.akcollege_whydifferent_counter {
    text-align: center;
}

.akcollege_whydifferent_counter_number {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

.akcollege_whydifferent_counter_label {
    font-size: 18px;
}

.akcollege_whydifferent_testimonial {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    margin-top: 100px;
}

.akcollege_whydifferent_quote {
    position: absolute;
    top: -30px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: #FFA200;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.akcollege_whydifferent_testimonial_text {
    font-style: italic;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 18px;
}

.akcollege_whydifferent_testimonial_author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.akcollege_whydifferent_testimonial_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.akcollege_whydifferent_testimonial_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.akcollege_whydifferent_testimonial_info {
    display: flex;
    flex-direction: column;
}

.akcollege_whydifferent_testimonial_name {
    font-weight: bold;
    color: #333;
    font-size: 18px;
}

.akcollege_whydifferent_testimonial_position {
    color: #666;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .akcollege_whydifferent_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .akcollege_whydifferent_counter_row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .akcollege_whydifferent {
        padding: 60px 0;
    }

    .akcollege_whydifferent_grid {
        grid-template-columns: 1fr;
    }

    .akcollege_whydifferent_title {
        font-size: 32px;
    }

    .akcollege_whydifferent_counter_row {
        padding: 30px 20px;
    }

    .akcollege_whydifferent_counter_number {
        font-size: 32px;
    }

    .akcollege_whydifferent_counter_label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .akcollege_whydifferent_counter_row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .akcollege_whydifferent_testimonial {
        padding: 30px 20px;
        margin-top: 70px;
    }

    .akcollege_whydifferent_testimonial_text {
        font-size: 16px;
    }
}
/* news area css */
.akcollege_newsevents {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.akcollege_newsevents_pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#3DA73F 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
    pointer-events: none;
}

.akcollege_newsevents_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.akcollege_newsevents_header {
    text-align: center;
    margin-bottom: 50px;
}

.akcollege_newsevents_title {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.akcollege_newsevents_title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3DA73F;
    transition: width 0.3s ease;
}

.akcollege_newsevents_header:hover .akcollege_newsevents_title::after {
    width: 120px;
}

.akcollege_newsevents_subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

.akcollege_newsevents_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.akcollege_newsevents_card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 500px;
    position: relative;
}

.akcollege_newsevents_card_header {
    padding: 20px 25px;
    background: #3DA73F;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.akcollege_newsevents_card_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

.akcollege_newsevents_card_title {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.akcollege_newsevents_card_title i {
    font-size: 24px;
}

.akcollege_newsevents_card_controls {
    display: flex;
    gap: 10px;
}

.akcollege_newsevents_card_button {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.akcollege_newsevents_card_button:hover {
    background: rgba(255,255,255,0.4);
}

.akcollege_newsevents_card_content {
    height: calc(100% - 70px);
    overflow: hidden;
    position: relative;
}

.akcollege_newsevents_scroll {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #3DA73F #f0f0f0;
    padding: 20px 0;
}

/* Custom scrollbar for WebKit browsers */
.akcollege_newsevents_scroll::-webkit-scrollbar {
    width: 6px;
}

.akcollege_newsevents_scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.akcollege_newsevents_scroll::-webkit-scrollbar-thumb {
    background-color: #3DA73F;
    border-radius: 3px;
}

.akcollege_newsevents_item {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.akcollege_newsevents_item:hover {
    background: rgba(61, 167, 63, 0.05);
}

.akcollege_newsevents_item_header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.akcollege_newsevents_item_title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.akcollege_newsevents_item_date {
    color: #3DA73F;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.akcollege_newsevents_item_description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.akcollege_newsevents_item_link {
    color: #3DA73F;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.akcollege_newsevents_item_link:hover {
    color: #FFA200;
}

.akcollege_newsevents_item_link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.akcollege_newsevents_item_link:hover i {
    transform: translateX(3px);
}

.akcollege_newsevents_card_footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, white, rgba(255,255,255,0.9), transparent);
    text-align: center;
    pointer-events: none;
}

/* Special styling for Events card */
.akcollege_newsevents_events .akcollege_newsevents_card_header {
    background: #FFA200;
}

.akcollege_newsevents_events .akcollege_newsevents_item_date {
    color: #FFA200;
}

.akcollege_newsevents_events .akcollege_newsevents_scroll::-webkit-scrollbar-thumb {
    background-color: #FFA200;
}

.akcollege_newsevents_events .akcollege_newsevents_item_link {
    color: #FFA200;
}

.akcollege_newsevents_events .akcollege_newsevents_item_link:hover {
    color: #3DA73F;
}

.akcollege_newsevents_item_badge {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(255, 162, 0, 0.1);
    color: #FFA200;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

.akcollege_newsevents_item_image {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.akcollege_newsevents_item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.akcollege_newsevents_item:hover .akcollege_newsevents_item_image img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .akcollege_newsevents_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .akcollege_newsevents_card {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .akcollege_newsevents {
        padding: 60px 0;
    }

    .akcollege_newsevents_title {
        font-size: 30px;
    }

    .akcollege_newsevents_card {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .akcollege_newsevents_title {
        font-size: 26px;
    }

    .akcollege_newsevents_item_header {
        flex-direction: column;
        gap: 5px;
    }

    .akcollege_newsevents_item_image {
        height: 150px;
    }
}

/* feedback area css */
.akcollege_testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.akcollege_testimonials_bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(61, 167, 63, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 162, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.akcollege_testimonials_pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(#3DA73F 1px, transparent 1px),
        radial-gradient(#FFA200 1px, transparent 1px);
    background-size: 30px 30px, 25px 25px;
    background-position: 0 0, 15px 15px;
    opacity: 0.05;
    z-index: 1;
}

.akcollege_testimonials_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.akcollege_testimonials_header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.akcollege_testimonials_title {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.akcollege_testimonials_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3DA73F, #FFA200);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.akcollege_testimonials_header:hover .akcollege_testimonials_title::after {
    width: 120px;
}

.akcollege_testimonials_subtitle {
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 18px;
}

.akcollege_testimonials_quote_icon {
    font-size: 70px;
    color: rgba(61, 167, 63, 0.1);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.akcollege_testimonials_slider_container {
    position: relative;
    padding: 0 60px;
}

.akcollege_testimonials_slider {
    overflow: hidden;
    position: relative;
}

.akcollege_testimonials_track {
    display: flex;
    transition: transform 0.5s ease;
}

.akcollege_testimonials_slide {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.akcollege_testimonials_card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.akcollege_testimonials_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #3DA73F, #FFA200);
}

.akcollege_testimonials_card_quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 50px;
    color: rgba(61, 167, 63, 0.1);
    line-height: 1;
}

.akcollege_testimonials_card_content {
    margin-bottom: 30px;
    position: relative;
    flex-grow: 1;
}

.akcollege_testimonials_card_text {
    color: #555;
    line-height: 1.8;
    font-size: 18px;
    font-style: italic;
}

.akcollege_testimonials_card_rating {
    margin-top: 20px;
    color: #FFA200;
    font-size: 20px;
}

.akcollege_testimonials_card_author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.akcollege_testimonials_card_avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(61, 167, 63, 0.2);
}

.akcollege_testimonials_card_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.akcollege_testimonials_card_info {
    display: flex;
    flex-direction: column;
}

.akcollege_testimonials_card_name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.akcollege_testimonials_card_position {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.akcollege_testimonials_card_company {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #3DA73F;
    font-weight: 500;
    margin-top: 5px;
}

.akcollege_testimonials_controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.akcollege_testimonials_button {
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
    color: #333;
    font-size: 18px;
}

.akcollege_testimonials_button:hover {
    background: #3DA73F;
    color: white;
    transform: scale(1.1);
}

.akcollege_testimonials_button:disabled {
    background: #f0f0f0;
    color: #bbb;
    cursor: not-allowed;
    transform: scale(1);
}

.akcollege_testimonials_indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.akcollege_testimonials_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.akcollege_testimonials_dot.active {
    background: #3DA73F;
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 992px) {
    .akcollege_testimonials_card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .akcollege_testimonials {
        padding: 60px 0;
    }

    .akcollege_testimonials_title {
        font-size: 32px;
    }

    .akcollege_testimonials_slider_container {
        padding: 0 40px;
    }

    .akcollege_testimonials_card_text {
        font-size: 16px;
    }

    .akcollege_testimonials_button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .akcollege_testimonials_slider_container {
        padding: 0 30px;
    }

    .akcollege_testimonials_card {
        padding: 25px 20px;
    }

    .akcollege_testimonials_card_author {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .akcollege_testimonials_button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* blog area css */
.akcollege_blogs {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #004D40 0%, #00695C 100%);
}

.akcollege_blogs_glow {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(61, 167, 63, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 162, 0, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.akcollege_blogs_pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.akcollege_blogs_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.akcollege_blogs_header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.akcollege_blogs_title {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.akcollege_blogs_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3DA73F, #FFA200);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.akcollege_blogs_header:hover .akcollege_blogs_title::after {
    width: 120px;
}

.akcollege_blogs_subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 18px;
}

.akcollege_blogs_slider_container {
    position: relative;
    padding: 20px 0;
}

.akcollege_blogs_slider {
    overflow: hidden;
    position: relative;
    margin: 0 -15px;
    padding-bottom: 20px;
}

.akcollege_blogs_track {
    display: flex;
    transition: transform 0.5s ease;
    padding: 20px 15px;
}

.akcollege_blogs_slide {
    min-width: calc(33.333% - 30px);
    margin: 0 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.akcollege_blogs_card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.akcollege_blogs_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.akcollege_blogs_card_image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.akcollege_blogs_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.akcollege_blogs_card:hover .akcollege_blogs_card_image img {
    transform: scale(1.1);
}

.akcollege_blogs_card_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.akcollege_blogs_card:hover .akcollege_blogs_card_overlay {
    opacity: 0.9;
}

.akcollege_blogs_card_category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FFA200;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
    transition: all 0.3s ease;
}

.akcollege_blogs_card:hover .akcollege_blogs_card_category {
    background: #3DA73F;
}

.akcollege_blogs_card_content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.akcollege_blogs_card_date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 10px;
}

.akcollege_blogs_card_title {
    font-size: 22px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.akcollege_blogs_card:hover .akcollege_blogs_card_title {
    color: #FFA200;
}

.akcollege_blogs_card_excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.akcollege_blogs_card_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.akcollege_blogs_card_author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.akcollege_blogs_card_avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.akcollege_blogs_card_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.akcollege_blogs_card_author_name {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.akcollege_blogs_card_read {
    color: #3DA73F;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.akcollege_blogs_card_read i {
    transition: transform 0.3s ease;
}

.akcollege_blogs_card:hover .akcollege_blogs_card_read {
    color: #FFA200;
}

.akcollege_blogs_card:hover .akcollege_blogs_card_read i {
    transform: translateX(3px);
}

.akcollege_blogs_controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.akcollege_blogs_button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;
}

.akcollege_blogs_button:hover {
    background: #3DA73F;
    border-color: #3DA73F;
    transform: scale(1.1);
}

.akcollege_blogs_button:disabled {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    transform: scale(1);
}

.akcollege_blogs_bottom {
    text-align: center;
    margin-top: 60px;
}

.akcollege_blogs_viewall {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: #3DA73F;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.akcollege_blogs_viewall::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.akcollege_blogs_viewall:hover {
    background: #FFA200;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 162, 0, 0.3);
}

.akcollege_blogs_viewall:hover::before {
    transform: scale(1);
}

.akcollege_blogs_viewall i {
    transition: transform 0.3s ease;
}

.akcollege_blogs_viewall:hover i {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .akcollege_blogs_slide {
        min-width: calc(50% - 30px);
    }

    .akcollege_blogs_card_image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .akcollege_blogs {
        padding: 60px 0;
    }

    .akcollege_blogs_title {
        font-size: 32px;
    }

    .akcollege_blogs_subtitle {
        font-size: 16px;
    }

    .akcollege_blogs_card_title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .akcollege_blogs_slide {
        min-width: calc(100% - 30px);
    }

    .akcollege_blogs_card_image {
        height: 180px;
    }

    .akcollege_blogs_card_content {
        padding: 20px;
    }

    .akcollege_blogs_viewall {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* affilation area css */
.akcollege_affiliation {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.akcollege_affiliation_pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(61, 167, 63, 0.1) 2px, transparent 2px),
        radial-gradient(rgba(255, 162, 0, 0.1) 2px, transparent 2px);
    background-size: 30px 30px, 40px 40px;
    background-position: 0 0, 15px 15px;
    opacity: 0.3;
    z-index: 1;
}

.akcollege_affiliation_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.akcollege_affiliation_header {
    text-align: center;
    margin-bottom: 60px;
}

.akcollege_affiliation_title {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.akcollege_affiliation_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3DA73F, #FFA200);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.akcollege_affiliation_header:hover .akcollege_affiliation_title::after {
    width: 120px;
}

.akcollege_affiliation_subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.akcollege_affiliation_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.akcollege_affiliation_item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    height: 160px;
}

.akcollege_affiliation_item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 167, 63, 0.05) 0%, rgba(255, 162, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.akcollege_affiliation_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.akcollege_affiliation_item:hover::before {
    opacity: 1;
}

.akcollege_affiliation_logo {
    max-width: 100%;
    max-height: 100px;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.akcollege_affiliation_item:hover .akcollege_affiliation_logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.akcollege_affiliation_ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #3DA73F;
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.akcollege_affiliation_item:hover .akcollege_affiliation_ribbon {
    opacity: 1;
    right: -25px;
}

.akcollege_affiliation_secondary {
    margin-top: 60px;
}

.akcollege_affiliation_marquee {
    display: flex;
    overflow: hidden;
    position: relative;
    background: white;
    padding: 25px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.akcollege_affiliation_marquee_track {
    display: flex;
    animation: marquee 30s linear infinite;
    padding: 0 20px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.akcollege_affiliation_marquee_item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.akcollege_affiliation_marquee_logo {
    max-height: 60px;
    max-width: 120px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.akcollege_affiliation_marquee_item:hover .akcollege_affiliation_marquee_logo {
    filter: grayscale(0%);
    opacity: 1;
}

.akcollege_affiliation_cta {
    text-align: center;
    margin-top: 60px;
}

.akcollege_affiliation_button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #3DA73F;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.akcollege_affiliation_button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.akcollege_affiliation_button:hover {
    background: #FFA200;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 162, 0, 0.3);
}

.akcollege_affiliation_button:hover::before {
    transform: scale(1);
}

.akcollege_affiliation_button i {
    transition: transform 0.3s ease;
}

.akcollege_affiliation_button:hover i {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .akcollege_affiliation_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .akcollege_affiliation {
        padding: 60px 0;
    }

    .akcollege_affiliation_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .akcollege_affiliation_title {
        font-size: 30px;
    }

    .akcollege_affiliation_item {
        height: 140px;
        padding: 20px;
    }

    .akcollege_affiliation_marquee_logo {
        max-height: 50px;
        max-width: 100px;
    }
}

@media (max-width: 576px) {
    .akcollege_affiliation_grid {
        grid-template-columns: 1fr;
    }

    .akcollege_affiliation_item {
        max-width: 280px;
        margin: 0 auto;
    }

    .akcollege_affiliation_secondary {
        margin-top: 40px;
    }
}

/* breadcrumb css */
.akcollege_breadcrumb {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    background: #f8f9fa;
}

.akcollege_breadcrumb_shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.akcollege_breadcrumb_shape {
    position: absolute;
    border-radius: 50%;
}

.akcollege_breadcrumb_shape:nth-child(1) {
    width: 300px;
    height: 300px;
    background: rgba(61, 167, 63, 0.1);
    top: -150px;
    left: -50px;
    animation: shapeFloat 15s linear infinite;
}

.akcollege_breadcrumb_shape:nth-child(2) {
    width: 200px;
    height: 200px;
    background: rgba(255, 162, 0, 0.1);
    bottom: -100px;
    right: 10%;
    animation: shapeFloat 12s linear infinite reverse;
}

.akcollege_breadcrumb_shape:nth-child(3) {
    width: 150px;
    height: 150px;
    background: rgba(61, 167, 63, 0.08);
    top: 20%;
    right: -50px;
    animation: shapeFloat 10s linear infinite;
}

@keyframes shapeFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 20px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.akcollege_breadcrumb_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
}

.akcollege_breadcrumb_left {
    flex: 1;
}

.akcollege_breadcrumb_right {
    width: 350px;
    position: relative;
}

.akcollege_breadcrumb_title {
    font-size: 40px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.akcollege_breadcrumb_title_highlight {
    position: relative;
    color: #3DA73F;
    display: inline-block;
}

.akcollege_breadcrumb_title_highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background: #FFA200;
    opacity: 0.3;
    z-index: -1;
}

.akcollege_breadcrumb_description {
    color: #666;
    max-width: 600px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.akcollege_breadcrumb_nav {
    background: white;
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
}

.akcollege_breadcrumb_nav::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, #3DA73F, #FFA200);
    border-radius: 5px 0 0 5px;
}

.akcollege_breadcrumb_item {
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
}

.akcollege_breadcrumb_home {
    width: 30px;
    height: 30px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3DA73F;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.akcollege_breadcrumb_item:hover .akcollege_breadcrumb_home {
    background: #3DA73F;
    color: white;
    transform: scale(1.1);
}

.akcollege_breadcrumb_item:hover {
    color: #3DA73F;
}

.akcollege_breadcrumb_separator {
    margin: 0 10px;
    position: relative;
    color: #ccc;
}

.akcollege_breadcrumb_separator::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFA200;
    border-radius: 50%;
    top: calc(50% - 3px);
    left: calc(50% - 3px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.akcollege_breadcrumb_item:hover + .akcollege_breadcrumb_separator::after {
    opacity: 1;
}

.akcollege_breadcrumb_current {
    color: #FFA200;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.akcollege_breadcrumb_current_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFA200;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
}

.akcollege_breadcrumb_image_container {
    position: relative;
    padding: 10px;
}

.akcollege_breadcrumb_image_bg {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #3DA73F 0%, #FFA200 100%);
    transform: rotate(-3deg);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.akcollege_breadcrumb_image_container:hover .akcollege_breadcrumb_image_bg {
    transform: rotate(3deg);
}

.akcollege_breadcrumb_image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.akcollege_breadcrumb_image img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.akcollege_breadcrumb_image_container:hover img {
    transform: scale(1);
}

.akcollege_breadcrumb_image_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.akcollege_breadcrumb_image_container:hover .akcollege_breadcrumb_image_overlay {
    opacity: 1;
}

.akcollege_breadcrumb_image_title {
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
}

.akcollege_breadcrumb_image_subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.akcollege_breadcrumb_badges {
    position: absolute;
    top: 20px;
    left: -10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.akcollege_breadcrumb_badge {
    background: #3DA73F;
    color: white;
    padding: 8px 15px;
    border-radius: 0 20px 20px 0;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(61, 167, 63, 0.3);
    transform: translateX(-10px);
    opacity: 0;
    animation: badgeSlide 0.5s forwards;
    animation-delay: calc(var(--index) * 0.2s);
}

@keyframes badgeSlide {
    to { transform: translateX(0); opacity: 1; }
}

.akcollege_breadcrumb_badge:nth-child(2) {
    background: #FFA200;
    box-shadow: 0 5px 15px rgba(255, 162, 0, 0.3);
    --index: 2;
}

.akcollege_breadcrumb_badge:nth-child(1) {
    --index: 1;
}

@media (max-width: 992px) {
    .akcollege_breadcrumb_container {
        flex-direction: column;
    }

    .akcollege_breadcrumb_right {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .akcollege_breadcrumb {
        padding: 60px 0 40px;
    }

    .akcollege_breadcrumb_title {
        font-size: 32px;
    }

    .akcollege_breadcrumb_nav {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .akcollege_breadcrumb_title {
        font-size: 28px;
    }

    .akcollege_breadcrumb_description {
        font-size: 14px;
    }

    .akcollege_breadcrumb_badges {
        left: 0;
    }

    .akcollege_breadcrumb_badge {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* mvv area css */
.akcollege_mvv {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.akcollege_mvv_pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(61, 167, 63, 0.1) 2px, transparent 2px),
        radial-gradient(rgba(255, 162, 0, 0.1) 2px, transparent 2px);
    background-size: 30px 30px, 40px 40px;
    background-position: 0 0, 15px 15px;
    opacity: 0.4;
    z-index: 1;
}

.akcollege_mvv_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.akcollege_mvv_header {
    text-align: center;
    margin-bottom: 70px;
}

.akcollege_mvv_title {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.akcollege_mvv_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3DA73F, #FFA200);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.akcollege_mvv_header:hover .akcollege_mvv_title::after {
    width: 120px;
}

.akcollege_mvv_subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

.akcollege_mvv_tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.akcollege_mvv_tab {
    padding: 12px 30px;
    background: white;
    border-radius: 30px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.akcollege_mvv_tab.active {
    background: #3DA73F;
    color: white;
}

.akcollege_mvv_tab::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.akcollege_mvv_tab:hover::before {
    transform: scale(1);
}

.akcollege_mvv_tab:not(.active):hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.akcollege_mvv_content {
    position: relative;
    min-height: 400px;
}

.akcollege_mvv_panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateX(20px);
}

.akcollege_mvv_panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.akcollege_mvv_card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.akcollege_mvv_card_banner {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.akcollege_mvv_card_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.akcollege_mvv_card:hover .akcollege_mvv_card_banner img {
    transform: scale(1.05);
}

.akcollege_mvv_card_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.akcollege_mvv_card_icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
}

.akcollege_mvv_card:hover .akcollege_mvv_card_icon {
    transform: rotate(360deg);
    background: #FFA200;
}

.akcollege_mvv_card_title {
    color: white;
    font-size: 28px;
    margin: 0;
    position: relative;
    padding-bottom: 15px;
}

.akcollege_mvv_card_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #FFA200;
    transition: width 0.3s ease;
}

.akcollege_mvv_card:hover .akcollege_mvv_card_title::after {
    width: 80px;
}

.akcollege_mvv_card_body {
    padding: 30px;
    flex-grow: 1;
}

.akcollege_mvv_card_text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.akcollege_mvv_card_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.akcollege_mvv_card_item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.akcollege_mvv_card_item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #3DA73F;
    border-radius: 50%;
}

.akcollege_mvv_card_item::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 14px;
    width: 2px;
    height: calc(100% + 7px);
    background: rgba(61, 167, 63, 0.3);
}

.akcollege_mvv_card_item:last-child::after {
    display: none;
}

.akcollege_mvv_card_item_title {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.akcollege_mvv_card_item_text {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .akcollege_mvv {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .akcollege_mvv {
        padding: 60px 0;
    }

    .akcollege_mvv_title {
        font-size: 32px;
    }

    .akcollege_mvv_tabs {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto 40px;
    }

    .akcollege_mvv_content {
        min-height: auto;
    }

    .akcollege_mvv_panel {
        position: relative;
        display: none;
    }

    .akcollege_mvv_panel.active {
        display: block;
    }

    .akcollege_mvv_card_banner {
        height: 160px;
    }

    .akcollege_mvv_card_title {
        font-size: 24px;
    }

    .akcollege_mvv_card_body {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .akcollege_mvv_title {
        font-size: 28px;
    }

    .akcollege_mvv_card_icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .akcollege_mvv_card_banner {
        height: 130px;
    }

    .akcollege_mvv_card_overlay {
        padding: 20px;
    }

    .akcollege_mvv_card_item {
        padding-left: 20px;
    }
}

/* brochure area css */
.akcollege_brochure {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.akcollege_brochure_pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(61, 167, 63, 0.1) 2px, transparent 2px),
        radial-gradient(rgba(255, 162, 0, 0.1) 2px, transparent 2px);
    background-size: 30px 30px, 40px 40px;
    background-position: 0 0, 15px 15px;
    opacity: 0.3;
    z-index: 1;
}

.akcollege_brochure_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.akcollege_brochure_left {
    position: relative;
}

.akcollege_brochure_image {
    position: relative;
    text-align: center;
    perspective: 1000px;
}

.akcollege_brochure_brochure {
    max-width: 100%;
    height: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: rotateY(20deg);
    transition: all 0.5s ease;
    border-radius: 10px;
}

.akcollege_brochure_left:hover .akcollege_brochure_brochure {
    transform: rotateY(0deg);
}

.akcollege_brochure_icon {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: #3DA73F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(61, 167, 63, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(61, 167, 63, 0); }
    100% { box-shadow: 0 0 0 0 rgba(61, 167, 63, 0); }
}

.akcollege_brochure_features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.akcollege_brochure_feature {
    flex: 1 1 calc(50% - 20px);
    min-width: 180px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.akcollege_brochure_feature_icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 162, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFA200;
    font-size: 20px;
    transition: all 0.3s ease;
}

.akcollege_brochure_feature:hover .akcollege_brochure_feature_icon {
    background: #FFA200;
    color: white;
    transform: rotateY(180deg);
}

.akcollege_brochure_feature_content {
    flex: 1;
}

.akcollege_brochure_feature_title {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.akcollege_brochure_feature_text {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.akcollege_brochure_right {
    position: relative;
}

.akcollege_brochure_form_container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.akcollege_brochure_form_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3DA73F, #FFA200);
}

.akcollege_brochure_form_title {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.akcollege_brochure_form_subtitle {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.akcollege_brochure_form {
    display: grid;
    gap: 20px;
}

.akcollege_brochure_form_group {
    position: relative;
}

.akcollege_brochure_form_label {
    position: absolute;
    top: 12px;
    left: 15px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 16px;
}

.akcollege_brochure_form_input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.akcollege_brochure_form_input:focus,
.akcollege_brochure_form_input:not(:placeholder-shown) {
    border-color: #3DA73F;
    outline: none;
}

.akcollege_brochure_form_input:focus + .akcollege_brochure_form_label,
.akcollege_brochure_form_input:not(:placeholder-shown) + .akcollege_brochure_form_label {
    top: -10px;
    left: 10px;
    font-size: 14px;
    padding: 0 5px;
    background: white;
    color: #3DA73F;
}

.akcollege_brochure_form_submit {
    background: #3DA73F;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.akcollege_brochure_form_submit::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.akcollege_brochure_form_submit:hover {
    background: #FFA200;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 162, 0, 0.3);
}

.akcollege_brochure_form_submit:hover::before {
    transform: scale(1);
}

.akcollege_brochure_form_icon {
    margin-right: 10px;
}

.akcollege_brochure_privacy {
    margin-top: 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.akcollege_brochure_privacy_link {
    color: #3DA73F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.akcollege_brochure_privacy_link:hover {
    color: #FFA200;
}

.akcollege_brochure_form_success {
    display: none;
    text-align: center;
    padding: 30px 20px;
}

.akcollege_brochure_success_icon {
    width: 80px;
    height: 80px;
    background: rgba(61, 167, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3DA73F;
    font-size: 36px;
    margin: 0 auto 20px;
}

.akcollege_brochure_success_title {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.akcollege_brochure_success_text {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.akcollege_brochure_download_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #3DA73F;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.akcollege_brochure_download_btn:hover {
    background: #FFA200;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 162, 0, 0.3);
}

@media (max-width: 992px) {
    .akcollege_brochure_container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .akcollege_brochure_brochure {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .akcollege_brochure {
        padding: 60px 0;
    }

    .akcollege_brochure_features {
        flex-direction: column;
    }

    .akcollege_brochure_feature {
        flex: 1 1 100%;
    }

    .akcollege_brochure_form_container {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .akcollege_brochure_form_title {
        font-size: 24px;
    }

    .akcollege_brochure_icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* services area css */
.akcollege_ser {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.akcollege_ser_pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(61, 167, 63, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 162, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.akcollege_ser_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.akcollege_ser_header {
    text-align: center;
    margin-bottom: 50px;
}

.akcollege_ser_title {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.akcollege_ser_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3DA73F, #FFA200);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.akcollege_ser_header:hover .akcollege_ser_title::after {
    width: 120px;
}

.akcollege_ser_subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

.akcollege_ser_intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.akcollege_ser_intro_content {
    color: #333;
}

.akcollege_ser_intro_title {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    color: #3DA73F;
}

.akcollege_ser_intro_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #FFA200;
    transition: width 0.3s ease;
}

.akcollege_ser_intro_content:hover .akcollege_ser_intro_title::after {
    width: 100px;
}

.akcollege_ser_intro_text {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
}

.akcollege_ser_intro_image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: rotate(2deg);
    transition: all 0.3s ease;
}

.akcollege_ser_intro_image:hover {
    transform: rotate(0deg) scale(1.02);
}

.akcollege_ser_intro_image img {
    width: 100%;
    height: auto;
    display: block;
}

.akcollege_ser_features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.akcollege_ser_feature {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.akcollege_ser_feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #3DA73F;
    transition: width 0.3s ease;
    z-index: -1;
}

.akcollege_ser_feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.akcollege_ser_feature:hover::before {
    width: 100%;
    opacity: 0.1;
}

.akcollege_ser_feature_icon {
    width: 70px;
    height: 70px;
    background: rgba(61, 167, 63, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #3DA73F;
    font-size: 30px;
    transition: all 0.3s ease;
}

.akcollege_ser_feature:hover .akcollege_ser_feature_icon {
    background: #3DA73F;
    color: white;
    transform: rotateY(180deg);
}

.akcollege_ser_feature_title {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.akcollege_ser_feature_text {
    color: #555;
    line-height: 1.7;
}

.akcollege_ser_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.akcollege_ser_card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.akcollege_ser_card_image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.akcollege_ser_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.akcollege_ser_card:hover .akcollege_ser_card_image img {
    transform: scale(1.1);
}

.akcollege_ser_card_content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.akcollege_ser_card_badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FFA200;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
}

.akcollege_ser_card_title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.akcollege_ser_card_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #3DA73F;
    transition: width 0.3s ease;
}

.akcollege_ser_card:hover .akcollege_ser_card_title::after {
    width: 80px;
}

.akcollege_ser_card_text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.akcollege_ser_card_link {
    color: #3DA73F;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
}

.akcollege_ser_card_link i {
    transition: transform 0.3s ease;
}

.akcollege_ser_card_link:hover {
    color: #FFA200;
}

.akcollege_ser_card_link:hover i {
    transform: translateX(5px);
}

.akcollege_ser_cta {
    background: linear-gradient(135deg, #3DA73F 0%, #4fc751 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.akcollege_ser_cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.akcollege_ser_cta_content {
    position: relative;
    z-index: 1;
}

.akcollege_ser_cta_title {
    font-size: 32px;
    margin-bottom: 20px;
}

.akcollege_ser_cta_text {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    line-height: 1.7;
}

.akcollege_ser_cta_button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #3DA73F;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.akcollege_ser_cta_button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(61, 167, 63, 0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.akcollege_ser_cta_button:hover {
    color: #FFA200;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.akcollege_ser_cta_button:hover::before {
    transform: scale(1);
}

.akcollege_ser_cta_button i {
    transition: transform 0.3s ease;
}

.akcollege_ser_cta_button:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .akcollege_ser_intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .akcollege_ser_features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .akcollege_ser {
        padding: 60px 0;
    }

    .akcollege_ser_title {
        font-size: 32px;
    }

    .akcollege_ser_features {
        grid-template-columns: 1fr;
    }

    .akcollege_ser_intro_title {
        font-size: 24px;
    }

    .akcollege_ser_cta {
        padding: 30px 20px;
    }

    .akcollege_ser_cta_title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .akcollege_ser_title {
        font-size: 28px;
    }

    .akcollege_ser_feature {
        padding: 25px 20px;
    }

    .akcollege_ser_feature_icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .akcollege_ser_feature_title {
        font-size: 20px;
    }

    .akcollege_ser_cta_button {
        padding: 12px 25px;
    }
}

/* courses area css */
.akcollege_cour {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.akcollege_cour_pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(61, 167, 63, 0.1) 2px, transparent 2px),
        radial-gradient(rgba(255, 162, 0, 0.1) 2px, transparent 2px);
    background-size: 30px 30px, 40px 40px;
    background-position: 0 0, 15px 15px;
    opacity: 0.3;
    z-index: 1;
}

.akcollege_cour_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.akcollege_cour_header {
    text-align: center;
    margin-bottom: 70px;
}

.akcollege_cour_title {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.akcollege_cour_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3DA73F, #FFA200);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.akcollege_cour_header:hover .akcollege_cour_title::after {
    width: 120px;
}

.akcollege_cour_subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

.akcollege_cour_filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.akcollege_cour_filter_button {
    padding: 10px 25px;
    background: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.akcollege_cour_filter_button.active {
    background: #3DA73F;
    color: white;
}

.akcollege_cour_filter_button:hover:not(.active) {
    background: rgba(61, 167, 63, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.akcollege_cour_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.akcollege_cour_card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.akcollege_cour_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.akcollege_cour_card_image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.akcollege_cour_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.akcollege_cour_card:hover .akcollege_cour_card_image img {
    transform: scale(1.1);
}

.akcollege_cour_card_badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FFA200;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(255, 162, 0, 0.3);
}

.akcollege_cour_card_popular {
    position: absolute;
    top: 20px;
    left: -40px;
    background: #3DA73F;
    color: white;
    padding: 8px 40px;
    transform: rotate(-45deg);
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(61, 167, 63, 0.3);
}

.akcollege_cour_card_content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.akcollege_cour_card_title {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.akcollege_cour_card_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #3DA73F;
    transition: width 0.3s ease;
}

.akcollege_cour_card:hover .akcollege_cour_card_title::after {
    width: 100px;
}

.akcollege_cour_card_text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.akcollege_cour_card_meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.akcollege_cour_card_meta_item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.akcollege_cour_card_meta_item i {
    color: #3DA73F;
    font-size: 16px;
    min-width: 16px;
    text-align: center;
}

.akcollege_cour_card_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.akcollege_cour_card_price {
    font-size: 22px;
    font-weight: bold;
    color: #3DA73F;
}

.akcollege_cour_card_price span {
    font-size: 14px;
    color: #999;
    font-weight: normal;
    margin-left: 5px;
}

.akcollege_cour_card_button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFA200;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.akcollege_cour_card_button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.akcollege_cour_card_button:hover {
    background: #3DA73F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(61, 167, 63, 0.3);
}

.akcollege_cour_card_button:hover::before {
    transform: scale(1);
}

.akcollege_cour_card_button i {
    transition: transform 0.3s ease;
}

.akcollege_cour_card_button:hover i {
    transform: translateX(5px);
}

.akcollege_cour_bottom {
    text-align: center;
    margin-top: 60px;
}

.akcollege_cour_more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3DA73F;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.akcollege_cour_more::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.akcollege_cour_more:hover {
    background: #FFA200;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 162, 0, 0.3);
}

.akcollege_cour_more:hover::before {
    transform: scale(1);
}

.akcollege_cour_more i {
    transition: transform 0.3s ease;
}

.akcollege_cour_more:hover i {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .akcollege_cour_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .akcollege_cour {
        padding: 60px 0;
    }

    .akcollege_cour_title {
        font-size: 32px;
    }

    .akcollege_cour_grid {
        grid-template-columns: 1fr;
    }

    .akcollege_cour_card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .akcollege_cour_title {
        font-size: 28px;
    }

    .akcollege_cour_card_image {
        height: 180px;
    }

    .akcollege_cour_card_meta {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .akcollege_cour_card_title {
        font-size: 20px;
    }

    .akcollege_cour_card_content {
        padding: 20px;
    }

    .akcollege_cour_more {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* faq area css */
.akcollege_faqs {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.akcollege_faqs_pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(61, 167, 63, 0.1) 2px, transparent 2px),
        radial-gradient(rgba(255, 162, 0, 0.1) 2px, transparent 2px);
    background-size: 30px 30px, 40px 40px;
    background-position: 0 0, 15px 15px;
    opacity: 0.3;
    z-index: 1;
}

.akcollege_faqs_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.akcollege_faqs_header {
    text-align: center;
    margin-bottom: 60px;
}

.akcollege_faqs_title {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.akcollege_faqs_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3DA73F, #FFA200);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.akcollege_faqs_header:hover .akcollege_faqs_title::after {
    width: 120px;
}

.akcollege_faqs_subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

.akcollege_faqs_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.akcollege_faqs_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.akcollege_faqs_accordion {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.akcollege_faqs_item {
    border-bottom: 1px solid #eee;
}

.akcollege_faqs_item:last-child {
    border-bottom: none;
}

.akcollege_faqs_question {
    padding: 20px 25px;
    background: white;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.akcollege_faqs_question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #3DA73F;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.akcollege_faqs_question:hover,
.akcollege_faqs_item.active .akcollege_faqs_question {
    background: rgba(61, 167, 63, 0.05);
}

.akcollege_faqs_item.active .akcollege_faqs_question::before {
    opacity: 1;
}

.akcollege_faqs_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(61, 167, 63, 0.1);
    color: #3DA73F;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.akcollege_faqs_item.active .akcollege_faqs_icon {
    background: #3DA73F;
    color: white;
    transform: rotate(45deg);
}

.akcollege_faqs_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.akcollege_faqs_item.active .akcollege_faqs_answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.akcollege_faqs_answer_content {
    color: #666;
    line-height: 1.7;
}

.akcollege_faqs_image {
    position: relative;
}

.akcollege_faqs_image_container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: rotate(2deg);
    transition: all 0.3s ease;
}

.akcollege_faqs_image_container:hover {
    transform: rotate(0deg) scale(1.03);
}

.akcollege_faqs_image img {
    width: 100%;
    height: auto;
    display: block;
}

.akcollege_faqs_contact {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.akcollege_faqs_contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3DA73F, #FFA200);
}

.akcollege_faqs_contact_title {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.akcollege_faqs_contact_text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.akcollege_faqs_contact_button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3DA73F;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.akcollege_faqs_contact_button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.akcollege_faqs_contact_button:hover {
    background: #FFA200;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 162, 0, 0.3);
}

.akcollege_faqs_contact_button:hover::before {
    transform: scale(1);
}

.akcollege_faqs_contact_button i {
    transition: transform 0.3s ease;
}

.akcollege_faqs_contact_button:hover i {
    transform: translateX(5px);
}

.akcollege_faqs_topics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.akcollege_faqs_topic {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.akcollege_faqs_topic:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.akcollege_faqs_topic_icon {
    width: 70px;
    height: 70px;
    background: rgba(61, 167, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #3DA73F;
    font-size: 28px;
    transition: all 0.3s ease;
}

.akcollege_faqs_topic:hover .akcollege_faqs_topic_icon {
    background: #3DA73F;
    color: white;
    transform: rotateY(180deg);
}

.akcollege_faqs_topic_title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.akcollege_faqs_topic_text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.akcollege_faqs_topic_link {
    color: #3DA73F;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.akcollege_faqs_topic_link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.akcollege_faqs_topic_link:hover {
    color: #FFA200;
}

.akcollege_faqs_topic_link:hover i {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .akcollege_faqs_layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .akcollege_faqs_image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .akcollege_faqs {
        padding: 60px 0;
    }

    .akcollege_faqs_title {
        font-size: 32px;
    }

    .akcollege_faqs_topics {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .akcollege_faqs_title {
        font-size: 28px;
    }

    .akcollege_faqs_question {
        padding: 15px 20px;
        font-size: 16px;
    }

    .akcollege_faqs_contact {
        padding: 25px 20px;
    }
}

/* contact area css */
.akcollege_contac {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.akcollege_contac_pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(61, 167, 63, 0.1) 2px, transparent 2px),
        radial-gradient(rgba(255, 162, 0, 0.1) 2px, transparent 2px);
    background-size: 30px 30px, 40px 40px;
    background-position: 0 0, 15px 15px;
    opacity: 0.3;
    z-index: 1;
}

.akcollege_contac_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.akcollege_contac_header {
    text-align: center;
    margin-bottom: 70px;
}

.akcollege_contac_title {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.akcollege_contac_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3DA73F, #FFA200);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.akcollege_contac_header:hover .akcollege_contac_title::after {
    width: 120px;
}

.akcollege_contac_subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

.akcollege_contac_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.akcollege_contac_card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.akcollege_contac_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 167, 63, 0.1) 0%, rgba(255, 162, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.akcollege_contac_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.akcollege_contac_card:hover::before {
    opacity: 1;
}

.akcollege_contac_card_icon {
    width: 70px;
    height: 70px;
    background: rgba(61, 167, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #3DA73F;
    font-size: 28px;
    transition: all 0.3s ease;
}

.akcollege_contac_card:hover .akcollege_contac_card_icon {
    background: #3DA73F;
    color: white;
    transform: rotateY(180deg);
}

.akcollege_contac_card_title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.akcollege_contac_card_info {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.akcollege_contac_card_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3DA73F;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.akcollege_contac_card_link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.akcollege_contac_card_link:hover {
    color: #FFA200;
}

.akcollege_contac_card_link:hover i {
    transform: translateX(5px);
}

.akcollege_contac_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.akcollege_contac_form_container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.akcollege_contac_form_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3DA73F, #FFA200);
}

.akcollege_contac_form_title {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.akcollege_contac_form_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #3DA73F;
    transition: width 0.3s ease;
}

.akcollege_contac_form_container:hover .akcollege_contac_form_title::after {
    width: 100px;
}

.akcollege_contac_form {
    display: grid;
    gap: 20px;
}

.akcollege_contac_form_group {
    position: relative;
}

.akcollege_contac_form_input,
.akcollege_contac_form_select,
.akcollege_contac_form_textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.akcollege_contac_form_input:focus,
.akcollege_contac_form_select:focus,
.akcollege_contac_form_textarea:focus {
    border-color: #3DA73F;
    outline: none;
    box-shadow: 0 0 0 3px rgba(61, 167, 63, 0.1);
}

.akcollege_contac_form_label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    background: white;
    padding: 0 5px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.akcollege_contac_form_textarea ~ .akcollege_contac_form_label {
    top: 15px;
    transform: translateY(0);
}

.akcollege_contac_form_input:focus ~ .akcollege_contac_form_label,
.akcollege_contac_form_input:not(:placeholder-shown) ~ .akcollege_contac_form_label,
.akcollege_contac_form_select:focus ~ .akcollege_contac_form_label,
.akcollege_contac_form_select:not([value=""]):valid ~ .akcollege_contac_form_label,
.akcollege_contac_form_textarea:focus ~ .akcollege_contac_form_label,
.akcollege_contac_form_textarea:not(:placeholder-shown) ~ .akcollege_contac_form_label {
    top: 0;
    left: 10px;
    font-size: 14px;
    color: #3DA73F;
}

.akcollege_contac_form_select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23666' d='M8 12l-6-6 1.5-1.5L8 9l4.5-4.5L14 6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

.akcollege_contac_form_textarea {
    min-height: 150px;
    resize: vertical;
}

.akcollege_contac_form_button {
    background: #3DA73F;
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.akcollege_contac_form_button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.akcollege_contac_form_button:hover {
    background: #FFA200;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 162, 0, 0.3);
}

.akcollege_contac_form_button:hover::before {
    transform: scale(1);
}

.akcollege_contac_form_button i {
    transition: transform 0.3s ease;
}

.akcollege_contac_form_button:hover i {
    transform: translateX(5px);
}

.akcollege_contac_map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    height: 400px;
    position: relative;
    transition: all 0.3s ease;
}

.akcollege_contac_map:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.akcollege_contac_map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.akcollege_contac_info {
    margin-top: 30px;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.akcollege_contac_info_title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.akcollege_contac_info_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #3DA73F;
    transition: width 0.3s ease;
}

.akcollege_contac_info:hover .akcollege_contac_info_title::after {
    width: 80px;
}

.akcollege_contac_info_text {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .akcollege_contac_cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .akcollege_contac {
        padding: 60px 0;
    }

    .akcollege_contac_title {
        font-size: 32px;
    }

    .akcollege_contac_layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .akcollege_contac_cards {
        grid-template-columns: 1fr;
    }

    .akcollege_contac_form_container {
        padding: 30px 25px;
    }

    .akcollege_contac_map {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .akcollege_contac_title {
        font-size: 28px;
    }

    .akcollege_contac_form_title {
        font-size: 20px;
    }

    .akcollege_contac_card {
        padding: 25px 20px;
    }

    .akcollege_contac_form_button {
        width: 100%;
        justify-content: center;
    }
}

/* gallery area css */
.akcollege_gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.akcollege_gallery_pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(61, 167, 63, 0.1) 2px, transparent 2px),
        radial-gradient(rgba(255, 162, 0, 0.1) 2px, transparent 2px);
    background-size: 30px 30px, 40px 40px;
    background-position: 0 0, 15px 15px;
    opacity: 0.3;
    z-index: 1;
}

.akcollege_gallery_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.akcollege_gallery_header {
    text-align: center;
    margin-bottom: 50px;
}

.akcollege_gallery_title {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.akcollege_gallery_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3DA73F, #FFA200);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.akcollege_gallery_header:hover .akcollege_gallery_title::after {
    width: 120px;
}

.akcollege_gallery_subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

.akcollege_gallery_filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.akcollege_gallery_filter_button {
    background: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.akcollege_gallery_filter_button:hover {
    background: #3DA73F;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(61, 167, 63, 0.2);
}

.akcollege_gallery_filter_button.active {
    background: #3DA73F;
    color: white;
}

.akcollege_gallery_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.akcollege_gallery_item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background: white;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 0;
    padding-top: 70%; /* This sets a fixed aspect ratio */
}

.akcollege_gallery_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.akcollege_gallery_img_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.akcollege_gallery_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.akcollege_gallery_item:hover .akcollege_gallery_img {
    transform: scale(1.08);
}

.akcollege_gallery_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    box-sizing: border-box;
}

.akcollege_gallery_item:hover .akcollege_gallery_overlay {
    opacity: 1;
}

.akcollege_gallery_item_title {
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.akcollege_gallery_item_category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    transition-delay: 0.05s;
}

.akcollege_gallery_item:hover .akcollege_gallery_item_title,
.akcollege_gallery_item:hover .akcollege_gallery_item_category {
    transform: translateY(0);
    opacity: 1;
}

.akcollege_gallery_expand {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 16px;
    transform: scale(0);
    transition: all 0.3s ease;
}

.akcollege_gallery_item:hover .akcollege_gallery_expand {
    transform: scale(1);
}

.akcollege_gallery_expand:hover {
    background: #3DA73F;
    color: white;
}

.akcollege_gallery_loadmore {
    margin-top: 50px;
    text-align: center;
}

.akcollege_gallery_loadmore_button {
    background: #3DA73F;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.akcollege_gallery_loadmore_button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.akcollege_gallery_loadmore_button:hover {
    background: #FFA200;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 162, 0, 0.3);
}

.akcollege_gallery_loadmore_button:hover::before {
    transform: scale(1);
}

.akcollege_gallery_loadmore_button i {
    transition: transform 0.3s ease;
}

.akcollege_gallery_loadmore_button:hover i {
    transform: translateX(5px);
}

/* Modal Styles */
.akcollege_gallery_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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;
}

.akcollege_gallery_modal.active {
    opacity: 1;
    visibility: visible;
}

.akcollege_gallery_modal_container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.akcollege_gallery_modal.active .akcollege_gallery_modal_container {
    transform: scale(1);
}

.akcollege_gallery_modal_img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

.akcollege_gallery_modal_close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.akcollege_gallery_modal_close:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.akcollege_gallery_modal_caption {
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.akcollege_gallery_modal.active .akcollege_gallery_modal_caption {
    transform: translateY(0);
}

.akcollege_gallery_modal_title {
    font-size: 18px;
    margin-bottom: 5px;
}

.akcollege_gallery_modal_desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.akcollege_gallery_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.akcollege_gallery_nav:hover {
    background: rgba(255, 255, 255, 0.5);
}

.akcollege_gallery_nav_prev {
    left: 20px;
}

.akcollege_gallery_nav_next {
    right: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .akcollege_gallery {
        padding: 80px 0;
    }

    .akcollege_gallery_grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .akcollege_gallery {
        padding: 60px 0;
    }

    .akcollege_gallery_title {
        font-size: 32px;
    }

    .akcollege_gallery_grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }

    .akcollege_gallery_filter {
        gap: 10px;
        margin-bottom: 30px;
    }

    .akcollege_gallery_filter_button {
        padding: 8px 15px;
        font-size: 14px;
    }

    .akcollege_gallery_nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .akcollege_gallery {
        padding: 50px 0;
    }

    .akcollege_gallery_title {
        font-size: 28px;
    }

    .akcollege_gallery_grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }

    .akcollege_gallery_item_title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .akcollege_gallery_item_category {
        font-size: 12px;
    }

    .akcollege_gallery_expand {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .akcollege_gallery_nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .akcollege_gallery_nav_prev {
        left: 10px;
    }

    .akcollege_gallery_nav_next {
        right: 10px;
    }
}

/* appliaction area css */
.akcollege_applicationform {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.akcollege_applicationform_pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(61, 167, 63, 0.1) 2px, transparent 2px),
        radial-gradient(rgba(255, 162, 0, 0.1) 2px, transparent 2px);
    background-size: 30px 30px, 40px 40px;
    background-position: 0 0, 15px 15px;
    opacity: 0.3;
    z-index: 1;
}

.akcollege_applicationform_container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.akcollege_applicationform_header {
    text-align: center;
    margin-bottom: 40px;
}

.akcollege_applicationform_title {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.akcollege_applicationform_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3DA73F, #FFA200);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.akcollege_applicationform_header:hover .akcollege_applicationform_title::after {
    width: 120px;
}

.akcollege_applicationform_subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

.akcollege_applicationform_main {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.akcollege_applicationform_progress {
    background: #f8f9fa;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.akcollege_applicationform_progress_steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.akcollege_applicationform_progress_steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.akcollege_applicationform_progress_step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
}

.akcollege_applicationform_progress_icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.akcollege_applicationform_progress_icon i {
    font-size: 24px;
    color: #999;
    transition: all 0.3s ease;
}

.akcollege_applicationform_progress_label {
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.akcollege_applicationform_progress_step.active .akcollege_applicationform_progress_icon {
    border-color: #3DA73F;
    background: #3DA73F;
}

.akcollege_applicationform_progress_step.active .akcollege_applicationform_progress_icon i {
    color: white;
}

.akcollege_applicationform_progress_step.active .akcollege_applicationform_progress_label {
    color: #3DA73F;
    font-weight: 600;
}

.akcollege_applicationform_bar {
    position: absolute;
    top: 30px;
    left: 0;
    height: 2px;
    background: #3DA73F;
    z-index: 2;
    width: 0;
    transition: width 0.3s ease;
}

.akcollege_applicationform_content {
    padding: 40px;
}

.akcollege_applicationform_section {
    display: none;
}

.akcollege_applicationform_section.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.akcollege_applicationform_section_title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.akcollege_applicationform_section_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #3DA73F;
    transition: width 0.3s ease;
}

.akcollege_applicationform_section:hover .akcollege_applicationform_section_title::after {
    width: 80px;
}

.akcollege_applicationform_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.akcollege_applicationform_full {
    grid-column: 1 / -1;
}

.akcollege_applicationform_field {
    margin-bottom: 25px;
    position: relative;
}

.akcollege_applicationform_label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.akcollege_applicationform_label.required::after {
    content: '*';
    color: #e74c3c;
    margin-left: 5px;
}

.akcollege_applicationform_input,
.akcollege_applicationform_select,
.akcollege_applicationform_textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.akcollege_applicationform_input:focus,
.akcollege_applicationform_select:focus,
.akcollege_applicationform_textarea:focus {
    border-color: #3DA73F;
    outline: none;
    box-shadow: 0 0 0 3px rgba(61, 167, 63, 0.1);
}

.akcollege_applicationform_select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23666' d='M8 12l-6-6 1.5-1.5L8 9l4.5-4.5L14 6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

.akcollege_applicationform_textarea {
    min-height: 120px;
    resize: vertical;
}

.akcollege_applicationform_file_upload {
    position: relative;
    margin-bottom: 30px;
}

.akcollege_applicationform_file_input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.akcollege_applicationform_file_box {
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.akcollege_applicationform_file_box:hover {
    border-color: #3DA73F;
    background: rgba(61, 167, 63, 0.03);
}

.akcollege_applicationform_file_icon {
    width: 50px;
    height: 50px;
    background: rgba(61, 167, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #3DA73F;
    font-size: 20px;
}

.akcollege_applicationform_file_title {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.akcollege_applicationform_file_subtitle {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.akcollege_applicationform_file_button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3DA73F;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.akcollege_applicationform_file_button:hover {
    background: #FFA200;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.akcollege_applicationform_file_preview {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(61, 167, 63, 0.08);
    border-radius: 6px;
    padding: 10px;
    margin-top: 15px;
}

.akcollege_applicationform_file_preview.active {
    display: flex;
}

.akcollege_applicationform_checkbox_group {
    margin: 15px 0;
}

.akcollege_applicationform_checkbox_wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.akcollege_applicationform_checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.akcollege_applicationform_checkmark {
    position: relative;
    top: 2px;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.akcollege_applicationform_checkbox:checked ~ .akcollege_applicationform_checkmark {
    background-color: #3DA73F;
    border-color: #3DA73F;
}

.akcollege_applicationform_checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.akcollege_applicationform_checkbox:checked ~ .akcollege_applicationform_checkmark:after {
    display: block;
}

.akcollege_applicationform_checkbox_label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.akcollege_applicationform_buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.akcollege_applicationform_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    outline: none;
    border: none;
}

.akcollege_applicationform_btn_prev {
    background: #f5f5f5;
    color: #666;
}

.akcollege_applicationform_btn_prev:hover {
    background: #e0e0e0;
}

.akcollege_applicationform_btn_next,
.akcollege_applicationform_btn_submit {
    background: #3DA73F;
    color: white;
}

.akcollege_applicationform_btn_next:hover,
.akcollege_applicationform_btn_submit:hover {
    background: #FFA200;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.akcollege_applicationform_btn_prev i {
    margin-right: 5px;
}

.akcollege_applicationform_btn_next i,
.akcollege_applicationform_btn_submit i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.akcollege_applicationform_btn_next:hover i,
.akcollege_applicationform_btn_submit:hover i {
    transform: translateX(5px);
}

.akcollege_applicationform_success {
    display: none;
    text-align: center;
    padding: 50px 20px;
}

.akcollege_applicationform_success.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.akcollege_applicationform_success_icon {
    width: 80px;
    height: 80px;
    background: rgba(61, 167, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #3DA73F;
    font-size: 40px;
}

.akcollege_applicationform_success_title {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.akcollege_applicationform_success_message {
    color: #666;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .akcollege_applicationform {
        padding: 60px 0;
    }

    .akcollege_applicationform_title {
        font-size: 28px;
    }

    .akcollege_applicationform_content {
        padding: 30px 20px;
    }

    .akcollege_applicationform_grid {
        grid-template-columns: 1fr;
    }

    .akcollege_applicationform_progress_steps {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .akcollege_applicationform_progress_step {
        min-width: 100px;
    }

    .akcollege_applicationform_progress_icon {
        width: 45px;
        height: 45px;
    }

    .akcollege_applicationform_buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .akcollege_applicationform_btn {
        width: 100%;
        justify-content: center;
    }
    
    .akcollege_applicationform_btn_prev {
        order: 2;
    }
    
    .akcollege_applicationform_btn_next,
    .akcollege_applicationform_btn_submit {
        order: 1;
    }
}