
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
}


.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 25px; 
}

.nav-menu > li {
    position: relative;
}


.nav-menu a:not(.dropdown-toggle) {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 12px;
    position: relative;
    display: inline-block;
    border-radius: 4px;
}

.nav-menu a:hover:not(.dropdown-toggle),
.nav-menu a.active:not(.dropdown-toggle) {
    color: #3498db;
    background-color: #f8f9fc;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: #3498db;
}


.nav-item.dropdown {
    position: relative;
}

.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 15px !important;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    gap: 5px;
}

.dropdown-toggle:hover,
.nav-item.dropdown:hover .dropdown-toggle {
    color: #3498db;
    background-color: #f8f9fc;
}

.dropdown-badge {
    margin-left: 5px;
    font-size: 10px;
    padding: 2px 6px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    color: white;
    border-radius: 10px;
}


.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
    margin-top: 15px;
    min-width: 280px;
    background: white;
    border: 1px solid #eaeaea;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    z-index: 1001;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}


.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-header {
    padding: 12px 20px;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
    background: #f8f9fc;
    border-radius: 8px 8px 0 0;
}

.dropdown-header i {
    color: #3498db;
}

.dropdown-item {
    padding: 12px 20px;
    color: #333;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    border-left: 3px solid transparent;
    margin: 2px 10px;
    border-radius: 4px;
    gap: 12px;
}

.dropdown-item:hover {
    background-color: #f8f9fc;
    color: #3498db;
    border-left-color: #3498db;
    transform: translateX(5px);
}

.dropdown-item i {
    color: #3498db;
    font-size: 14px;
    margin-top: 2px;
    min-width: 20px;
}

.dropdown-item .d-flex {
    flex: 1;
}

.dropdown-item .font-weight-medium {
    font-weight: 600;
    font-size: 14px;
}

.dropdown-item small {
    font-size: 12px;
    color: #666;
    display: block;
    margin-top: 2px;
}

.dropdown-divider {
    margin: 8px 15px;
    border-top: 1px solid #eee;
}

.dropdown-item.text-center {
    background: linear-gradient(45deg, #f8f9fc, #e9ecef);
    border: 1px dashed #3498db;
    margin: 10px 15px;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    display: block;
}

.dropdown-item.text-center:hover {
    background: linear-gradient(45deg, #3498db, #2ecc71);
    color: white;
    transform: translateY(-2px);
    border-color: transparent;
}

.dropdown-item.text-center:hover small {
    color: rgba(255, 255, 255, 0.9);
}

.dropdown-item.text-center i {
    font-size: 16px;
    margin-bottom: 5px;
    display: inline-block;
}


.dropdown-toggle::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    border: none;
    margin-left: 5px;
    font-size: 10px;
    transition: transform 0.3s ease;
    color: inherit;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
    color: #3498db;
}


.admin-btn {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.admin-btn:hover {
    background: linear-gradient(45deg, #3498db, #2ecc71);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

.logout-btn {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    font-family: inherit;
    font-size: inherit;
}

.logout-btn:hover {
    background: linear-gradient(45deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    animation: fadeInUp 0.3s ease forwards;
    opacity: 0;
}

.dropdown-item:nth-child(1) { animation-delay: 0.05s; }
.dropdown-item:nth-child(2) { animation-delay: 0.1s; }
.dropdown-item:nth-child(3) { animation-delay: 0.15s; }
.dropdown-item:nth-child(4) { animation-delay: 0.2s; }
.dropdown-item:nth-child(5) { animation-delay: 0.25s; }
.dropdown-item:nth-child(6) { animation-delay: 0.3s; }
.dropdown-item:nth-child(7) { animation-delay: 0.35s; }
.dropdown-item:nth-child(8) { animation-delay: 0.4s; }
.dropdown-item:nth-child(9) { animation-delay: 0.45s; }
.dropdown-item:nth-child(10) { animation-delay: 0.5s; }

/* Mobile dropdown styling */
@media (max-width: 991px) {
    .navbar .container {
        padding: 15px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        height: calc(100vh - 70px);
        overflow-y: auto;
        gap: 10px;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu > li {
        width: 100%;
        margin: 5px 0 !important;
    }
    
    .nav-menu a:not(.dropdown-toggle) {
        display: block;
        padding: 12px 15px;
        width: 100%;
        border-radius: 6px;
    }
    
    .nav-link.dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 12px 15px !important;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 5px;
        box-shadow: none;
        border: 1px solid #eee;
        background: #f8f9fc;
        padding: 10px 0;
        opacity: 1;
        transform: none;
        display: none;
        animation: none;
    }
    
    .dropdown-item {
        margin: 2px 15px;
        padding: 10px 15px;
        animation: none;
        opacity: 1;
    }
    
    .dropdown-header {
        background: #e9ecef;
        margin: 0;
        border-radius: 0;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #333;
        transition: 0.3s;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu a.active::after {
        left: 15px;
        transform: none;
    }
}


.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.slide.bold-modern .slide-content {
    text-align: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.7); 
    border-radius: 12px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); 
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: containerReveal 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s forwards;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1); 
}


.slide.bold-modern .slide-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(52, 152, 219, 0.5), 
        rgba(155, 89, 182, 0.5), 
        rgba(52, 152, 219, 0.5));
    z-index: -1;
    border-radius: 14px;
    opacity: 0;
    animation: borderGlow 0.6s ease 0.8s forwards;
}


.slide.bold-modern .slide-content h1 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff; 
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    opacity: 0;
    transform: translateY(-30px) scale(1.1);
    animation: titleReveal 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s forwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); 
    

    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    

    max-height: 2.4em;
    text-overflow: ellipsis;
}


