/* ==========================================================================
   CENTRUM TERAPII - Main Stylesheet
   ========================================================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   NAVBAR - Semantic HTML Structure
   ========================================================================== */

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

@media(max-width:968px){

    .navbar {
    position:relative;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;

}


}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 5px 40px rgba(0,0,0,0.12);
}

/* Container */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Brand */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Quicksand', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
}

/* Main Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.navbar-menu > li {
    position: relative;
}

.navbar-menu > li > a {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

/* Active & Hover States */
.navbar-menu > li > a::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.navbar-menu > li > a:hover,
.navbar-menu > li > a.active {
    color: var(--primary-color);
    background: rgba(74, 144, 226, 0.05);
}

.navbar-menu > li > a:hover::before,
.navbar-menu > li > a.active::before {
    width: 40%;
}

/* Contact Button */
.navbar-menu > li > a.btn-contact {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 0.5rem;
}

.navbar-menu > li > a.btn-contact::before {
    display: none;
}

.navbar-menu > li > a.btn-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    color: white;
}

/* Dropdown Arrow */
.navbar-menu > li.has-dropdown > a i {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.navbar-menu > li.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.navbar-menu > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.15);
    padding: 1rem;
    margin-top: 0.75rem;
    min-width: 280px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.navbar-menu > li.has-dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Items */
.navbar-menu > li > ul > li {
    margin: 0;
}

.navbar-menu > li > ul > li > a {
    display: block;
    padding: 0.85rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-menu > li > ul > li > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 70%;
    background: var(--gradient-primary);
    border-radius: 0 10px 10px 0;
    transition: width 0.3s ease;
}

.navbar-menu > li > ul > li > a:hover {
    background: rgba(74, 144, 226, 0.08);
    color: var(--primary-color);
    padding-left: 1.75rem;
}

.navbar-menu > li > ul > li > a:hover::before {
    width: 4px;
}

/* Dropdown Titles */
.navbar-menu > li > ul > li.dropdown-title {
    padding: 0.75rem 1rem 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(74, 144, 226, 0.05);
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

/* Dropdown Divider */
.navbar-menu > li > ul > li.divider {
    height: 1px;
    background: rgba(0,0,0,0.06);
    margin: 0.75rem 0;
}

/* Mobile Toggler */
.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 0.5rem 0.65rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(74, 144, 226, 0.1);
}

.navbar-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler.active{
    background: var(--primary-color);
}

.navbar-toggler.active span{
   background:#fff;
}

 

/* ==========================================================================
   RESPONSIVE - MOBILE STYLES
   ========================================================================== */

