* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;*/
    line-height: 1.6;
    color: #333;
    overflow-x: hidden!important;
}
html{
    scroll-behavior: smooth;
    overflow-x: hidden!important;
}

/* Mediterranean Color Palette */
:root {
    --amber-primary: #FFBF00;
    --amber-dark: #DAA520;
    --amber-light: #FFE135;
    --gold: #C19552;
    --mediterranean-blue: #2E86AB;
    --olive-green: #A4AC86;
    --sunset-orange: #FF6B35;
    --cream: #FFF8DC;
    --terracotta: #C65D21;
        /*--cream: #f8f5f0;*/
        /*--amber-primary: #f59e0b;*/
        /*--gold: #d97706;*/
    --dark-blue: #1e3a8a;
    --light-blue: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --ocean-blue: #2e86ab;
    --amber-primary-contact: #FFC107;
    --gold-conact: #FFD700;
    --cream-contact: #FFF8E1;
    --amber-primary-school: #f59e0b;
    --gold-school: #fbbf24;
    --light-blue-school: #06b6d4;
    --text-dark-school: #1f2937;
    --text-light-school: #6b7280;
    --bg-gradient-school: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    --sunset-orange-host: #ff6b35;
    --amber-primary-host: #f59e0b;
    --gold-host: #fbbf24;
    --ocean-blue-host: #2e86ab;
    --text-dark-host: #1f2937;
    --text-light-host: #6b7280;
    --scroll-progress: 0%;
    --preloader-duration: 1.5s;
}
ul{
    list-style-type: none;
}
/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Header with Mediterranean styling */
.user-icon{
    cursor: pointer;
}
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 4;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 3px solid var(--amber-primary);
    transition: all 0.3s ease;
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
#logos{
    display: flex;
    align-items: center;
}
.erasmusLogo{
    width: 150px;
    margin-left: 20px;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--amber-primary), var(--gold));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--amber-primary);
}
.nav-menu .active-page{
    color: var(--amber-primary);
}
.nav-menu .active-page::after{
    width: 100%;
}
/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 8px;
    z-index: 1;
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: var(--cream);
}

/* Hero Section - Mediterranean Sunset */
.hero {
    height: 100vh;
    background: linear-gradient(135deg,
    rgba(255, 191, 0, 0.9) 0%,
    rgba(255, 107, 53, 0.8) 30%,
    rgba(46, 134, 171, 0.9) 70%,
    rgba(46, 134, 171, 1) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="sun" cx="80%" cy="20%" r="30%"><stop offset="0%" style="stop-color:%23FFE135;stop-opacity:0.8"/><stop offset="100%" style="stop-color:%23FFBF00;stop-opacity:0.3"/></radialGradient></defs><rect width="1200" height="800" fill="url(%23sun)"/><path d="M0,400 Q300,350 600,380 T1200,360 L1200,800 L0,800 Z" fill="rgba(46,134,171,0.6)"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="1" fill="rgba(255,255,255,0.3)"><animate attributeName="opacity" values="0.3;1;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="70" cy="20" r="0.5" fill="rgba(255,255,255,0.4)"><animate attributeName="opacity" values="0.4;1;0.4" dur="2s" repeatCount="indefinite"/></circle><circle cx="50" cy="70" r="0.8" fill="rgba(255,255,255,0.2)"><animate attributeName="opacity" values="0.2;0.8;0.2" dur="4s" repeatCount="indefinite"/></circle></svg>');
    background-size: 200px 200px;
    animation: stars 20s infinite linear;
}

@keyframes stars {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -200px); }
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease-out;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--amber-primary), var(--gold));
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 191, 0, 0.4);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 191, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: var(--mediterranean-blue);
    transform: translateY(-3px);
}

/* Common Section Styling */
.section {
    padding: 120px 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--amber-primary), var(--terracotta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Erasmus Section */
.erasmus-section {
    background: linear-gradient(135deg, var(--cream) 0%, #fff 50%, var(--cream) 100%);
}

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

.program-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.program-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--amber-primary), var(--gold), var(--terracotta));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-card:hover::before {
    opacity: 1;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.program-icon {

    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
}

/* For Students Section */
.students-section {
    background: linear-gradient(135deg, var(--mediterranean-blue), #1a5f7a);
    color: white;
}

.students-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.requirements-list, .documents-list {
    margin: 30px 0;
}

.requirements-list li, .documents-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.requirements-list li::before, .documents-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--amber-primary);
    font-weight: bold;
    font-size: 18px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(10px);
}

/* For Universities Section */
/* Enhanced Universities Section */
#universities {
    /*margin-top: 100px;*/
    position: relative;
    background: linear-gradient(135deg, #fefbf3 0%, #fef7ed 50%, #fef3c7 100%);
    overflow: hidden;
}

.universities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.container-schools {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}

/* Enhanced Section Header */
.section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}
.section-header::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--amber-primary-school), var(--gold-school), var(--light-blue-school));
    border-radius: 2px;
    animation: slideIn 1.5s ease-out;
}

.section-header h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--amber-primary-school), var(--gold-school), var(--light-blue-school));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
}

.section-description {
    font-size: 1.4rem;
    color: var(--text-light-school);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
    animation: fadeInUp 1.4s ease-out;
}

/* Stats Counter */
.stats-highlight {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--amber-primary-school), var(--gold-school));
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 20px 0;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3);
    animation: fadeInScale 1.6s ease-out;
    position: relative;
    overflow: hidden;
}

.stats-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.stats-highlight:hover::before {
    left: 100%;
}

.stats-number {
    font-size: 1.8rem;
    font-weight: 900;
}

/* Enhanced Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
    align-items: start;
}

/* Partnership Card */
.partnership-card {
    background: white;
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(20px);
    opacity: 0;
    animation: cardSlideUp 1s ease-out 0.8s forwards;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--amber-primary-school), var(--gold-school), var(--light-blue-school));
    animation: slideInWidth 1.5s ease-out 1.2s both;
}

.partnership-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

/* Card Icon with background image */
.card-icon {
    height: 300px;
    background-image: url("/assets/images/1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
    /* Dodaj gradient border direktno */
    border: 3px solid;
    /*border-image: linear-gradient(135deg, var(--amber-primary-school), var(--gold-school)) 1;*/
    /* Fallback color if image doesn't load */
    background-color: #f59e0b;
}

/* Gradient border effect for card icon */
/*.card-icon::before {*/
/*    !*content: '';*!*/
/*    !*position: absolute;*!*/
/*    !*top: -4px;*!*/
/*    !*left: -4px;*!*/
/*    !*right: -4px;*!*/
/*    !*bottom: -4px;*!*/
/*    !*background: linear-gradient(135deg, var(--amber-primary-school), var(--gold-school));*!*/
/*    !*border-radius: 50%;*!*/
/*    !*z-index: -2; !* Stavili smo još niži z-index *!*!*/
/*}*/

.card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-dark);
}

.card-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.gallery3d-card-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: -5px;
    text-align: center;
    color: #FFD700;
}

.gallery3d-card-description {
    font-size: 0.7rem;
    color: #F0F8FF;
    line-height: 1.4;
    text-align: center;
}

/* Benefits List */
.benefits-list {
    background: rgba(245, 158, 11, 0.05);
    border-radius: 20px;
    padding: 40px;
    border-left: 4px solid var(--amber-primary-school);
}

.benefits-list h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark-school);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.benefit-item:nth-child(1) { animation-delay: 1.4s; }
.benefit-item:nth-child(2) { animation-delay: 1.6s; }
.benefit-item:nth-child(3) { animation-delay: 1.8s; }
.benefit-item:nth-child(4) { animation-delay: 2s; }

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.2);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--amber-primary-school), var(--gold-school));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.benefit-text {
    font-weight: 500;
    color: var(--text-dark-school);
}


/* CTA Section */
.cta-section-schools {
    text-align: center;
    margin-top: 80px;
    padding: 30px;
    background: linear-gradient(135deg, var(--amber-primary-school), var(--gold-school));
    border-radius: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 2.2s both;
}