.slide.bold-modern .slide-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    border-radius: 2px;
    opacity: 0;
    animation: lineAppear 0.5s ease 1s forwards;
}


.slide.bold-modern .slide-content p {
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9); 
    line-height: 1.4;
    margin-bottom: 35px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: subtitleReveal 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s forwards;
    

    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    
  
    max-height: 2.8em;
    text-overflow: ellipsis;
    
   
    padding: 15px;
    background: rgba(52, 152, 219, 0.1); 
    border-radius: 8px;
    border-left: 3px solid #3498db;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.slide.bold-modern .btn-primary {
    font-size: 16px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 8px;
    background: rgba(52, 152, 219, 0.8); 
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    animation: buttonReveal 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.1s forwards;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.slide.bold-modern .btn-primary:hover {
    transform: translateY(-3px);
    background: rgba(41, 128, 185, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}


.slide.bold-modern .btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.slide.bold-modern .btn-primary:active::after {
    width: 200px;
    height: 200px;
}


@keyframes borderGlow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes lineAppear {
    from {
        opacity: 0;
        width: 0;
    }
    to {
        opacity: 1;
        width: 100px;
    }
}

@keyframes containerReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(1.1);
        filter: blur(4px);
    }
    70% {
        opacity: 0.8;
        transform: translateY(10px) scale(1.02);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes subtitleReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) rotateX(20deg);
    }
    70% {
        opacity: 0.7;
        transform: translateY(-5px) rotateX(5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes buttonReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9) rotate(-3deg);
    }
    70% {
        opacity: 0.8;
        transform: translateY(-8px) scale(1.05) rotate(1deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0);
    }
}


@keyframes floatContent {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.slide.bold-modern.active .slide-content {
    animation: 
        containerReveal 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s forwards,
        floatContent 3s ease-in-out 1.5s infinite;
}


.slide.bold-modern.light-transparent .slide-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.slide.bold-modern.light-transparent .slide-content h1 {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slide.bold-modern.light-transparent .slide-content p {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.slide.bold-modern.light-transparent .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.slide.bold-modern.light-transparent .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
}


@media (max-width: 992px) {
    .slide.bold-modern .slide-content h1 {
        font-size: 42px;
        line-height: 1.1;
        max-height: 2.2em;
    }
    
    .slide.bold-modern .slide-content p {
        font-size: 20px;
        line-height: 1.3;
        max-height: 2.6em;
    }
    
    .slide.bold-modern .slide-content {
        padding: 35px 30px;
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    .slide.bold-modern .slide-content {
        padding: 30px 25px;
        margin: 0 15px;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
    
    .slide.bold-modern .slide-content h1 {
        font-size: 36px;
        line-height: 1.1;
        max-height: 2.2em;
    }
    
    .slide.bold-modern .slide-content p {
        font-size: 18px;
        line-height: 1.3;
        max-height: 2.6em;
        padding: 12px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    
    .slide.bold-modern .btn-primary {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .slide.bold-modern .slide-content h1 {
        font-size: 32px;
        max-height: 2.4em;
    }
    
    .slide.bold-modern .slide-content p {
        font-size: 16px;
        max-height: 2.8em;
        padding: 10px;
    }
    
    .slide.bold-modern .slide-content {
        padding: 25px 20px;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }
}


@supports not (backdrop-filter: blur(5px)) {
    .slide.bold-modern .slide-content {
        background: rgba(0, 0, 0, 0.85);
    }
    
    .slide.bold-modern.light-transparent .slide-content {
        background: rgba(0, 0, 0, 0.6);
    }
}


.slide.bold-modern .slide-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(52, 152, 219, 0.1) 0, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(155, 89, 182, 0.1) 0, transparent 50%);
    z-index: -1;
    border-radius: 12px;
    opacity: 0.5;
    animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-10px) translateX(10px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}



.hero-slider {
    height: 600px;
    overflow: hidden;
  
    position: relative;
}

.slides-container {
    height: 100%;
    position: relative;
}

.slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide:first-child,
.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}


.slide:first-child .slide-content,
.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide:first-child .slide-content h1,
.slide:first-child .slide-content p,
.slide:first-child .slide-content .btn-primary,
.slide.active .slide-content h1,
.slide.active .slide-content p,
.slide.active .slide-content .btn-primary {
    transform: translateY(0);
    opacity: 1;
}


.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.slide-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}


.slide-title {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s;
}

.slide-description {
    font-size: 18px;
    margin-bottom: 30px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.4s, opacity 0.8s ease 0.4s;
}

.slide-button {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.6s, opacity 0.8s ease 0.6s;
}

.slide.active .slide-title,
.slide.active .slide-description,
.slide.active .slide-button {
    transform: translateY(0);
    opacity: 1;
}


.slide-content.fade-in {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.slide-content.zoom-in {
    animation: zoomIn 1.2s ease forwards;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.slider-nav:hover {
    background: rgba(255,255,255,0.3);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}


.section-title {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #3498db;
}

.slide:first-child {
    opacity: 1;
    visibility: visible;
    position: relative;
}




.services-section{
    padding: 80px 0 !important;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 48px;
    color: #3498db;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}


.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.course-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 20px;
}

.course-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    color: #666;
}


.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.project-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-demo {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-demo:hover {
    background-color: #229954;
    color: white;
}


.contact-cta {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin: 50px 0;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}


.footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}


@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 3px 0;
        transition: 0.3s;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }
}

.logout-btn {
    background: none;
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    background-color: #e74c3c;
    transition: background-color 0.3s;
}

.logout-btn:hover {
    background-color: #c0392b;
}

.d-inline {
    display: inline;
}


.home-about-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #1e293b;
}