@media (max-width: 992px) {
    .navbar .container {
        padding: 0 1.5rem;
    }
    
    /* Show Mobile Toggler */
    .navbar-toggler {
        display: flex;
    }
    
    /* Mobile Menu */
    .navbar-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: white;
        margin: 0 1.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        padding: 1rem 0;
        max-height: auto;
     
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    
    .navbar-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translate(0,30px)
    }
    
    /* Mobile Menu Items */
    .navbar-menu > li {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .navbar-menu > li:last-child {
        border-bottom: none;
    }
    
    .navbar-menu > li > a {
        padding: 1rem 1.5rem;
        border-radius: 0;
        border-left: 4px solid transparent;
    }
    
    .navbar-menu > li > a::before {
        display: none;
    }
    
    .navbar-menu > li > a:hover,
    .navbar-menu > li > a.active {
        background: rgba(74, 144, 226, 0.08);
        border-left-color: var(--primary-color);
        padding-left: 2rem;
    }
    
    /* Mobile Dropdown */
    .navbar-menu > li.has-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-menu > li.has-dropdown > a i {
        transition: transform 0.3s ease;
    }
    
    .navbar-menu > li.has-dropdown.open > a i {
        transform: rotate(180deg);
    }
    
    /* Mobile Dropdown Menu */
    .navbar-menu > li > ul {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: #f8f9fa;
        margin: 0;
        padding: 0.5rem 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.4s ease;
    }
    
    .navbar-menu > li.has-dropdown.open > ul {
        max-height: 600px;
    }
    
    /* Mobile Dropdown Items */
    .navbar-menu > li > ul > li > a {
        padding: 0.85rem 1.5rem 0.85rem 2.5rem;
        border-radius: 0;
        border-left: 3px solid transparent;
        font-size: 0.9rem;
    }
    
    .navbar-menu > li > ul > li > a:hover {
        border-left-color: var(--primary-color);
        padding-left: 3rem;
    }
    
    /* Mobile Dropdown Titles */
    .navbar-menu > li > ul > li.dropdown-title {
        padding: 0.75rem 1.5rem 0.5rem 2rem;
        font-size: 0.7rem;
        background: transparent;
        color: #999;
    }
    
    /* Mobile Divider */
    .navbar-menu > li > ul > li.divider {
        margin: 0.5rem 1.5rem;
    }
    
    /* Mobile Contact Button */
    .navbar-menu > li > a.btn-contact {
        margin: 1rem 1.5rem 0.5rem;
        text-align: center;
        border-radius: 50px;
        border-left: none !important;
    }
    
    .navbar-menu > li > a.btn-contact:hover {
        padding-left: 1.75rem !important;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar-brand i {
        font-size: 1.5rem;
    }
    
    .navbar .container {
        padding: 0 1rem;
    }
    
    .navbar-menu {
        margin: 0 1rem;
        top: 75px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-brand i {
        font-size: 1.3rem;
    }
    
    .navbar-menu {
        margin: 0 0.5rem;
        border-radius: 15px;
    }
    
    .navbar-menu > li > a {
        font-size: 0.9rem;
        padding: 0.85rem 1rem;
    }
    
    .navbar-menu > li > ul > li > a {
        font-size: 0.85rem;
        padding: 0.75rem 1rem 0.75rem 2rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-split {
    min-height: 60vh;
    background: #fafafa;
    position: relative;
    overflow: hidden;
  
}

/* Animated Bubbles */
.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -150px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), rgba(255,255,255,0.1) 40%, rgba(255,255,255,0.05));
    border-radius: 50%;
    opacity: 0.6;
    animation: rise linear infinite;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.3), 0 0 20px rgba(255,255,255,0.2);
}

.bubble:nth-child(1) { width: 80px; height: 80px; left: 10%; animation-duration: 12s; animation-delay: 0s; }
.bubble:nth-child(2) { width: 120px; height: 120px; left: 25%; animation-duration: 15s; animation-delay: 2s; }
.bubble:nth-child(3) { width: 60px; height: 60px; left: 40%; animation-duration: 10s; animation-delay: 1s; }
.bubble:nth-child(4) { width: 100px; height: 100px; left: 55%; animation-duration: 14s; animation-delay: 3s; }
.bubble:nth-child(5) { width: 90px; height: 90px; left: 70%; animation-duration: 13s; animation-delay: 1.5s; }
.bubble:nth-child(6) { width: 70px; height: 70px; left: 85%; animation-duration: 11s; animation-delay: 2.5s; }
.bubble:nth-child(7) { width: 110px; height: 110px; left: 15%; animation-duration: 16s; animation-delay: 4s; }
.bubble:nth-child(8) { width: 75px; height: 75px; left: 50%; animation-duration: 12s; animation-delay: 0.5s; }