.cta-section-schools::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content-schools {
    position: relative;
    z-index: 2;
}

.cta-title-schools {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-description-schools {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-schools {
    background: white;
    color: var(--amber-primary-school);
    border: none;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.cta-button-schools::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--amber-primary-school);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button-schools:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button-schools:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-schools span {
    position: relative;
    z-index: 2;
}

/* Floating Elements Enhancement */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--amber-primary-school), var(--gold-school));
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 30%;
    right: 10%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-school), var(--light-blue-school));
    animation-delay: 3s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue-school), var(--amber-primary-school));
    animation-delay: 6s;
}

.floating-element:nth-child(4) {
    top: 60%;
    right: 25%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--amber-primary-school), var(--light-blue-school));
    animation-delay: 2s;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

@keyframes slideInWidth {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */


/* For Employers Section */
/* For Employers Section */
#employers {
    /*margin-top: 100px;*/
}

.container-employers {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.employers-section {
    background: linear-gradient(
        180deg,
        rgba(255,107,53,0.08) 0%,
        rgba(255,191,0,0.08) 40%,
        rgba(46,134,171,0.06) 100%
    ),
    linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

/*.section-header::before {*/
/*    content: '🏢';*/
/*    position: absolute;*/
/*    top: -60px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    font-size: 3rem;*/
/*    animation: bounce 2s infinite;*/
/*}*/

.section-header::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--sunset-orange), var(--amber-primary), var(--gold));
    border-radius: 2px;
    animation: slideIn 1.2s ease-out;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--amber-primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.7;
}

/* Stats highlight */
.stats-highlight {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--amber-primary));
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 20px 0 40px;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
    animation: fadeInScale 1.6s ease-out;
    position: relative;
    overflow: hidden;
}

.stats-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.stats-highlight:hover::before {
    left: 100%;
}

.stats-number {
    font-size: 1.8rem;
    font-weight: 900;
}

.employer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 50px;
    margin-top: 60px;
    margin-bottom: 80px;
}
.employer-card {
    /*background: rgba(255,255,255,0.95);*/
    background-position: center;
    background-size: cover;
    color: white!important;
    padding: 50px 45px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(16,24,32,0.08);
    border: 1px solid rgba(15,23,32,0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /*cursor: pointer;*/
    transform: translateY(30px);
    opacity: 0;
    backdrop-filter: blur(8px);
    animation: cardSlideUp 1s ease-out 1.2s forwards;
}

.employer-card:nth-child(2) { animation-delay: 1.4s; }
.employer-card:nth-child(3) { animation-delay: 1.6s; }

.employer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.8s ease;
}

/*.employer-card:hover::before {
    left: 100%;
}*/

.employer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--sunset-orange), var(--amber-primary), var(--ocean-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.employer-card:hover::after {
    transform: scaleX(1);
}
/*
.employer-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 45px 90px rgba(16,24,32,0.15);
    background: rgba(255,255,255,0.98);
}*/

.icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sunset-orange), var(--amber-primary));
    border-radius: 50%;
    animation: pulse 2.5s infinite;
}

.icon-inner {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: transform 0.4s ease;
}

.employer-card:hover .icon-inner {
    transform: rotateY(180deg);
}


.features-list {
    list-style: none;
    text-align: left;
    margin: 25px 0;
}

.features-list li {
    color: white;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 12px 0 12px 35px;
    opacity: 0;
    transform: translateX(-25px);
    transition: all 0.5s ease-out;
    line-height: 1.6;
    animation: slideInLeft 0.6s ease-out forwards;
}

.features-list li:nth-child(1) { animation-delay: 1.8s; }
.features-list li:nth-child(2) { animation-delay: 2s; }
.features-list li:nth-child(3) { animation-delay: 2.2s; }
.features-list li:nth-child(4) { animation-delay: 2.4s; }

.features-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.employer-card:hover .features-list li::before {
    transform: translateX(8px) scale(1.1);
}

.cta-section-host {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--amber-primary));
    border-radius: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 2.6s both;
}

.cta-section-host::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-section-host > * {
    position: relative;
    z-index: 2;
}

.cta-title-host {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-description-host {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-host {
    background: white;
    color: var(--sunset-orange);
    border: none;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.cta-button-host::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--sunset-orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button-host:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button-host:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-host span {
    position: relative;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--amber-primary));
    border-radius: 50%;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 70%;
    right: 12%;
    animation-delay: 3s;
    width: 18px;
    height: 18px;
}

.floating-element:nth-child(3) {
    bottom: 25%;
    left: 15%;
    animation-delay: 6s;
    width: 30px;
    height: 30px;
}


@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(180deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



/* Blog Section */
.blog-section {
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 270px;
    background: linear-gradient(135deg, var(--mediterranean-blue), var(--amber-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}
.blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-content {
    padding: 20px;
}

.blog-date {
    color: var(--amber-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* About Us Section */
.about-section {
    background: linear-gradient(135deg, var(--cream) 0%, #fff 50%, var(--cream) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}
.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--amber-primary), var(--terracotta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.features-list {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 191, 0, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 191, 0, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--amber-primary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
}
.open-positions-btn{
    margin-right: 10px!important;
}

.about-visual {
    position: relative;
    height: 500px;
    width: 600px;
    border-radius: 25px;
    overflow: hidden;
    /*background: linear-gradient(135deg, var(--mediterranean-blue), var(--amber-primary));*/
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 191, 0, 0.3);
}

/* Testimonial Slider */
/* Testimonial Slider */
.testimonial-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Background images for each slide */
.slide-1 {
    background-image: url("/assets/images/monika.jpeg");
}

.slide-2 {
    background-image: url("/assets/images/andrei.jpeg");
}

.slide-3 {
    background-image: url("/assets/images/margarita.jpeg");
}

.slide-4 {
    background-image: url("/assets/images/anastasia.jpg");
    background-position: center 2px;
}

.slide-5 {
    background-image: url("/assets/images/augusta.jpg");
    /*put image 20px down*/
    background-position: center 2px;
}

/* Dark overlay for better text readability */
.testimonial-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay with 50% opacity */
    pointer-events: none;
    z-index: 1;
}

/* Ensure content appears above the overlay */
.testimonial-slide > * {
    position: relative;
    z-index: 2;
}

/* Avatar styling */
.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: avatar-float 3s ease-in-out infinite;
    z-index: 2;
}

.testimonial-avatar::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ring-pulse 2s ease-in-out infinite;
}

@keyframes avatar-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes ring-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* Quote styling */
.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    max-width: 450px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Stronger text shadow for better visibility */
    background: rgba(255, 255, 255, 0.1); /* Subtle background for better readability */
    /*padding: 10px;*/
    border-radius: 10px;
    backdrop-filter: blur(1px);
}

/* Author info */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.testimonial-position {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.testimonial-location {
    font-size: 1rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.location-icon {
    font-size: 1.1rem;
}

/* Star rating */
.testimonial-rating {
    margin-top: 20px;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; transform: scale(1.05); }
}

/* Navigation dots */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.dot.active::after {
    opacity: 1;
    animation: dot-ring 2s ease-in-out infinite;
}

@keyframes dot-ring {
    0% { transform: scale(0.8); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 0.4; }
    100% { transform: scale(0.8); opacity: 0.8; }
}

/* Navigation arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.nav-prev {
    left: 15px;
}

.nav-next {
    right: 15px;
}

/* Slide entrance animations */
.testimonial-slide {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

/* Progress bar */
.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    width: 0;
    transition: width 0.3s ease;
    z-index: 10;
}

/* Floating elements */
.floating-element {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
    animation: float-around 20s linear infinite;
}

.element-1 {
    top: 10%;
    left: 10%;
    font-size: 2rem;
    animation-delay: 0s;
}

.element-2 {
    top: 20%;
    right: 15%;
    font-size: 1.5rem;
    animation-delay: 5s;
}

.element-3 {
    bottom: 30%;
    left: 5%;
    font-size: 1.8rem;
    animation-delay: 10s;
}

.element-4 {
    bottom: 15%;
    right: 10%;
    font-size: 1.3rem;
    animation-delay: 15s;
}

@keyframes float-around {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -15px) rotate(90deg); }
    50% { transform: translate(0, -25px) rotate(180deg); }
    75% { transform: translate(-20px, -15px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Auto-play indicator */
.autoplay-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.auto-icon {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--cream) 100%);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--amber-primary);
}

.contact-form h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 2.2em;
    font-weight: 700;
}

.contact-form p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 191, 0, 0.1);
}