.highlight {
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}


.about-visual {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(67, 97, 238, 0.15);
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-container:hover .main-image {
    transform: scale(1.05);
}

.image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    pointer-events: none;
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.3);
    z-index: 2;
}

.badge-content {
    text-align: center;
}

.badge-content .years {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.badge-content .label {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
}

.placeholder-visual {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(67, 97, 238, 0.1);
}

.placeholder-image {
    font-size: 5rem;
    color: rgba(67, 97, 238, 0.2);
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4361ee;
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}


.about-content {
    padding-top: 20px;
}

.content-intro {
    margin-bottom: 30px;
}

.content-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.content-subtitle {
    font-size: 1.1rem;
    color: #4361ee;
    font-weight: 500;
    line-height: 1.6;
}

.content-text {
    margin-bottom: 30px;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.features-preview {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.features-preview h4 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.features-list {
    display: grid;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: #10b981;
    font-size: 0.9rem;
}

.feature-item span {
    color: #475569;
    font-size: 0.95rem;
}

.mission-vision-highlights {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.highlight-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.mission-icon {
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
}

.vision-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.highlight-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.highlight-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.about-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.3);
    color: white;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: transparent;
    color: #4361ee;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #4361ee;
}

.btn-outline:hover {
    background: #4361ee;
    color: white;
    transform: translateY(-3px);
}


.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(58, 12, 163, 0.1) 100%);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: -100px;
}

.dot-grid {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#4361ee 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}


@media (max-width: 992px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .main-image,
    .placeholder-visual {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .home-about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        right: 20px;
        bottom: -20px;
    }
    
    .badge-content .years {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .main-image,
    .placeholder-visual {
        height: 280px;
    }
    
    .content-title {
        font-size: 1.6rem;
    }
    
    .highlight-card {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        margin: 0 auto;
    }
}



.about-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}


.about-section {
    padding: 80px 0;
    background: #fff;
}

.mv-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-section {
    padding: 80px 0;
    background: #fff;
}

.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.journey-section {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.title-line {
    width: 80px;
    height: 4px;
    background: #3498db;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}


.about-intro {
    margin-top: 40px;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.content-text p {
    margin-bottom: 20px;
}

.content-text h2,
.content-text h3 {
    color: #2c3e50;
    margin: 25px 0 15px;
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}


.intro-image {
    position: relative;
}

.image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

.main-about-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.badge-content span {
    font-weight: 600;
    font-size: 0.9rem;
}


.mv-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    margin-bottom: 25px;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.card-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.card-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(44, 62, 80, 0.1) 100%);
    border-radius: 0 0 0 100px;
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.value-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(52, 152, 219, 0.1);
    line-height: 1;
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.feature-progress {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    border-radius: 3px;
    transition: width 1.5s ease;
}

.progress-value {
    font-weight: 600;
    color: #2c3e50;
    min-width: 40px;
    font-size: 0.9rem;
}


.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #3498db;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-end;
    padding-right: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 50px;
}

.timeline-year {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    max-width: 300px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 20px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 20px;
}

.timeline-title {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px white, 0 0 0 6px #3498db;
}


.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #3498db;
    border: none;
}

.cta-buttons .btn-primary:hover {
    background: #f8f9fa;
    color: #2c3e50;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #3498db;
}


.no-content-section {
    padding: 100px 0;
    text-align: center;
}

.no-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-content-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2rem;
}

.no-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.no-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}


@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .mv-cards,
    .values-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start !important;
        padding-left: 70px !important;
        padding-right: 0 !important;
    }
    
    .timeline-content {
        margin: 0 !important;
    }
    
    .timeline-dot {
        left: 24px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-section,
    .mv-section,
    .values-section,
    .features-section,
    .journey-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .achievement-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .main-about-image {
        height: 350px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .mv-card,
    .value-card,
    .feature-card {
        padding: 25px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .feature-progress {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}