/* Global Styles */
:root {
    --primary-color: #00BFD3;
    --secondary-color: #1A3569;
    --accent-color: #FF9500;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --white-color: #ffffff;
    --font-primary: 'Montserrat', sans-serif;
}


@media (max-width: 768px){
    .header-box{
    max-height: 500px !important;
    min-height: 200px;
}
}
@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem !important;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.container.position-relative {
    max-width: 1300px;
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.d-none {
    display: none !important;
}

section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.section-badge {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.btn {
    display: inline-block;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Header Styles */
.site-header {
    background-color: rgba(26, 53, 105, 0.8);
    padding: 15px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 95px;
    width: auto;
}

.main-nav {
    display: flex;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 500;
    color: var(--white-color);
    padding: 8px 0;
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--white-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: none;
}

.header-actions .qebul-btn,
.header-actions .ziyaret-btn,
.header-actions .qebul-btn img,
.header-actions .ziyaret-btn img {
    display: none;
}

.lang-switcher {
    background-color: white;
    border-radius: 50px;
    padding: 8px 20px;
    position: relative;
}

.lang-switcher a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.lang-switcher a:after {
    content: none;
}

.lang-switcher .dropdown-toggle:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M12 15l-4.243-4.243 1.415-1.414L12 12.172l2.828-2.829 1.415 1.414z' fill='rgba(26,53,105,1)'/%3E%3C/svg%3E");
    background-size: contain;
    margin-left: 5px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 80px;
    padding: 5px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.lang-dropdown a {
    display: block;
    padding: 8px 20px;
    text-align: left;
    transition: all 0.2s ease;
}

.lang-dropdown a:after {
    display: none;
    content: none;
}

.lang-dropdown a:hover {
    background-color: rgba(0, 191, 211, 0.1);
    color: var(--primary-color);
}

.lang-switcher.dropdown.show .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Custom Hero Header Styles */
.custom-hero-header {
    background-image: url('../main1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 0 80px;
    color: var(--white-color);
}

.custom-hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 53, 105, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.custom-hero-header .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.custom-hero-header .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-bottom: 100px;
}

.custom-hero-header .logo-img {
    height: 80px;
    filter: brightness(0) invert(1);
}

.custom-hero-header .hero-content {
    margin-top: auto;
    max-width: 650px;
}

.custom-hero-header .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.custom-hero-header .btn-hero {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px 40px;
    font-size: 1rem;
}

.custom-hero-header .btn-hero:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.custom-hero-header .hero-navigation {
    margin-top: 50px;
    display: flex;
    gap: 15px;
}

@media (max-width: 992px) {
    .custom-hero-header .hero-title {
        font-size: 2.8rem;
    }
    
    .custom-hero-header .header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .custom-hero-header .main-nav {
        order: 3;
        width: 100%;
    }
    
    .custom-hero-header .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .custom-hero-header .header-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .custom-hero-header .hero-title {
        font-size: 2.2rem;
    }
    
    .custom-hero-header .logo-img {
        height: 60px;
    }
    
    .custom-hero-header .header-actions {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/static/main1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    padding: 180px 0 100px;
    position: relative;
}

.hero-content {
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: none;
}

.btn-hero {
    background-color: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 600;
}

.btn-hero:hover {
    background-color: var(--white-color);
    color: var(--secondary-color);
}

.hero-navigation {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.nav-arrow:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

/* About Section */
.about-section {
    background-color: var(--white-color);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.features-title {
    color: #0C1E3C;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #0C1E3C;
    font-weight: 700;
}

.feature-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-title {
        font-size: 2rem;
    }
}

/* Academic Section */
.academic-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.academic-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.academic-intro {
    flex: 0 0 300px;
}

.academic-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
    line-height: 1.3;
}

.academic-description {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.8;
}

.education-levels {
    flex: 1;
    display: flex;
    gap: 20px;
}

.level-card {
    flex: 1;
    background-color: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.level-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.level-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.level-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.level-text {
    color: var(--gray-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.level-link {
    align-self: flex-start;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--white-color);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.level-link:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

@media (max-width: 1100px) {
    .academic-content {
        flex-direction: column;
    }
    
    .academic-intro {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .education-levels {
        flex-direction: column;
    }
    
    .level-card {
        width: 100%;
    }
}

/* Statistics Section */
.statistics-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.statistics-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-image: url('/static/main2.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.statistics-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.statistics-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    display: flex;
    flex-wrap: wrap;
}

.statistics-intro {
    flex: 0 0 300px;
    margin-right: 40px;
}

.statistics-caption {
    display: block;
    font-size: 1rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.statistics-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.statistics-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat-text {
    font-size: 1rem;
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .statistics-content {
        flex-direction: column;
    }
    
    .statistics-intro {
        margin-right: 0;
        margin-bottom: 40px;
        flex: 0 0 100%;
    }
    
    .statistics-title {
        font-size: 2rem;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .statistics-content {
        padding: 40px 30px;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
    
    .stat-value {
        font-size: 2.2rem;
    }
}

/* Extracurricular Section */
.extracurricular-section {
    padding: 60px 0;
    background-color: var(--white-color);
}

.tabs-container {
    width: 100%;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 40px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 0;
    margin-right: 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-color);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-btn:hover {
    color: var(--secondary-color);
}

.tab-btn.active {
    color: var(--secondary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.activities-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.activities-info {
    flex: 1;
    position: relative;
}

.activities-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.activities-text {
    color: var(--gray-color);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.activities-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.activities-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.activities-navigation {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    color: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background-color: var(--secondary-color);
}

.nav-arrow.prev {
    background-color: #a5a4a4;
    color: var(--secondary-color);
}

.activities-image {
    flex: 1;
}

.activities-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .activities-content {
        flex-direction: column;
    }
    
    .activities-info {
        order: 2;
    }
    
    .activities-image {
        order: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .tabs-nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tab-btn {
        margin-right: 20px;
        font-size: 14px;
    }
}

/* Team Page Styles */
.team-header-section {
    padding: 40px 0 30px;
}

.team-header-box {
    background-color: #fff;
    border-radius: 30px;
    padding: 20px 40px 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-intro {
    margin-top: 40px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.breadcrumb-home {
    color: #0070ba;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #ccc;
}

.breadcrumb-current {
    color: #666;
}

.team-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
}

/* Team Content Section */
.team-content-section {
    padding: 30px 0 80px;
}

.team-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: #f0f0f0;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #0070ba;
    color: white;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.member-position {
    font-size: 14px;
    color: #0070ba;
    margin-bottom: 15px;
    font-weight: 500;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.member-name {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.member-linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    color: #333;
    transition: all 0.3s ease;
}

.member-linkedin:hover {
    background-color: #0070ba;
    color: white;
    border-color: #0070ba;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-header-box {
        padding: 15px 20px 30px;
    }
    
    .team-title {
        font-size: 32px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* News Section */
.news-section {
    background-color: var(--light-color);
}

.section-header-with-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    line-height: 1.4;
}

.news-meta {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Testimonial Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-caption {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 20px 0;
    cursor: grab;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 11 */
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.testimonials-track::-webkit-scrollbar {
    display: none; /* WebKit browsers */
}

.testimonials-track.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.testimonial-item {
    flex: 0 0 auto;
    text-align: center;
    transition: all 0.5s ease;
    opacity: 0.5;
    filter: grayscale(100%);
    transform: scale(0.85);
    position: relative;
    cursor: pointer;
    padding: 0;
    margin: 0 5px;
    scroll-snap-align: center;
}

.testimonial-item.active {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.1);
    z-index: 2;
}

.testimonial-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    height: 290px;
    width: 220px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.testimonial-item.active .play-button {
    opacity: 1;
    visibility: visible;
}

.play-button:hover {
    background-color: var(--secondary-color);
}

.testimonial-name {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 16px;
    margin-bottom: 3px;
}

.testimonial-position {
    color: var(--primary-color);
    font-size: 14px;
}

.testimonials-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonials-navigation .nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #e0e0e0;
    color: #5d5d5d !important;
    cursor: pointer;
    transition: all 0.3s ease;
}


.testimonials-navigation .nav-arrow:hover {
    background-color: e0e0e0 !important;
}

.testimonials-navigation .nav-arrow.prev {
    background-color: #e0e0e0;
    
}

@media (max-width: 992px) {
    .testimonials-track {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 20px;
    }
    
    .testimonial-item {
        flex: 0 0 250px;
    }
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonial-image {
        height: 250px;
        width: 180px;
    }
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.cta-box {
    background-color: #0078c8;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: var(--white-color);
    max-width: 1300px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid var(--white-color);
    border-radius: 30px;
    color: var(--white-color);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    min-width: 180px;
}

.cta-btn:hover {
    background-color: var(--white-color);
    color: #0078c8;
}

@media (max-width: 768px) {
    .cta-box {
        padding: 30px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-phone,
.footer-email {
    color: var(--white-color);
    font-size: 0.9rem;
}

.footer-social {
    text-align: right;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.footer-link {
    color: var(--white-color);
    font-size: 0.9rem;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.maxcreative {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .section-header-with-button {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .hero-content {
        margin: 0 auto 40px;
        text-align: center;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-social {
        text-align: left;
    }
    
    .social-links,
    .footer-links {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Boxed Hero Section */
.boxed-hero-section {
    padding: 0;
    background-color: transparent;
    position: relative;
}

.position-relative {
    position: relative;
}

/* Main Header Styles */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    width: 100%;
    position: relative;
    z-index: 10;
}

.header-logo img {
    height: 95px;
    width: auto;
}

.header-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.header-menu a {
    text-decoration: none;
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.header-menu a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: none;
}

.header-actions .qebul-btn,
.header-actions .ziyaret-btn,
.header-actions .qebul-btn img,
.header-actions .ziyaret-btn img {
    display: none;
}

.lang-switcher {
    margin-left: 10px;
    background-color: white;
    border-radius: 50px;
    padding: 5px 15px;
}

.lang-switcher a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 14px;
}

.lang-switcher a.active {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--white-color);
    transition: all 0.3s ease;
}

/* Mobile Menu */
@media (max-width: 1100px) {
    .header-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-buttons-wrapper {
        display: none;
    }
}

.boxed-hero {
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 60px;
    margin-top: 40px;
}

.boxed-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 53, 105, 0.7), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.boxed-hero .hero-content {
    position: relative;
    z-index: 2;
    color: var(--white-color);
    max-width: 600px;
    padding-left: 0;
    padding-bottom: 120px;
    margin-top: 100px;
}

.boxed-hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.boxed-hero .btn-hero {
    background-color: transparent;
    color: var(--white-color);
    padding: 12px 30px;
    border: 2px solid #00BFD3;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
}

.boxed-hero .btn-hero:hover {
    background-color: #00BFD3;
    color: var(--white-color);
}

.boxed-hero .hero-navigation {
    position: absolute;
    z-index: 2;
    display: flex;
    gap: 15px;
    bottom: 40px;
    right: 40px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white-color);
    background-color: #a5a4a4;
}

.nav-arrow svg {
    width: 24px;
    height: 24px;
}

 

.main-hero-bg {
    background-image: url('/static/main1.jpg');
}

@media (max-width: 768px) {
    .boxed-hero {
        min-height: 500px;
        padding: 30px;
    }
    
    .boxed-hero .hero-content {
        padding-left: 0;
        padding-bottom: 80px;
    }
    
    .boxed-hero .hero-title {
        font-size: 36px;
    }
    
    .main-header {
        top: 15px;
    }
    
    .header-logo img {
        height: 95px;
    }
}

/* Graduate Section */
.graduate-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.graduate-box {
    background-color: #0c1e3c;
    border-radius: 20px;
    padding: 60px;
    color: var(--white-color);
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

.graduate-header {
    text-align: center;
    margin-bottom: 40px;
}

.graduate-caption {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.graduate-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.graduate-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.graduate-image {
    flex: 0 0 140px;
}

.graduate-image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.graduate-quote {
    flex: 1;
}

.graduate-quote p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.graduate-author {
    font-weight: 500;
    font-style: italic;
}

.graduate-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.graduate-navigation {
    display: flex;
    gap: 10px;
}

.graduate-navigation .nav-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.graduate-navigation .nav-arrow.prev {
    background-color: #ff9500;
}

.graduate-navigation .nav-arrow:hover {
    opacity: 0.8;
}

.graduate-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    padding: 2px;
    background: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dot img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.dot.active {
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .graduate-box {
        padding: 30px;
    }
    
    .graduate-title {
        font-size: 2rem;
    }
    
    .graduate-content {
        flex-direction: column;
        text-align: center;
    }
    
    .graduate-controls {
        flex-direction: column;
        gap: 20px;
    }
}

/* Team Page Styles */
.team-header-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.team-header-box {
    background-color: #0C1E3C;
    border-radius: 20px;
    padding: 30px 40px 80px;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-header-section .main-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    padding: 0;
}

.team-header-section .header-menu a {
    color: var(--white-color);
}

.team-intro {
    margin-top: 100px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-home {
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.breadcrumb-separator {
    margin: 0 10px;
}

.breadcrumb-current {
    font-size: 14px;
}

.team-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
}

.team-content-section {
    padding: 60px 0;
}

@media (max-width: 992px) {
    .team-header-box {
        padding: 30px 30px 60px;
    }
}

@media (max-width: 768px) {
    .team-header-section {
        padding: 40px 0;
    }
    
    .team-header-box {
        padding: 20px 20px 50px;
    }
    
    .team-intro {
        margin-top: 60px;
    }
    
    .team-title {
        font-size: 2.5rem;
    }
}

/* Mobile Menu Styles */
.header-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 100;
}

.header-menu.active ul {
    flex-direction: column;
    width: 100%;
}

.header-menu.active li {
    margin-bottom: 15px;
}

.header-actions.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 250px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 100;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Team Grid Active Class */
.team-grid.active {
    display: grid;
}

/* CEO Page Styles */
.ceo-header-section {
    padding: 40px 0 30px;
    background-color: #f8f9fa;
}

.ceo-header-box {
    background-color: #1a2c4a;
    border-radius: 30px;
    padding: 20px 40px 60px;
    color: #ffffff;
    position: relative;
}

.ceo-header-box .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ceo-header-box .header-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.ceo-header-box .header-menu ul {
    display: flex;
    gap: 30px;
}

.ceo-header-box .header-menu a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.ceo-header-box .header-menu a:hover {
    color: #00bfd3;
}

.ceo-header-box .action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ceo-header-box .qebul-btn {
    background-color: #00bfd3;
    color: white;
}

.ceo-header-box .ziyaret-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.ceo-header-box .action-btn img {
    height: 20px;
    width: 20px;
    filter: brightness(0) invert(1);
}

.ceo-header-box .lang-switcher {
    background-color: white;
    border-radius: 50px;
    padding: 8px 16px;
    min-width: 60px;
    text-align: center;
}

.ceo-header-box .lang-switcher a {
    color: #1a2c4a;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.ceo-title-section {
    margin-top: 60px;
    text-align: center;
}

.ceo-header-box .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ceo-header-box .breadcrumb-home {
    color: #00bfd3;
}

.ceo-header-box .breadcrumb-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.ceo-header-box .breadcrumb-current {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.ceo-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

.ceo-content-section {
    padding: 60px 0;
}

.ceo-content {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .ceo-header-box {
        padding: 20px 30px 50px;
    }
    
    .ceo-header-box .main-header {
        flex-wrap: wrap;
    }
    
    .ceo-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .ceo-header-box {
        padding: 15px 20px 40px;
        border-radius: 20px;
    }
    
    .ceo-header-box .header-logo img {
        height: 50px;
    }
    
    .ceo-title-section {
        margin-top: 40px;
    }
    
    .ceo-title {
        font-size: 28px;
    }
}

/* CEO Message Styles */
.ceo-content-section {
    padding: 60px 0;
}

.ceo-message {
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px;
}

.ceo-message-content {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.ceo-message-content p {
    margin-bottom: 20px;
}

.ceo-message-content p:first-child {
    font-weight: 600;
}

.ceo-signature {
    margin-top: 40px;
}

.ceo-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.ceo-position {
    color: #666;
    font-size: 14px;
}

.ceo-photo {
    flex: 0 0 450px;
}

.ceo-photo img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1100px) {
    .ceo-message {
        flex-direction: column-reverse;
        padding: 30px;
        gap: 40px;
    }
    
    .ceo-photo {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ceo-content-section {
        padding: 40px 0;
    }
    
    .ceo-message {
        padding: 20px;
        border-radius: 20px;
    }
    
    .ceo-message-content {
        font-size: 15px;
    }
    
    .ceo-signature {
        margin-top: 30px;
    }
}

/* Call to Action Box Styles */
.cta-box-section {
    padding: 40px 0;
}

.cta-box {
    background-color: #0078c8;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    min-width: 150px;
}

.cta-btn.qebul-btn {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.cta-btn.qebul-btn:hover {
    background-color: white;
    color: #0078c8;
}

.cta-btn.ziyaret-btn {
    background-color: white;
    color: #0078c8;
}

.cta-btn.ziyaret-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .cta-box {
        padding: 30px 15px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

.header-buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-buttons {
    display: flex;
    align-items: center;
    background-color: rgba(80, 89, 98, 0.8);
    border-radius: 50px;
    padding: 5px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

.action-icon {
    width: 24px;
    height: 24px;
}

.qebul-btn {
    background-color: transparent;
    color: white;
}

.qebul-btn .action-icon {
    /* filter: brightness(0) invert(1); */
}

.qebul-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.ziyaret-btn {
    background-color: transparent;
    color: white;
    border: none;
    position: relative;
}

.ziyaret-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.ziyaret-btn:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: rgba(255, 255, 255, 0.3);
}

.lang-switcher {
    background-color: white;
    border-radius: 50px;
    padding: 8px 20px;
}

.lang-switcher a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.lang-switcher a:after {
    content: none;
}

.lang-switcher .dropdown-toggle:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M12 15l-4.243-4.243 1.415-1.414L12 12.172l2.828-2.829 1.415 1.414z' fill='rgba(26,53,105,1)'/%3E%3C/svg%3E");
    background-size: contain;
    margin-left: 5px;
}

/* Header Dropdown Styles */
.header-menu .dropdown {
    position: relative;
}

.header-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    min-width: 220px;
    padding: 10px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
    margin-top: 10px;
}

.header-menu .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--secondary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: left;
}

.header-menu .dropdown-menu a:hover {
    color: var(--primary-color);
    background-color: rgba(0, 191, 211, 0.1);
}

.header-menu .dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
} 