/*.btn-primary {*/
/*    background: linear-gradient(135deg, var(--amber-primary), var(--gold-conact));*/
/*    color: white;*/
/*    border: none;*/
/*    padding: 18px 40px;*/
/*    border-radius: 15px;*/
/*    font-size: 16px;*/
/*    font-weight: 700;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
/*}*/

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

/* Improved Contact Info Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.contact-info-header h3 {
    color: #333;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-header p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.5;
}

.info-items-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--amber-primary), var(--gold-conact));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.info-content {
    flex: 1;
}

.info-content h4 {
    color: #333;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.text-muted {
    color: #888 !important;
    font-size: 0.9em;
}

.contact-cta {
    margin-top: 30px;
}

.cta-box {
    background: linear-gradient(135deg, var(--amber-primary), var(--gold-conact));
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-box h4 {
    margin-bottom: 8px;
    font-size: 1.3em;
    font-weight: 700;
}

.cta-box p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.4;
}
.cta-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.social-links {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    gap: 15px;*/
/*}*/

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--amber-primary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a3a5c !important;  /* ← DODANO !important */
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 191, 0, 0.3);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.file-upload-group {
    position: relative;
}

.file-upload-label {
    display: block;
    width: 100%;
    padding: 20px;
    border: 2px dashed #e0e0e0;
    border-radius: 15px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-upload-label:hover {
    border-color: var(--amber-primary);
    background: #fff;
    transform: translateY(-2px);
}

.file-upload-label.file-selected {
    border-color: var(--amber-primary);
    background: rgba(255, 193, 7, 0.05);
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.upload-icon {
    color: #666;
    transition: color 0.3s ease;
}

.file-upload-label:hover .upload-icon {
    color: var(--amber-primary);
}

.upload-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.upload-title {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.upload-subtitle {
    color: #888;
    font-size: 14px;
}

.file-name {
    margin-top: 10px;
    padding: 8px 15px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-name.file-selected {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    font-weight: 500;
}
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    max-width: 420px;
}

.toast {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transform: translateX(450px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    min-height: 68px;
}

.toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
    animation: toastBounce 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes toastBounce {
    0% {
        transform: translateX(450px) scale(0.8);
        opacity: 0;
    }
    60% {
        transform: translateX(-10px) scale(1.02);
        opacity: 1;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}
#099605,
.toast.success {
    background: #099605;
    border-left: 4px solid #22c55e;
    box-shadow:
        0 20px 40px rgba(34, 197, 94, 0.12),
        0 8px 16px rgba(34, 197, 94, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.toast.error {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border-left: 4px solid #ef4444;
    box-shadow:
        0 20px 40px rgba(239, 68, 68, 0.12),
        0 8px 16px rgba(239, 68, 68, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.toast.warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-left: 4px solid #f59e0b;
    box-shadow:
        0 20px 40px rgba(245, 158, 11, 0.12),
        0 8px 16px rgba(245, 158, 11, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.toast-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.toast-icon.success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.toast-icon.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.toast-icon.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.toast-content {
    flex: 1;
    margin-top: 2px;
}

.toast-title {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #FFFFFF!important;
}

.toast.success . { color: #166534; }
.toast.error .toast-title { color: #991b1b; }
.toast.warning .toast-title { color: #92400e; }

.toast-message {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 6px;
    color: #FFFFFF!important;
}

.toast.success { color: #15803d; }
.toast.error .toast-message { color: #b91c1c; }
.toast.warning .toast-message { color: #a16207; }

.toast-close {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 14px;
    font-weight: 600;
    margin-top: 2px;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.toast-close:active {
    transform: scale(0.95);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 0 0 16px 16px;
    animation: toast-progress 4s linear forwards;
    opacity: 0.7;
}

.toast.success .toast-progress {
    background: #099605;
}

.toast.error .toast-progress {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.toast.warning .toast-progress {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

@keyframes toast-progress {
    from {
        width: 100%;
        opacity: 0.7;
    }
    to {
        width: 0;
        opacity: 0.3;
    }
}

/* Hover effect za ceo toast */
.toast:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 12px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.toast.success:hover {
    box-shadow:
        0 25px 50px rgba(34, 197, 94, 0.15),
        0 12px 20px rgba(34, 197, 94, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.toast.error:hover {
    box-shadow:
        0 25px 50px rgba(239, 68, 68, 0.15),
        0 12px 20px rgba(239, 68, 68, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.toast.warning:hover {
    box-shadow:
        0 25px 50px rgba(245, 158, 11, 0.15),
        0 12px 20px rgba(245, 158, 11, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}


/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .toast {
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.3),
            0 8px 16px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .toast.success {
        background: #099605;
    }

    .toast.error {
        background: linear-gradient(135deg, #7f1d1d 0%, #450a0a 100%);
    }

    .toast.warning {
        background: linear-gradient(135deg, #78350f 0%, #451a03 100%);
    }

    .toast.success .toast-title { color: #6ee7b7; }
    .toast.error .toast-title { color: #fca5a5; }
    .toast.warning .toast-title { color: #fcd34d; }

    .toast.success .toast-message { color: #a7f3d0; }
    .toast.error .toast-message { color: #fecaca; }
    .toast.warning .toast-message { color: #fde68a; }

    .toast-close {
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.6);
    }

    .toast-close:hover {
        background: rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.9);
    }
}
/* Footer */
.footer {
    background: linear-gradient(135deg, #1a3a5c 0%, var(--mediterranean-blue) 100%);
    color: white;
    padding: 80px 0 30px;
    /*border-radius: 20px 20px 0 0;*/
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber-primary), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--amber-primary);
    border-bottom: 2px solid var(--amber-primary);
    padding-bottom: 10px;
    position: relative;
}

.footer-column p {
    color: #a8c5e4;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-column a {
    color: #a8c5e4;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    padding-left: 15px;
}

.footer-column a::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--amber-primary);
    font-size: 10px;
    transition: all 0.3s ease;
    opacity: 0;
}

.footer-column a:hover {
    color: var(--amber-primary);
    transform: translateX(10px);
}

.footer-column a:hover::before {
    opacity: 1;
}

/* Social Links - Fixed */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.social-links > .footer-link {
    padding-top: 8px;
}
.social-links > .footer-link:nth-child(2){
    padding-left: 16px;
}
.social-links > .footer-link:nth-child(3){
    padding-left: 17px;
}
.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--amber-primary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a3a5c;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 191, 0, 0.3);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 191, 0, 0.5);
    background: linear-gradient(135deg, var(--gold), var(--amber-primary));
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

/* Individual social network colors on hover */
.social-link.facebook:hover {
    background: linear-gradient(135deg, #3b5998, #8b9dc3);
    color: white !important;  /* ← DODANO */
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #e4405f, #833ab4, #fccc63);
    color: white !important;  /* ← DODANO */
}

.social-link.linkedin:hover {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    color: white !important;  /* ← DODANO */
}

.social-link.email:hover {
    background: linear-gradient(135deg, #ea4335, #fbbc04);
    color: white !important;  /* ← DODANO */
}
/*.footer-links{*/
/*    margin-top: 20px!important;*/
/*}*/

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 191, 0, 0.3);
    color: #a8c5e4;
    position: relative;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom a {
    color: var(--amber-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background: var(--amber-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-bottom a:hover::after {
    width: 100%;
}

.footer-bottom a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 191, 0, 0.5);
}

/* Fade-in animation */
.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Keyframe Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
/* About Hero Section */
.about-hero {
    /*background: linear-gradient(180deg, var(--mediterranean-blue) 70%, var(--mediterranean-blue) 70%, var(--gold) 85%, var(--amber-primary) 93%);*/
    background-image: url("/assets/images/about-us-hero.jpg");
    background-position: center;
    background-size: cover;
    padding: 150px 0 50px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.about-hero container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about-hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 50px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--amber-light);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Company Story Section */
.company-story {
    padding: 120px 0;
    background: var(--cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--amber-primary), var(--terracotta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-timeline {
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--amber-primary), var(--gold));
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--amber-primary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 30px;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-visual {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
}

.story-text {
    margin-top: 15px;
    padding: 20px;
    background: linear-gradient(135deg, var(--mediterranean-blue), var(--sunset-orange));
    border-radius: 20px;
    color: #fff;
}

.story-text h3 {
    font-size: 1.8rem;
    font-style: italic;
    margin: 0;
}
/* Mission Section */
.mission-section {
    padding: 120px 0;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
.mission-grid h3{
    padding-top: 30px;
    margin-bottom: 50px;
    font-size: 20px;
}
.mission-card, .vision-card, .values-card {
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-size: cover;
    background-position: center;
    color: white;
}
.values-card{
    background-image: url("/assets/images/our-values.jpg");
    background-position: center -1px;
}
.mission-card{
    background-image: url("/assets/images/our-mission.jpg");
}
.vision-card{
    background-image: url("/assets/images/our-vision.jpg");
}
.mission-card:hover, .vision-card:hover, .values-card:hover {
    transform: translateY(-10px);
    border-color: var(--amber-primary);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.mission-icon, .vision-icon, .values-icon {
    font-size: 4rem;
    margin-bottom: 30px;
}

.values-list {
    text-align: left;
    margin-top: 20px;
}

.values-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--amber-primary);
    font-weight: bold;
}

/* Offerings Section */
.offerings-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--cream) 0%, #fff 50%, var(--cream) 100%);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.offering-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.offering-visual {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Background images for each offering card */
.offering-card:nth-child(1) .offering-visual {
    background-image: url("/assets/images/hotel.jpg");
}

.offering-card:nth-child(2) .offering-visual {
    background-image: url("/assets/images/spa_center.jpg");
}

.offering-card:nth-child(3) .offering-visual {
    background-image: url("/assets/images/sea_plane_view1.jpg");
    background-position: top 50%;
}

/* Dark overlay for better icon visibility */
.offering-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.offering-icon {
    font-size: 4rem;
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.offering-content {
    padding: 30px;
}

.offering-features {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 191, 0, 0.1);
    color: var(--amber-dark);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}


/* Team Section */
.team-section {
    padding: 120px 0;
    background: var(--mediterranean-blue);
    color: white;
}

.team-section .section-header h2 {
    color: white;
}

.team-section .section-header p {
    color: rgba(255,255,255,0.8);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-10px);
}

.member-photo {
    margin-bottom: 25px;
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--amber-primary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto;
}

.member-role {
    color: var(--amber-light);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-skills {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.skill-tag {
    background: rgba(255, 191, 0, 0.2);
    color: var(--amber-light);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

/* Partners Section */
.partners-section {
    padding: 120px 0;
    background: var(--cream);
}

.partners-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.partner-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.partner-category {
    /*background: white;*/
    padding: 40px 30px;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    color: #ffffff;
}
.partner-spa{
    background-image: url("/assets/images/our-partners-spa.jpg");
}
.partner-hotel{
    background-image: url("/assets/images/our-partners-hotel.jpg");
}
.partner-entertainment{
    background-image: url("/assets/images/our-partners-entertainment.jpg");
}
.partner-category:hover {
    transform: translateY(-5px);
}
.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.partner-category h4{
    font-size: 20px;
    margin-bottom: 20px;
}
.partner-category p{
    margin-bottom: 30px;
}
.partner-count {
    margin-top: 15px;
    color: var(--amber-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.partner-testimonial {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.testimonial-content blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin: 20px 0;
    color: #666;
    line-height: 1.6;
}

.testimonial-author {
    /*margin-top: 25px;*/
    padding-top: 20px;
    border-top: 2px solid var(--amber-primary);
}

.testimonial-author strong {
    color: var(--amber-primary);
}

.testimonial-author span {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
    margin-left: 10px;
}

/* Success Section */
.success-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--sunset-orange), var(--amber-primary));
    color: white;
}

.success-section .section-header h2 {
    color: white;
}

.success-section .section-header p {
    color: rgba(255,255,255,0.8);
}

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

.success-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
}

.success-quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

.success-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info span {
    display: block;
    opacity: 0.8;
    font-size: 0.9rem;
}
.scroll-indicator {
    color: white;
    animation: bounce 2s infinite;
    z-index: 2;
    cursor: pointer;
}
.hero-about-content{
    margin: 50px auto;
}
.scroll-indicator{
    margin-top: 20px;
}
.read-more-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff9a56 0%, #ffc956 50%, #4ecdc4 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 154, 86, 0.3);
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 154, 86, 0.4);
}

.btn-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover .btn-icon {
    transform: translateX(5px);
}
/* Why Choose Us Section */
.why-choose-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 50%, #f8f9fa 100%);
}

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

.choose-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.choose-card:hover {
    transform: translateY(-10px);
    border-color: var(--amber-primary, #ff9a56);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.choose-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.choose-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--amber-primary, #ff9a56);
}

.choose-card p {
    line-height: 1.6;
    color: #666;
}
/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--amber-primary, #ff9a56) 0%, var(--gold, #ffbf00) 100%);
    /*color: white;*/
}

.benefits-section .section-header h2 {
    color: white;
}

.benefits-section .section-header p {
    color: rgba(255,255,255,0.9);
}

.benefits-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.benefits-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
}

.highlight-icon {
    font-size: 3.5rem;
    width: 80px;
    text-align: center;
}

.highlight-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.highlight-content p {
    opacity: 0.9;
    line-height: 1.6;
}

.benefits-list {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
}

.benefits-list h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-align: center;
}

.benefit-items {
    list-style: none;
    padding: 0;
}

.benefit-items li {
    margin-bottom: 15px;
    padding: 10px 0;
    font-size: 1rem;
    opacity: 0.9;
}
.section-header > #benefits-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
    /*background: linear-gradient(black , whitesmoke);*/
    background: linear-gradient(whitesmoke , whitesmoke);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#students-number{
    color:red;
}
/* Call to Action Section */
.cta-section-about {
    padding: 100px 0;
    background: linear-gradient(5deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
    color: white;
}

.cta-content-about h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content-about p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-about {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff9a56 0%, #ffc956 50%, #4ecdc4 100%);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(255, 154, 86, 0.3);
    overflow: hidden;
    position: relative;
}

.cta-button-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button-about:hover::before {
    left: 100%;
}

.cta-button-about:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 154, 86, 0.4);
}

.cta-button-about .btn-icon-about {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.cta-button-about:hover .btn-icon-about {
    transform: translateX(5px);
}
body.gallery-page {
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 25%, #87CEEB 75%, #FFE4B5 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: white;
    position: relative;
}

body.gallery-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 206, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.gallery-container {
    margin-bottom: -125px;
    min-height: 100vh;
    padding: 120px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.gallery-intro h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: bold;
}

.gallery-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #F0F8FF;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Gallery 3D Container - NOVI */
.gallery-3d-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
}

.carousel-3d {
    position: relative;
    width: 100%;
    height: 600px;
    perspective: 1200px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: pan-y; /* Za touch support */
}

.carousel-inner {
    position: relative;
    width: 400px;
    height: 400px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-inner.rotating {
    pointer-events: none;
}

.category-group {
    position: absolute;
    width: 350px;
    /*height: 450px;*/
    left: 50%;
    top: 50%;
    margin-left: -175px;
    margin-top: -225px;
    transform-origin: center center;
    transform-style: preserve-3d;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-select: none;
    opacity: 0.7; /* Default opacity */
}

/* 3D pozicije kategorija - ISPRAVKA */
.category-group[data-category="0"] {
    transform: rotateY(0deg) translateZ(400px);
}
.category-group[data-category="1"] {
    transform: rotateY(72deg) translateZ(400px);
}
.category-group[data-category="2"] {
    transform: rotateY(144deg) translateZ(400px);
}
.category-group[data-category="3"] {
    transform: rotateY(216deg) translateZ(400px);
}
.category-group[data-category="4"] {
    transform: rotateY(288deg) translateZ(400px);
}

/* Active category styling - NOVO */
.category-group.active {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
}

.category-group:hover {
    transform: rotateY(var(--rotation, 0deg)) translateZ(430px) scale(1.05); /* ne diraj rotation */
}

.category-group:hover .image-card {
    transform: translateZ(10px);
}

.image-card {
    position: relative; /* PROMENA: umesto absolute */
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #4682B4 0%, #87CEEB 100%);
    border: 3px solid rgba(255, 215, 0, 0.3);
    z-index: 1;
}

.image-card img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-card:hover img {
    transform: scale(1.1);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(30, 60, 114, 0.95));
    color: white;
}
/* Card overlay - NOVO */
.card-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 215, 0, 0.9);
    color: #1e3c72;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Navigation buttons - POBOLJŠANO */
.navigation {
    position: absolute;
    top: 34%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(10px);
    outline: none;
}

.navigation:hover {
    background: rgba(255, 215, 0, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.navigation:focus {
    outline: 2px solid #FFD700;
    outline-offset: 3px;
}

.nav-prev {
    left: 50px;
}

.nav-next {
    right: 50px;
}

/* SVG styling for navigation - NOVO */
.navigation svg {
    color: #FFD700;
    pointer-events: none;
}

.category-indicator {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.indicator-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.5);
    outline: none;
}

.indicator-dot:hover {
    background: rgba(255, 215, 0, 0.6);
    transform: scale(1.2);
}

.indicator-dot.active {
    background: #FFD700;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    border-color: #FFD700;
}

/* Keyboard hint - NOVO */
.keyboard-hint {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 215, 0, 0.7);
    font-size: 12px;
    text-align: center;
    z-index: 101;
    white-space: nowrap;
}

/* LIGHTBOX STILOVI - POBOLJŠANO */
.lightbox {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 60, 114, 0.5);
    /*background: transparent;*/
    z-index: 0;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 80vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    border: 3px solid rgba(255, 215, 0, 0.5);
    transition: opacity 0.15s ease;
}

.lightbox-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 80vw;
    margin: 0 auto;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background: rgba(0, 0, 0, 0.45);
    /*backdrop-filter: blur(10px);*/
    /*box-shadow: 0 10px 30px rgba(0,0,0,0.3);*/
    min-height: 80px; /* Minimalna visina */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrira sadržaj vertikalno */
}

.lightbox-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #FFD700;
    word-wrap: break-word;
    flex-shrink: 0; /* Ne smanjuje se */
}

.lightbox-description {
    font-size: 1rem;
    color: #F0F8FF;
    line-height: 1.5;
    word-wrap: break-word;
    max-height: 120px; /* Povećano sa 80px */
    overflow-y: auto;
    text-align: justify;
    flex-grow: 1; /* Zauzima dostupan prostor */
    display: flex;
    align-items: center; /* Centrira kratke opise */
}
/* Kada je opis kratak, centrira se */
.lightbox-description:not([data-long]) {
    justify-content: center;
    align-items: center;
}
/* Custom scrollbar za opis ako je dugačak */
.lightbox-description::-webkit-scrollbar {
    width: 4px;
}

.lightbox-description::-webkit-scrollbar-track {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 2px;
}

.lightbox-description::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.5);
    border-radius: 2px;
}

.lightbox-description::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.7);
}

/* Image Counter - NOVO */
.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    outline: none;
}

.lightbox-nav:hover {
    background: rgba(255, 215, 0, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav:focus {
    outline: 2px solid #FFD700;
    outline-offset: 3px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 215, 0, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    outline: none;
}

.lightbox-close:hover {
    background: rgba(255, 215, 0, 0.4);
    transform: scale(1.1);
}

.lightbox-close:focus {
    outline: 2px solid #FFD700;
    outline-offset: 3px;
}

/* Loading Spinner - NOVO */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 60, 114, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 215, 0, 0.3);
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
/* PRELOADER STYLES */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--mediterranean-blue) 0%, var(--mediterranean-blue) 60%, var(--gold) 80%, var(--amber-primary) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.preloader.fade-out {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    color: white;
}
.logo-animation {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
    animation: logoFloat 2s ease-in-out infinite alternate;
}
.logo-animation img{
    width: 90px;
    height: 90px;
    animation: logoSpin 2s linear infinite;
}
/*.logo-animation::before {
    content: '🌅';
    font-size: 40px;
    animation: logoSpin var(--preloader-duration) linear forwards;
}

.logo-animation::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s linear infinite;
}*/

@keyframes logoFloat {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-10px) scale(1.05); }
}

@keyframes logoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: dotBounce 1.5s ease-in-out infinite;
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

/*.progress-fill {*/
/*    width: 0;*/
/*    height: 100%;*/
/*    background: linear-gradient(90deg, white, rgba(255, 255, 255, 0.8));*/
/*    border-radius: 2px;*/
/*    animation: progressFill 3s ease-out forwards;*/
/*    position: relative;*/
/*}*/

/*.progress-fill::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: -100px;*/
/*    width: 10px;*/
/*    height: 100%;*/
/*    background: linear-gradient(90deg, transparent, white);*/
/*    animation: progressShine 1s ease-in-out infinite;*/
/*}*/

/*@keyframes progressFill {*/
/*    0% { width: 0; }*/
/*    100% { width: 100%; }*/
/*}*/

@keyframes progressShine {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* SCROLL TO TOP STYLES */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--amber-primary), var(--gold));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 191, 0, 0.4);
    transform: translateY(100px) scale(0);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.scroll-to-top.visible {
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 191, 0, 0.6);
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.scroll-to-top:hover::before {
    width: 100%;
    height: 100%;
}

/* Font Awesome strelica nagore */
.scroll-icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
    color: var(--dark-blue)!important;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Progress circle - Sunce → Mesec efekat */
.scroll-progress {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 5px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: conic-gradient(
        from 0deg,
        #1e3a8a var(--scroll-progress, 0%),
        rgba(255, 255, 255, 0.1) 0%
    );
}

/* Sunce/Mesec u centru */
.scroll-progress::before {
    content: '';
    position: absolute;
    inset: 8px;
    background: radial-gradient(
        circle at center,
        #fbbf24 0%,
        #f59e0b 30%,
        #d97706 60%,
        #92400e 85%,
        #374151 100%
    );
    border-radius: 50%;
    transition: all 0.5s ease;
    box-shadow:
        0 0 20px rgba(251, 191, 36, 0.6),
        inset 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Mesec efekat kada je skoro na vrhu */
.scroll-progress[data-moon="true"]::before {
    background: radial-gradient(
        circle at 30% 30%,
        #f3f4f6 0%,
        #e5e7eb 40%,
        #9ca3af 70%,
        #4b5563 100%
    );
    box-shadow:
        0 0 15px rgba(243, 244, 246, 0.8),
        inset 5px 5px 10px rgba(0, 0, 0, 0.3);
}

/* Zvezde oko meseca */
.scroll-progress[data-moon="true"]::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 12px;
    animation: twinkle 2s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes twinkle {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

/* Dodatni sunčevi zraci - jarkiji */
.scroll-progress:not([data-moon="true"])::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: conic-gradient(
        transparent 0deg,
        rgba(253, 224, 71, 0.4) 10deg,
        transparent 20deg,
        rgba(250, 204, 21, 0.4) 30deg,
        transparent 40deg,
        rgba(253, 224, 71, 0.4) 50deg,
        transparent 60deg,
        rgba(250, 204, 21, 0.4) 70deg,
        transparent 80deg,
        rgba(253, 224, 71, 0.4) 90deg,
        transparent 100deg
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: sunRotate 4s linear infinite;
    z-index: -1;
}

@keyframes sunRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Animacije */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch/Mobile optimizacije - NOVO */
* {
    -webkit-tap-highlight-color: transparent;
}

button, .navigation, .indicator-dot {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* Login specific styles */
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--mediterranean-blue) 0%, var(--mediterranean-blue) 60%, var(--gold) 80%, var(--amber-primary) 100%);
    display: flex;
    flex-direction: column;
}

.login-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 20px 50px;
}

.login-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 60px 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 450px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.login-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--amber-primary), var(--gold), var(--amber-primary));
}

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

.login-title {
    font-size: 2.5rem;
    color: var(--mediterranean-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.login-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--mediterranean-blue);
    font-weight: 600;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--amber-primary);
    box-shadow: 0 0 0 3px rgba(255, 154, 86, 0.1);
}

.form-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--amber-primary);
    font-size: 1.2rem;
    margin-top: 14px;
}