@keyframes rise {
    0% { bottom: -150px; transform: translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { bottom: 110vh; transform: translateX(100px) rotate(360deg); opacity: 0; }
}

/* Hero Content */
.hero-content-left {
    padding: 0 4rem;
    z-index: 10;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

@media(max-width:968px){
    .hero-badge{
        display:none;
    }

    .hero-text-wrapper{
        padding:50px 0;
    }
}

.hero-title-animated {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.hero-title-animated .line {
    display: block;
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
}

.hero-title-animated .line:nth-child(1) { animation-delay: 0.2s; }
.hero-title-animated .line:nth-child(2) { animation-delay: 0.4s; }
.hero-title-animated .line:nth-child(3) { animation-delay: 0.6s; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.8s backwards;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s backwards;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    color: white;
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 1s ease 1.2s backwards;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Hero Image Section */
.hero-image-right {
    position: relative;
    height: 600px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    animation: fadeIn 1s ease 0.5s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-main-image{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px !important;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    z-index: 2;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-card span {
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.card-1 { top: 10%; right: 10%; animation-delay: 0s; }
.card-2 { bottom: 20%; right: 5%; animation-delay: 1s; }
.card-3 { top: 50%; left: 5%; animation-delay: 2s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Hero Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -10%;
    right: -10%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-dark);
    bottom: -5%;
    left: -5%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(50px) rotate(180deg); }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-section {
 
    background: white;
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
}

.about-main-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.about-badge h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.about-badge p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.95;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(74, 144, 226, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0;
}

.about-feature h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.about-feature p {
    font-size: 0.95rem;
    margin: 0;
    color: #666;
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */

.team-section {
 
    background: var(--primary-color);
}


.team-section h2{
    color:#fff !important;
}
 
.team-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.5);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--primary-color);
    padding: 5px;
    background: white;
}

.team-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-card .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
 

/* ==========================================================================
   MISSION SECTION
   ========================================================================== */

.mission-section {
 
   background: #fff;
}

.mission-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.4s ease;
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    transform: rotateY(360deg);
}

.mission-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.mission-card p {
    color: #666;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    background: #fff;

    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.team-section .section-title h2{
    color:#fff;
}

.team-section .section-title p{
    color:#fff;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
   color: var(--primary-color);
   
}

.section-title p {
    font-size: 1.15rem;
    color: #666;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

/* Service Image (zamiast ikony) */
.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-image::before {
    opacity: 0.5;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

/* Service Content */
.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Button */
.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 1.5rem 1.5rem;
    border: none;
    justify-content: center;
}

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
    color: white;
}

.btn-service::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-service:hover::after {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .service-image {
        height: 200px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .service-image {
        height: 180px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card {
        border-radius: 20px;
    }
}


/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
/* Contact Section */
.contact-section {
  
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.contact-section .section-title h2{
    color:white;
}

.contact-section .section-title p{
    color:white;
}


.contact-section .section-title {
    margin-bottom: 3rem;
    color:#fff;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.contact-form .form-control {
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
    background: white;
}

.contact-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    color:#fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Locations Contact Cards */
.locations-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-contact-card:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.location-contact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.location-badge {
    display: inline-block;
     background: linear-gradient(180deg, var(--primary-color)  0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
 }

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item a {
    color: var(--primary-color);;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-form {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-form h3 {
        font-size: 1.5rem;
    }

    .location-contact-card {
        padding: 1.25rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .btn-submit {
        padding: 0.75rem 2rem;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 1.5rem;
    }

    .location-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .contact-item i {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
/* Footer Styles */
.footer {
    background: #222;
    color: #ecf0f1;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

/* Footer Top */
.footer-top {
    padding: 4rem 0 3rem;
    position: relative;
}

.footer-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

/* Footer Contact Items */
.footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.footer-contact-item:hover {
    transform: translateX(5px);
}

.footer-contact-icon {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
   background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
   
}

.footer-contact-icon i {
    font-size: 0.9rem;
    color: white;
}

.footer-contact-text h6 {
    color: #bdc3c7;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.footer-contact-text p {
    color: #ecf0f1;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact-text a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-text a:hover {
    color: var(--primary-dark);
}

/* Footer Links */

:is(.footer-links,.child-pages) {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul{
    display:none;
}

:is(.footer-links,.child-pages) li {
    margin-bottom: 0.75rem;
}


:is(.footer-links,.child-pages) a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 1.25rem;
}

:is(.footer-links,.child-pages) a::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius:0;
    transition: all 0.3s ease;
}


:is(.footer-links,.child-pages) a:hover {
    color: #ffffff;
    padding-left: 1.5rem;
}


:is(.footer-links,.child-pages) a:hover::before {
    background: var(--primary-dark);
    transform: scale(1.3);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    margin: 0;
    color: #ecf0f1;
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-bottom-links li:not(:last-child)::after {
    content: '•';
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.footer-bottom-links a:hover {
    color: #ffffff;
    background: rgba(102, 126, 234, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .footer-top {
        padding: 3rem 0 2rem;
    }

    .footer-title {
        font-size: 1.15rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-copyright {
        font-size: 0.875rem;
        order: 2;
    }

    .footer-bottom-links {
        justify-content: center;
        order: 1;
        gap: 0.25rem;
    }

    .footer-bottom-links li:not(:last-child)::after {
        margin-left: 0.25rem;
    }

}
 


/* ==========================================================================
   SUBPAGE STYLES
   ========================================================================== */

.page-header {
    min-height: 40vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  
}

.page-header::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 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,186.7C960,192,1056,160,1152,138.7C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center/cover no-repeat;
}

.page-header-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.page-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.page-header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.breadcrumb-custom {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
}

@media(max-width:968px){
    .breadcrumb-custom{
        display: none;
    }
}

.breadcrumb-custom a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.breadcrumb-custom a:hover {
    opacity: 1;
}

.breadcrumb-custom span {
    color: white;
}

.page-content {
    padding: 100px 0;
    background: white;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-wrapper h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.content-wrapper ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-wrapper li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0.75rem;
}

.info-box {
    background: rgba(74, 144, 226, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-box p {
    margin-bottom: 0;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 992px) {
    .hero-content-left {
        padding: 0 2rem;
        text-align: center;
    }
    
    .hero-title-animated {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image-right {
        display: none;
    }

    .about-content {
        flex-direction: column;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }

    .dropdown-menu {
        border-radius: 0;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.95);
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
 
    .about-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 2rem;
    }
    
    .bubble {
        display: none;
    }

    .footer-top {
        padding: 3rem 0 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-stat-item {
        text-align: center;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .page-header {
         min-height: auto;
        padding:30px 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title-animated {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .service-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    .btn-service,
    .contact-form,
    .footer-social,
    .newsletter-form {
        display: none !important;
    }
}


@media(max-width:968px){
    
    section,footer{
 padding-left:15px !important;
 padding-right:15px !important;
    }

}


/* edit */
/* Locations Section */
.locations-section {

    background: #f8f9fa;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.location-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Animated Gradient Border */
.location-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 3px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotate-border 8s linear infinite;
    pointer-events: none;
}

@keyframes rotate-border {
    0% { --angle: 0deg; }
    100% { --angle: 360deg; }
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* Floating Bubbles */
.bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.8),
        rgba(102, 126, 234, 0.3)
    );
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.5),
        0 4px 15px rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(5px);
    animation: float-bubble 15s ease-in-out infinite;
}

.bubble-1 {
    width: 60px;
    height: 60px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.bubble-2 {
    width: 40px;
    height: 40px;
    left: 75%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    left: 45%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.bubble-4 {
    width: 30px;
    height: 30px;
    left: 85%;
    animation-delay: 1s;
    animation-duration: 10s;
}

.bubble-5 {
    width: 50px;
    height: 50px;
    left: 25%;
    animation-delay: 3s;
    animation-duration: 14s;
}

@keyframes float-bubble {
    0%, 100% {
        transform: translateY(calc(100% + 100px)) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20%) translateX(20px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Map Wrapper */
.map-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Location Info */
.location-info {
    padding: 2rem;
    text-align: center;
}

.location-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.address {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

.address .icon {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .locations-grid {
        gap: 2rem;
    }

    .map-wrapper {
        height: 300px;
    }

    .location-info {
        padding: 1.5rem;
    }

    .bubble-1 { width: 50px; height: 50px; }
    .bubble-2 { width: 35px; height: 35px; }
    .bubble-3 { width: 65px; height: 65px; }
    .bubble-4 { width: 25px; height: 25px; }
    .bubble-5 { width: 40px; height: 40px; }
}


/*edit */

/* ============================================
   DROPDOWN - CLICK STYLE (DESKTOP & MOBILE)
   ============================================ */
 
.navbar-menu li.wSub {
    position: relative;
}

.navbar-menu li.wSub .subMenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
}

@media(max-width:968px){


.navbar-menu li.wSub .subMenu {
    position:relative;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
}

}


/* OPEN STATE */
.navbar-menu li.wSub.open .subMenu {
    display: block;
    opacity: 1;
    visibility: visible;
    max-height: 600px;
}

/* Submenu items */
.navbar-menu .subMenu li {
    padding: 0;
    list-style: none;
}

.navbar-menu .subMenu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.navbar-menu .subMenu li a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color, #4a90e2);
     padding-left: 25px;
}

/* Dropdown arrow indicator */
.navbar-menu li.wSub > a.wSub-a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-bottom: 3px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    margin-left: 8px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.navbar-menu li.wSub.open > a.wSub-a::after {
    transform: rotate(-135deg);
}

/* ============================================
   MOBILE RESPONSIVE - HAMBURGER & MENU
   ============================================ */
 


   .face{
    width:300px !important;
    height:300px;
    object-fit: cover;
    object-position: center;
    display: block;
    margin:0 auto;
    border-radius: 50% !important;
    border:solid 5px var(--primary-color);
   }

   .page-content :is(h1,h2,h3,h4,h5,h6){
    color:var(--primary-color)
   }

   .page-content img{
    border-radius:5px;
   }