.login-btn {
    background: linear-gradient(135deg, var(--amber-primary), var(--gold));
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 154, 86, 0.4);
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e1e5e9;
}

.login-link {
    color: var(--amber-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: var(--gold);
}

.forgot-password {
    text-align: right;
    margin-top: 10px;
}

.forgot-password a {
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: var(--amber-primary);
}

/* Animation */
.login-form-wrapper {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/*New hero*/
.hero-video-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: rgba(0,0,0,0.45);
    text-align: center;
    padding: 0 20px;
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-overlay h1{
    max-width: 750px;
}
.hero-overlay p{
    max-width: 900px;
}
.hero-overlay .subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
#allBlogs{
    padding-top: 150px;
}
#allBlogs .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    width: 70%;
}
#allBlogs .container{
    display: flex;
    justify-content: space-between;
    align-items: start;
}
#allBlogs nav{
    width: 50%;
    margin: 50px auto 0 auto;
    display: flex;
    justify-content: center;
}
#allBlogs nav ul{
    display: flex;
    gap: 20px;
}
#allBlogs nav ul li{
    background: white;
    padding: 5px 15px;
    border-radius: 5px;
    color: black;
}
#allBlogs nav ul li .page-link{
    text-decoration: none;
    font-size: 20px;
    color: black!important;
}
#allBlogs nav ul li.active{
    background: var(--amber-primary, #ff9a56);
}

.blog-categories-list {
    background: white;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    padding: 30px 25px;
    margin-bottom: 40px;
    max-width: 320px;
    width: 300px;
    font-family: 'Georgia', serif;
}

.blog-categories-list h4 {
    font-size: 1.3rem;
    color: var(--amber-primary, #ff9a56);
    margin-bottom: 18px;
    font-weight: 700;
    text-align: left;
}

.blog-categories-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-categories-list a{
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}
.blog-categories-list .active-blog-filter{
    color: var(--amber-primary, #ff9a56);
}
.blog-categories-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f3f3;
    font-size: 1rem;
    transition: background 0.2s;
}

.blog-categories-list li:last-child {
    border-bottom: none;
}

.category-name {
    color: #333;
    font-weight: 500;
    cursor: pointer;
}

.category-count {
    background: var(--amber-primary, #ff9a56);
    color: white;
    border-radius: 12px;
    padding: 2px 12px;
    font-size: 0.95rem;
    font-weight: 600;
    min-width: 28px;
    text-align: center;
}

.blog-categories-list li:hover {
    background: rgba(255, 191, 0, 0.07);
}
.mobile-nav{
    display: none;
}
.hamburger{
    display: none;
}
#students .container{
    text-align: center;
}
#students .section-header{
    margin-bottom: 30px;
}
.for-students-image,.success-partners-image{
    width: 50%;
    border-radius: 10px;
    animation: pulse 3s infinite;
    margin-bottom: 30px;
}
#team .container{
    text-align: center;
}
#team .section-header{
    margin-bottom: 30px;
}
#employers .card-title{
    color: white;
}
.what-you-can-expect{
    background-image: url("/assets/images/what-you-can-expect.jpg");
}
.why-choose-our-network{
    background-image: url("/assets/images/why-choose-our-network.jpg");
}
/* Mobile responsive */
.nav-container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}


/*ANIMATIONS/*
/* Animations */
@keyframes floatAbout {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
@media (max-width: 2560px){
    .scroll-indicator{
        bottom: 200px;
    }
    .about-hero-subtitle-second{
        font-size: 1.5rem;
    }
    .success-partners-text-description, .what-we-offer-description {
        font-size: 1.2rem;
    }
    .what-we-offer-title{
        font-size: 1.5rem;
    }
    .lightbox-description{
        font-size: 1.1rem;
    }
}
@media(max-width: 1100px){
    .nav-menu{
        gap: 30px;
    }
    #allBlogs .blog-grid {
        grid-template-columns: 1fr;
        width: 55%;
    }
}
@media(max-width: 1050px){
    .what-you-can-expect{
        background-position: center 2px;
    }
    .why-choose-our-network{
        background-position: center 2px;
    }
}
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .for-students-image,.success-partners-image{
        width: 70%;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .employer-benefits {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .partners-content{
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .card-icon{
        background-position: center -20px;
    }
    .scroll-indicator{
        bottom: 300px;
    }
}
@media (max-width: 991px) {
    .mission-grid, .offerings-grid, .team-grid, .partner-categories, .success-stories { grid-template-columns: 1fr; }
    .container, .main-content, .hero-section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
        position: relative; /* Dodano */
    }
    .hamburger span {
        height: 4px;
        width: 100%;
        background: var(--amber-primary, #ff9a56);
        margin: 5px 0;
        border-radius: 2px;
        transition: 0.3s;
    }
    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Ovo može biti problem */
        width: 280px; /* Fiksna širina umesto 70vw */
        max-width: calc(100vw - 50px); /* Osigurava da ne prelazi viewport */
        height: 100vh;
        background: linear-gradient(135deg, var(--mediterranean-blue), var(--amber-primary));
        box-shadow: -2px 0 20px rgba(0,0,0,0.15);
        transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
        z-index: 1000;
        padding: 90px 30px 30px 30px;
        display: flex;
        flex-direction: column;
        overflow-y: auto; /* Za slučaj da sadržaj prelazi visinu */
        overflow-x: hidden; /* Sprečava horizontalni skrol unutar menija */
    }
    .mobile-nav.active {
        right: 0;
    }
    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%; /* Dodano */
    }
    .mobile-nav a {
        color: #fff;
        font-size: 18px;
        text-decoration: none;
        transition: color 0.2s;
        word-wrap: break-word; /* Dodano za dugačke linkove */
    }
    .mobile-nav a:hover {
        color: var(--gold, #ffbf00);
    }

    .mobile-nav .dropdown-toggle{
        display: flex;
        align-items: center;
        width: 100%; /* Dodano */
    }

    .mobile-nav .dropdown-menu {
        display: none;
        background: white;
        color: black;
        border-radius: 8px;
        margin-top: 8px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        position: static;
        transition: all 0.3s;
        width: 100%; /* Dodano */
        max-width: 100%; /* Dodano */
    }
    .mobile-nav .dropdown-menu a{
        transition: all 0.3s;
    }

    .mobile-nav .dropdown.open .dropdown-menu {
        display: block;
    }

    .mobile-nav .dropdown .dropdown-arrow{
        transition: all 0.3s;
        font-size: 13px;
        margin-left: 10px;
    }
    .mobile-nav .dropdown.open .dropdown-arrow {
        transform: rotate(90deg);
    }

    .mobile-nav .dropdown-menu a {
        color: black !important;
        padding: 10px 18px;
        display: block;
        text-decoration: none;
        word-wrap: break-word; /* Dodano */
    }

    .mobile-nav a:hover, .mobile-nav .dropdown-menu a:hover {
        color: var(--amber-primary) !important;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }
    .about-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-grid > .slide-right{
        margin: 0px auto;
    }
    .unique{
        margin-top: 6.5rem;
    }
    .blog-grid{
        grid-template-columns: 1fr;
    }
    .contact-grid{
        grid-template-columns: 1fr; gap: 50px;
    }
    .values-card{
        background-position: center -100px;
    }
    .vision-card{
        background-position: center 70%;
    }
}
@media(max-width: 910px) {
    .footer-content {
        gap: 8px;
    }
}
@media(max-width: 820px){
    .students-content .btn-primary{
        padding: 15px 22px;
        margin-right: 0!important;
    }
    .single-blog-wrapper .single-blog-container{
        width: 90%;
    }
}
@media (max-width: 768px) {
    .for-students-image,.success-partners-image{
        width: 90%;
    }
    #allBlogs .container{
        flex-direction: column-reverse;
        align-items: center;
    }
    #allBlogs .blog-grid{
        width: 100%;
    }
    .why-choose-section .choose-grid {
        grid-template-columns: 1fr;
    }
    .social-links{
        width: 100%;
        justify-content: center;
    }
    .social-links a{
        padding-left: 0!important;
        padding-right: 0!important;
    }
    .gallery-intro h1 {
        font-size: 2.5rem;
    }

    .carousel-3d {
        height: 500px;
    }

    .category-group {
        width: 280px;
        height: 360px;
        margin-left: -140px;
        margin-top: -180px;
    }

    .navigation {
        width: 30px;
        height: 30px;
    }

    .nav-prev {
        left: 20px;
    }

    .nav-next {
        right: 20px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-close {
        width: 45px;
        height: 45px;
    }

    .lightbox-counter {
        top: 15px;
        left: 15px;
        padding: 6px 12px;
        font-size: 12px;
    }

    .lightbox-text {
        padding: 15px;
        max-width: 90vw;
        min-height: 70px;
    }

    .lightbox-title {
        font-size: 1.3rem;
    }

    .lightbox-description {
        font-size: 0.9rem;
        max-height: 1000px;
    }

    .keyboard-hint {
        font-size: 10px;
        bottom: 50px;
    }
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .card-image-header {
        height: 150px;
    }

    /*.card-content {*/
    /*    padding: 30px 40px 40px;*/
    /*}*/

    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 2.5rem;
    }

    .container-schools {
        padding: 60px 20px;
    }

    .partnership-card {
        padding: 40px 30px;
    }

    .cta-section {
        padding: 40px 30px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .stats-highlight {
        padding: 15px 30px;
        font-size: 1rem;
    }
    .section-header h2 {
        font-size: 2.8rem;
    }

    .employer-benefits {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .employer-card {
        padding: 40px 35px;
    }

    .cta-section-host {
        padding: 50px 30px;
    }

    .cta-title-host {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }

    .stats-highlight {
        padding: 15px 30px;
        font-size: 1rem;
    }
    .about-visual {
        width: 100%;
        height: 450px;
        margin: 0 20px;
    }

    .testimonial-slide {
        padding: 30px 20px;
    }

    .testimonial-quote {
        font-size: 1.1rem;
        padding: 15px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .nav-prev { left: 10px; }
    .nav-next { right: 10px; }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form {
        padding: 30px;
    }

    .contact-info-header h3 {
        font-size: 1.8em;
    }

    .info-item {
        padding: 20px;
        gap: 15px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
    }
    .toast-container {
        right: 16px;
        left: 16px;
        bottom: 16px;
        max-width: none;
    }

    .toast {
        padding: 18px 20px;
        border-radius: 14px;
        transform: translateY(100px);
        min-height: 60px;
    }

    .toast.show {
        transform: translateY(0);
        animation: toastBounceMobile 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @keyframes toastBounceMobile {
        0% {
            transform: translateY(100px) scale(0.9);
            opacity: 0;
        }
        60% {
            transform: translateY(-5px) scale(1.01);
            opacity: 1;
        }
        100% {
            transform: translateY(0) scale(1);
            opacity: 1;
        }
    }
    .toast-icon {
        width: 26px;
        height: 26px;
    }

    .toast-title {
        font-size: 14px;
    }

    .toast-message {
        font-size: 12px;
    }

    .toast-close {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .toast:hover {
        transform: translateY(0) scale(1);
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer {
        padding: 50px 0 20px;
    }
    .hero h1 { font-size: 2.5rem; }
    .about-grid, .students-content { grid-template-columns: 1fr; gap: 50px; }
    .programs-grid, .university-grid, .employer-benefits { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .nav-menu { display: none; }
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .offering-visual {
        height: 120px;
    }

    .offering-icon {
        width: 60px;
        height: 60px;
        font-size: 3rem;
    }
    .about-hero-title { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 30px; }
    .story-grid, .partners-content { grid-template-columns: 1fr; gap: 50px; }
    .timeline-item { flex-direction: column; text-align: center; }
    .timeline-year { margin: 0 auto 20px; }
    .story-timeline::before { display: none; }
    .login-container {
        padding: 80px 15px 30px;
    }

    .login-form-wrapper {
        padding: 40px 30px;
    }

    .login-title {
        font-size: 2rem;
    }

    .form-input {
        padding: 16px 18px 16px 50px;
    }

    .form-icon {
        left: 18px;
        margin-top: 12px;
    }
    .scroll-indicator{
        bottom: 60px;
    }
    .testimonial-rating{
        margin-top: 7px;
    }
    .slider-dots {
        bottom: 15px;
    }
    .benefits-content{
        grid-template-columns: auto;
    }
    .gallery3d-card-description{
        font-size: 0.58rem;
    }
    .offering-visual {
        height: 400px;
    }
    .offerings-grid > .offering-card:nth-of-type(3) .offering-visual {
        height: 650px;
    }
}
@media(max-width: 630px){
    .values-card{
        background-position: center 10%;
    }
    .scroll-indicator{
        bottom: 30px;
    }
}
@media (max-width: 620px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }
    .card-icon{
        background-position: center;
    }
}
@media(max-width: 600px){
    .scroll-indicator{
        bottom: -15px;
    }
}
@media (max-width: 521px) {
    .hero-overlay h1 {
        padding-top: 115px;
    }
    .testimonial-rating{
        margin-top: 7px;
    }
    .autoplay-indicator{
        top: 10px;
        right: 10px;
    }
}
@media (max-width: 457px) {
    .testimonial-rating {
        padding-top: -4px;
        font-size: 1.1rem;
    }
    .about-visual{
        height: 500px;
    }
    .autoplay-indicator{
        top: 5px;
        right: 5px;
    }
}
@media (max-width: 480px) {
    .lightbox-text {
        bottom: -120px;
        border-radius: 10px;
        padding: 12px;
        max-width: 95vw;
        min-height: 60px;
    }
    .benefit-highlight{
        flex-direction: column;
    }
    .gallery-intro h1 {
        font-size: 2rem;
    }

    .carousel-3d {
        height: 400px;
    }

    .category-group {
        width: 250px;
        height: 320px;
        margin-left: -125px;
        margin-top: -160px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-description {
        font-size: 0.8rem;
    }
    .lightbox-title {
        font-size: 1.2rem;
    }

    .lightbox-description {
        font-size: 0.85rem;
        max-height: 80px;
    }
    .login-form-wrapper {
        padding: 30px 25px;
        margin: 0 10px;
    }

    .login-title {
        font-size: 1.8rem;
    }

    .login-subtitle {
        font-size: 1rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }
    .category-indicator{
        bottom: 50px;
    }
}
@media (max-width: 426px) {
    .hero-overlay h1 {
        padding-top: 120px;
    }
    .scroll-indicator{
        bottom: -80px;
    }
    .category-indicator{
        bottom: 70px;
    }
    .nav-prev{
        left: -19px;
    }
    .nav-next{
        right: -19px;
    }
    .lightbox-next{
        right: 4px;
    }
    .lightbox-prev{
        left: 4px;
    }
    .lightbox-image[src*="diploma_ceremony.jpg"]{
        max-height: 60vh;
    }
    .lightbox-image[src*="family_resort_visit.jpg"]{
        max-height: 58vh;
    }
    .lightbox-image[src*="exclusive_family_hotel.jpg"]{
        max-height: 58vh;
    }
    .lightbox-image[src*="farewell_dinner.jpg"]{
        max-height: 58vh;
    }
    .lightbox-image[src*="trainees_in_kos"] ~ .lightbox-text {
        bottom: -150px;
    }
    .lightbox-image[src*="day_off.jpeg"]{
        max-height: 59vh;
    }
    .lightbox-image[src*="student_of_the_month.jpg"] ~ .lightbox-text {
        bottom: -125px;
    }
    .lightbox-image[src*="student_of_the_month.jpg"]{
        max-height: 60vh;
    }
    /*spa_cyprus.jpg*/
    .lightbox-image[src*="spa_cyprus.jpg"]{
        max-height: 50vh;
    }
    .lightbox-image[src*="spa_cyprus.jpg"] ~ .lightbox-text {
        bottom: -157px;
    }
    /*//entertainment_internship.jpeg*/
    .lightbox-image[src*="entertainment_internship.jpeg"]{
        max-height: 60vh;
    }
    .lightbox-image[src*="entertainment_internship.jpeg"] ~ .lightbox-text {
        bottom: -124px;
    }
    /*student_of_the_month_2.jpg*/
    .lightbox-image[src*="student_of_the_month_2.jpg"]{
        max-height: 59vh;
    }
    /*restaurant_trainees.jpg*/
    .lightbox-image[src*="restaurant_trainees.jpg"]{
        max-height: 58vh;
    }
    .lightbox-image[src*="restaurant_trainees.jpg"] ~ .lightbox-text {
        bottom: -129px;
    }
    /*entertainment_corfu.jpg*/
    .lightbox-image[src*="entertainment_corfu.jpg"]{
        max-height: 68vh;
    }
    .lightbox-image[src*="entertainment_corfu.jpg"] ~ .lightbox-text {
        bottom: -100px;
    }
    /*resort_visit.jpg*/
    .lightbox-image[src*="resort_visit.jpg"]{
        max-height: 53vh;
    }
    .lightbox-image[src*="resort_visit.jpg"] ~ .lightbox-text {
        bottom: -136px;
    }
    /*lithuanian_cultural_visit.jpg*/
    .lightbox-image[src*="lithuanian_cultural_visit.jpg"]{
        max-height: 49vh;
    }
    .lightbox-image[src*="lithuanian_cultural_visit.jpg"] ~ .lightbox-text {
        bottom: -157px;
    }
    /*entertainment_department_showcase.jpg*/
    .lightbox-image[src*="entertainment_department_showcase.jpg"]{
        max-height: 50vh;
    }
    .lightbox-image[src*="entertainment_department_showcase.jpg"] ~ .lightbox-text {
        bottom: -157px;
    }
    /*diploma_ceremony.jpg*/
    .lightbox-image[src*="diploma_ceremony.jpg"] ~ .lightbox-text {
        bottom: -126px;
    }
    /*cultural_visit_to_kaunas.jpg*/
    .lightbox-image[src*="cultural_visit_to_kaunas.jpg"]{
        max-height: 52vh;
    }
    .lightbox-image[src*="cultural_visit_to_kaunas.jpg"] ~ .lightbox-text {
        bottom: -130px;
    }
    /*meeting_with_hotel_management.jpg*/
    .lightbox-image[src*="meeting_with_hotel_management.jpg"]{
        max-height: 54vh;
    }
    .lightbox-image[src*="meeting_with_hotel_management.jpg"] ~ .lightbox-text {
        bottom: -136px;
    }
    /*with_successful_trainees.jpg*/
    .lightbox-image[src*="with_successful_trainees.jpg"] ~ .lightbox-text {
        bottom: -143px;
    }
    /*future_trainees_from_malaga.jpg*/
    .lightbox-image[src*="future_trainees_from_malaga.jpg"] ~ .lightbox-text {
        bottom: -150px;
    }
    /*partnership_visit_to_almeria.jpg*/
    .lightbox-image[src*="partnership_visit_to_almeria.jpg"]{
        max-height: 58vh;
    }
    /*meeting_partners_in_marbella.jpg*/
    .lightbox-image[src*="meeting_partners_in_marbella.jpg"]{
        max-height: 64vh;
    }
    .lightbox-image[src*="meeting_partners_in_marbella.jpg"] ~ .lightbox-text {
        bottom: -110px;
    }
    /*os_visit.jpg*/
    .lightbox-image[src*="os_visit.jpg"] ~ .lightbox-text {
        bottom: -146px;
    }
    /*greek_islands.jpg*/
    .lightbox-image[src*="greek_islands.jpg"]{
        max-height: 56vh;
    }
    .lightbox-image[src*="greek_islands.jpg"] ~ .lightbox-text {
        bottom: -133px;
    }
    /*corfu_green_island.jpg*/
    .lightbox-image[src*="corfu_green_island.jpg"] ~ .lightbox-text {
        bottom: -144px;
    }
    /*cyprus_cultures_meet.jpg*/
    .lightbox-image[src*="cyprus_cultures_meet.jpg"]{
        max-height: 61vh;
    }
    .lightbox-image[src*="cyprus_cultures_meet.jpg"] ~ .lightbox-text {
        bottom: -123px;
    }
    /*internship_at_hotel.jpg*/
    .lightbox-image[src*="internship_at_hotel.jpg"] ~ .lightbox-text {
        bottom: -144px;
    }
    /*destinations-highlights/zakynthos_turquoise_waters.jpg*/
    .lightbox-image[src*="zakynthos_turquoise_waters.jpg"] ~ .lightbox-text {
        bottom: -65px;
    }
    /*lefkada_beach_paradise.jpg*/
    .lightbox-image[src*="lefkada_beach_paradise.jpg"]{
        max-height: 55vh;
    }
    .lightbox-image[src*="lefkada_beach_paradise.jpg"] ~ .lightbox-text {
        bottom: -133px;
    }
    /*rhodes_island_of_the_sun.jpg*/
    .lightbox-image[src*="rhodes_island_of_the_sun.jpg"]{
        max-height: 54vh;
    }
    .lightbox-image[src*="rhodes_island_of_the_sun.jpg"] ~ .lightbox-text {
        bottom: -135px;
    }
    /*crete_largest_greek_island.jpg*/
    .lightbox-image[src*="crete_largest_greek_island.jpg"]{
        max-height: 43vh;
    }
    .lightbox-image[src*="crete_largest_greek_island.jpg"] ~ .lightbox-text {
        bottom: -146px;
    }
    /*meeting.jpg*/
    .lightbox-image[src*="meeting.jpg"] ~ .lightbox-text {
        bottom: -146px;
    }
    /*#scrollToTop {*/
    /*    display: none;*/
    /*}*/
     body.gallery-page:has(.lightbox.active) #scrollToTop {
        display: none !important;
    }
    #prevBtn, #nextBtn{
        width: 24px;
        height: 24px;
    }
    #lightboxPrev, #lightboxNext{
        width: 30px;
        height: 30px;
    }
}
@media (max-width: 400px) {
    .carousel-inner{
        width: 90%;
    }
    .about-visual{
        height: 600px;
    }
    .cta-button-about{
        padding: 15px 30px;
    }
    .scroll-indicator{
        bottom: -130px;
    }
}
@media (max-width: 376px) {
    #prevBtn, #nextBtn{
        width: 20px;
        height: 20px;
    }
    #lightboxPrev, #lightboxNext{
        width: 25px;
        height: 25px;
    }
}
@media (max-width: 350px) {
    .scroll-indicator{
        bottom: -160px;
    }
}
@media (max-width: 321px){
    .hero-buttons > .btn-primary, .btn-secondary {
        font-size: unset;
    }
    .hero-overlay .subtitle{
        font-size: 1.1rem;
    }
    #lightboxPrev, #lightboxNext{
        width: 20px;
        height: 20px;
    }
}



