/* === GLOBAL VARIABLES === */
:root {
    --primary-color: #0a47a9; /* Deeper blue - more professional */
    --primary-light: #2563eb; /* Brighter blue */
    --secondary-color: #0ea5e9; /* Bright blue - more modern */
    --accent-color: #f97316; /* Orange accent for important elements */
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #212529;
    --text-color: #1e293b;
    --text-light: #475569;
    --text-muted: #64748b;
    --white: #ffffff;
    --black: #000000;
    --headings-font: 'Cairo', 'Poppins', sans-serif;
    --body-font: 'Cairo', 'Roboto', sans-serif;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --box-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

/* === GLOBAL STYLES === */
body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.7;
    direction: rtl; /* Ensure RTL */
    background-color: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--headings-font);
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.3;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed);
}

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

.container {
    padding: 0 15px;
}

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

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

/* === TOP BAR === */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.9rem;
    padding: 8px 0;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-speed);
    font-weight: 500;
}

.top-bar-link:hover {
    color: var(--white);
    text-decoration: none;
}

.social-icons {
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    transition: all var(--transition-speed);
}

.social-icon:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* === NAVBAR === */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.75rem;
    font-family: var(--headings-font);
    color: var(--primary-color) !important;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.navbar-nav .nav-item {
    list-style: none;
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--headings-font);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-gray) !important;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(0, 123, 255, 0.1); /* لون خلفية خفيف */
}

.navbar-nav .nav-link i {
    font-size: 1.1rem;
}

/* خط متحرك تحت الرابط */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 10px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* === HERO BANNER === */
.hero-banner {
    background: linear-gradient(to bottom, rgba(10, 71, 169, 0.85), rgba(10, 71, 169, 0.95));
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--white), transparent);
}

.hero-banner h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-banner p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.hero-banner .btn {
    margin-top: 1rem;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

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

.hero-banner .btn-outline-light {
    border: 2px solid var(--white);
    background-color: transparent;
}

.hero-banner .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* === HERO BANNER ADDITIONS === */
.hero-image {
    max-height: 500px;
    object-fit: contain;
    margin: 0 auto;
    transform: translateY(-20px);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: all 0.5s ease;
}

.hero-image:hover {
    transform: translateY(-30px);
}

/* === SECTION STYLING === */
section {
    padding: 100px 0;
    position: relative;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    color: var(--primary-color);
    font-weight: 800;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* === CARD STYLING === */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    overflow: hidden;
    height: 100%;
    background-color: var(--white);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-lg);
}

.card-img-container {
    overflow: hidden;
    height: 200px;
    position: relative;
}

.card-img-top {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--dark-gray);
    transition: color var(--transition-speed);
}

.card-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.card-footer {
    padding: 1.25rem 2rem;
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.card .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 71, 169, 0.3);
}

/* === FEATURE BOX === */
.feature-box {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    text-align: center;
    margin-bottom: 30px;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
    background-color: var(--white);
    border-color: transparent;
}

.feature-icon {
    margin-bottom: 15px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    transition: all var(--transition-speed);
}

.feature-box:hover .feature-icon {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(37, 99, 235, 0.3));
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon i {
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-gray);
    transition: all var(--transition-speed);
}

.feature-text {
    color: var(--text-light);
    margin-bottom: 0;
}

/* === TESTIMONIAL === */
.testimonial-card {
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    background-color: var(--white);
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.testimonial-card::before {
    content: '\201C';
    font-size: 6rem;
    color: rgba(14, 165, 233, 0.15);
    position: absolute;
    top: -15px;
    right: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-left: 1rem;
    object-fit: cover;
    border: 3px solid rgba(14, 165, 233, 0.2);
}

.testimonial-name {
    font-weight: 700;
    margin-bottom: 0;
    color: var(--primary-color);
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

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

.cta-title {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-text {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
}

.cta-btn {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-speed);
    font-size: 1.1rem;
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

/* === STATS COUNTER === */
.stats-counter {
    padding: 70px 0;
    background: linear-gradient(to right, rgba(10, 71, 169, 0.03), rgba(14, 165, 233, 0.05), rgba(10, 71, 169, 0.03));
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.counter-box {
    text-align: center;
    margin-bottom: 30px;
    padding: 40px 20px;
    transition: all 0.4s ease;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.counter-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
    transition: all 0.4s ease;
}

.counter-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.counter-box:hover::before {
    height: 7px;
}

.counter-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(10, 71, 169, 0.12));
    color: var(--secondary-color);
    font-size: 2.4rem;
    transition: all 0.4s ease;
}

.counter-box:hover .counter-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(10, 71, 169, 0.2));
}

.counter-number-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.counter-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    display: inline-block;
    margin-right: 8px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.counter-number::after {
    content: '+';
    position: absolute;
    top: 5px;
    right: -5px;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-text {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.15rem;
    display: block;
    padding-top: 5px;
}

@media (max-width: 991px) {
    .counter-number {
        font-size: 2.8rem;
    }
    
    .counter-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .counter-box {
        padding: 30px 15px;
    }
    
    .counter-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-number::after {
        font-size: 1.5rem;
        top: 3px;
    }
    
    .counter-text {
        font-size: 1rem;
    }
}

/* === FOOTER === */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding-top: 80px;
    margin-top: 100px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to bottom, transparent, rgba(33, 37, 41, 0.05));
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.75rem;
    line-height: 1.8;
}

.footer-about .social-icons {
    margin-top: 1.75rem;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 1.5rem;
}

footer h5 {
    color: var(--white);
    margin-bottom: 1.75rem;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 12px;
}

footer h5::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-light));
    border-radius: 1.5px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition-speed);
    display: inline-block;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(-8px);
}

.footer-contact li {
    display: flex;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact li i {
    margin-left: 12px;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-speed);
    font-weight: 500;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 60px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-policy-links {
    gap: 25px;
    margin: 0;
}

.footer-policy-links li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed);
}

.footer-policy-links li a:hover {
    color: var(--white);
}

/* === BACK TO TOP BUTTON === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-10px);
}

.back-to-top i {
    font-size: 1.5rem;
}

/* === ANIMATIONS === */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1199px) {
    .hero-banner h1 {
        font-size: 3rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    section h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 25px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        margin-top: 15px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-nav {
        margin-left: 0;
    }
    
    .navbar-nav .nav-item {
        margin: 8px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .contact-btn-wrapper {
        width: 100%;
        justify-content: center;
    }
    
    .contact-btn {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }
    
    .hero-banner {
        padding: 120px 0 100px;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .hero-banner p {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    section {
        padding: 70px 0;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .footer-about, .footer-links, .footer-contact {
        margin-bottom: 40px;
    }
    
    /* Ensure 2 boxes per row on tablets */
    .col-lg-4 {
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .top-bar {
        padding: 10px 0;
    }
    
    .top-bar .row > div:first-child {
        margin-bottom: 10px;
    }
    
    .hero-banner {
        padding: 100px 0 80px;
    }
    
    .hero-banner h1 {
        font-size: 2rem;
    }
    
    .hero-banner p {
        max-width: 100%;
    }
    
    .hero-banner .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .card-img-container {
        height: 180px;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .testimonial-card {
        padding: 1.75rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .footer-policy-links {
        justify-content: center !important;
        margin-top: 15px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        left: 20px;
        bottom: 20px;
    }
    
    /* Adjust column width for feature boxes on mobile */
    .col-md-6 {
        max-width: 100%;
    }
}
.logo {
        height: 70px;
        weight: 70px;
  margin-left:5px;
  }
@media (max-width: 575px) {
    .container {
        padding: 0 20px;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .logo {
        height: 35px;
    }

    .hero-banner h1 {
        font-size: 1.75rem;
    }
    
    .hero-banner p {
        font-size: 1rem;
    }
    
    .hero-banner .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    section h2 {
        font-size: 1.6rem;
    }
    
    .feature-box {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .counter-box {
        padding: 20px 15px;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-text {
        font-size: 0.9rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-card::before {
        font-size: 4rem;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    footer h5 {
        font-size: 1.2rem;
    }
    
    /* Ensure all columns are full width on small mobile */
    .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Preloaders for images */
.img-fluid {
    transition: opacity 0.3s ease;
}

.img-loading {
    opacity: 0;
}

.img-loaded {
    opacity: 1;
}

/* Import Bootstrap Icons */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

/* === ELEMENTOR STYLE SECTION === */
.elementor-element {
    position: relative;
}

.e-con-boxed {
    padding: 30px;
}

.e-con-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.elementor-icon-box-icon {
    margin-bottom: 15px;
}

.elementor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(10, 71, 169, 0.1);
    color: var(--primary-color);
    transition: all var(--transition-speed);
}

.elementor-icon i {
    font-size: 1.8rem;
}

.feature-box:hover .elementor-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-10px);
}

.elementor-icon-box-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.elementor-icon-box-description {
    color: var(--text-light);
    margin-bottom: 0;
}

.elementor-heading-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .e-con-boxed {
        padding: 20px;
    }
    
    .elementor-heading-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .e-con-boxed {
        padding: 15px;
    }
    
    .elementor-heading-title {
        font-size: 1.6rem;
    }
    
    .elementor-icon {
        width: 50px;
        height: 50px;
    }
    
    .elementor-icon i {
        font-size: 1.5rem;
    }
}

/* === ABOUT PAGE STYLES === */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(to bottom, rgba(10, 71, 169, 0.03), rgba(255, 255, 255, 1));
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: 20px;
    opacity: 0.05;
    z-index: 0;
}

.about-img {
    max-height: 450px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

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

/* Vision & Mission Boxes */
.vision-mission-box {
    padding: 35px;
    border-radius: var(--border-radius);
    background-color: var(--white);
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.vision-mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 2;
}

.vision-mission-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.vision-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(10, 71, 169, 0.12));
}

.vision-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Values Section */
.value-box {
    padding: 30px;
    text-align: center;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
    height: 100%;
}

.value-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(10, 71, 169, 0.12));
}

.value-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.value-box h4 {
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--dark-gray);
}

.value-box p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Team Card */
.team-card {
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all var(--transition-speed);
    margin-bottom: 30px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.team-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-content h4 {
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--dark-gray);
}

.team-position {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.team-contact {
    margin-bottom: 15px;
}

.team-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.team-contact-link:hover {
    color: var(--primary-light);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.team-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(10, 71, 169, 0.1);
    color: var(--primary-color);
    transition: all var(--transition-speed);
}

.team-social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    right: 50%;
    margin-right: -2px;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    right: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: -10px;
    z-index: 1;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px rgba(10, 71, 169, 0.3);
}

.timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    width: 150px;
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    box-shadow: var(--box-shadow);
}

.timeline-content {
    position: relative;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    width: calc(50% - 50px);
    margin-right: calc(50% + 30px);
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 10px;
    left: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--white);
    transform: rotate(180deg);
}

.timeline-content h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--text-light);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: calc(50% + 30px);
}

.timeline-item:nth-child(even) .timeline-date {
    left: auto;
    right: 50%;
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: auto;
    right: -15px;
    transform: rotate(0deg);
}

.cta-btn-outline {
    background-color: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    border: 2px solid var(--white);
    transition: all var(--transition-speed);
    font-size: 1.1rem;
}

.cta-btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .timeline::before {
        right: 30px;
        margin-right: 0;
    }
    
    .timeline-dot {
        right: 30px;
        margin-right: 0;
    }
    
    .timeline-date {
        left: auto;
        right: 70px;
        width: auto;
        min-width: 120px;
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-right: 70px;
        margin-left: 0;
    }
    
    .timeline-content::after {
        right: -15px;
        left: auto;
        transform: rotate(0deg);
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-right: 70px;
        margin-left: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-date {
        right: 70px;
    }
    
    .timeline-item:nth-child(even) .timeline-content::after {
        right: -15px;
        left: auto;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 60px 0 40px;
    }
    
    .vision-mission-box {
        padding: 25px;
    }
    
    .vision-icon {
        width: 60px;
        height: 60px;
    }
    
    .vision-icon i {
        font-size: 1.75rem;
    }
    
    .value-box {
        padding: 20px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .team-img {
        height: 240px;
    }
    
    .team-content {
        padding: 20px;
    }
    
    .timeline-date {
        font-size: 0.9rem;
        padding: 5px 12px;
        min-width: 100px;
    }
    
    .timeline-content {
        padding: 20px;
    }
}

/* === SERVICES PAGE STYLES === */
.services-hero {
    padding: 120px 0 80px;
    background: linear-gradient(to bottom, rgba(10, 71, 169, 0.03), rgba(255, 255, 255, 1));
    position: relative;
    overflow: hidden;
}

.services-img {
    max-height: 450px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

/* Service Categories */
.service-categories {
    margin-top: -30px;
}

.service-category-box {
    display: block;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-color);
    z-index: 1;
    height: 100%;
}

.service-category-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: all 0.4s ease;
    opacity: 0.85;
}

.service-category-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
    color: var(--text-color);
}

.service-category-box:hover::before {
    width: 10px;
}

.service-category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(10, 71, 169, 0.1));
}

.service-category-box.software .service-category-icon {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(10, 71, 169, 0.1));
}

.service-category-box.marketing .service-category-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(234, 88, 12, 0.1));
}

.service-category-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-category-box.software .service-category-icon i {
    color: var(--primary-color);
}

.service-category-box.marketing .service-category-icon i {
    color: var(--accent-color);
}

.service-category-box h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-category-box p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-category-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-category-box.marketing .service-category-more {
    color: var(--accent-color);
}

.service-category-box:hover .service-category-more {
    gap: 10px;
}

/* Service Cards */
.service-card {
    padding: 35px 30px;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-lg);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(10, 71, 169, 0.12));
    transition: all 0.4s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h4 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--dark-gray);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Process Section */
.process-section {
    background-color: var(--white);
    position: relative;
}

.process-timeline {
    padding: 30px 0;
    max-width: 900px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    position: relative;
    margin-bottom: 50px;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 35px;
    top: 70px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, var(--primary-color), rgba(14, 165, 233, 0.2));
    z-index: 1;
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    margin-left: 30px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(10, 71, 169, 0.2);
}

.process-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px 30px;
    box-shadow: var(--box-shadow);
    flex: 1;
}

.process-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--primary-color);
}

.process-content p {
    margin-bottom: 0;
    color: var(--text-light);
}

@media (max-width: 991px) {
    .services-hero {
        padding: 80px 0 60px;
    }
    
    .service-category-box {
        padding: 25px;
    }
    
    .service-category-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }
    
    .service-category-icon i {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .service-card-icon i {
        font-size: 1.75rem;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin-left: 25px;
    }
    
    .process-item:not(:last-child)::after {
        right: 30px;
        top: 60px;
    }
    
    .process-content {
        padding: 20px 25px;
    }
}

@media (max-width: 767px) {
    .services-hero {
        padding: 60px 0 40px;
    }
    
    .service-category-box {
        padding: 20px;
    }
    
    .service-category-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
    
    .service-category-icon i {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .service-card-icon i {
        font-size: 1.5rem;
    }
    
    .process-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    
    .process-number {
        margin-bottom: 15px;
        margin-left: 0;
    }
    
    .process-item:not(:last-child)::after {
        display: none;
    }
}

/* === LIPOSTA PAGE STYLES === */
.liposta-hero h1{
    color:#ffffff;
}
.liposta-hero {
    padding: 120px 0 80px;
    background: linear-gradient(to bottom, #0a47a9, #1d5cc3);
    background-size: cover;
    position: relative;
    overflow: hidden;
    color: var(--white);
}
.liposta-hero .btn-primary {
    background-color:#ffffff;
    color:#0a47a9;
}
.liposta-hero .btn-outline-primary {
    color:#ffffff;
    --bs-btn-border-color:#ffffff;
}
.liposta-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: 100px;
    opacity: 0.05;
    z-index: 0;
}

.liposta-hero .container {
    position: relative;
    z-index: 1;
}

.liposta-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.liposta-img {
    max-height: 500px;
    animation: float 3s ease-in-out infinite;
}

/* Liposta Features */
.liposta-feature {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
    text-align: center;
    transition: all 0.4s ease;
}

.liposta-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.liposta-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(185, 28, 28, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.liposta-feature:hover .liposta-feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.liposta-feature-icon i {
    font-size: 2rem;
    color: #ef4444;
}

.liposta-feature h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.liposta-feature p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Liposta Categories */
.liposta-category {
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-decoration: none;
    position: relative;
    height: 100%;
    transition: all 0.4s ease;
}

.liposta-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.liposta-category-img {
    height: 400px;
    overflow: hidden;
}

.liposta-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.liposta-category:hover .liposta-category-img img {
    transform: scale(1.05);
}

.liposta-category-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    color: var(--white);
}

.liposta-category-content h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #ffffff;}

.liposta-category-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ef4444;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.liposta-category:hover .liposta-category-link {
    gap: 10px;
}

/* Liposta Testimonials */
.liposta-testimonial {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: all 0.4s ease;
}

.liposta-testimonial:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.liposta-testimonial-rating {
    color: #ef4444;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.liposta-testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-top: 10px;
}

.liposta-testimonial-text::before {
    content: '\201C';
    font-size: 4rem;
    color: rgba(239, 68, 68, 0.1);
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: Georgia, serif;
}

.liposta-testimonial-author h5 {
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* Liposta Steps */
.liposta-steps {
    max-width: 800px;
    margin: 0 auto;
}

.liposta-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.liposta-step:last-child {
    margin-bottom: 0;
}

.liposta-step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 25px;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.liposta-step-icon i {
    font-size: 1.8rem;
}

.liposta-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    right: 30px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, #ef4444, rgba(239, 68, 68, 0.2));
}

.liposta-step-content {
    flex: 1;
    padding-top: 5px;
}

.liposta-step-content h4 {
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.liposta-step-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Liposta CTA */
.liposta-cta {
    background: linear-gradient(to right, #ef4444, #b91c1c);
    padding: 80px 50px;
    border-radius: var(--border-radius-lg);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.liposta-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.liposta-cta-content {
    position: relative;
    z-index: 1;
}

.liposta-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.liposta-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.liposta-cta-btn {
    background-color: var(--white);
    color: #ef4444;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    font-size: 1.1rem;
}

.liposta-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    color: #b91c1c;
}

.liposta-cta-btn-outline {
    background-color: transparent;
    color: var(--white);
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    border: 2px solid var(--white);
    transition: all 0.4s ease;
    font-size: 1.1rem;
}

.liposta-cta-btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .liposta-hero {
        padding: 80px 0 60px;
    }
    
    .liposta-category-img {
        height: 350px;
    }
    
    .liposta-step-icon {
        width: 50px;
        height: 50px;
        margin-left: 20px;
    }
    
    .liposta-step-icon i {
        font-size: 1.5rem;
    }
    
    .liposta-step:not(:last-child)::after {
        top: 50px;
        right: 25px;
    }
    
    .liposta-cta {
        padding: 60px 30px;
    }
    
    .liposta-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .liposta-hero {
        padding: 60px 0 40px;
    }
    
    .liposta-badge {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .liposta-feature {
        padding: 20px;
    }
    
    .liposta-feature-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
    
    .liposta-feature-icon i {
        font-size: 1.5rem;
    }
    
    .liposta-category-img {
        height: 300px;
    }
    
    .liposta-category-content {
        padding: 20px 15px 15px;
    }
    
    .liposta-category-content h4 {
        font-size: 1.1rem;
    }
    
    .liposta-testimonial {
        padding: 20px;
    }
    
    .liposta-step {
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .liposta-step-icon {
        margin-bottom: 15px;
        margin-left: 0;
    }
    
    .liposta-step:not(:last-child)::after {
        display: none;
    }
    
    .liposta-cta {
        padding: 40px 20px;
    }
    
    .liposta-cta h2 {
        font-size: 1.6rem;
    }
    
    .liposta-cta p {
        font-size: 1rem;
    }
    
    .liposta-cta-btn,
    .liposta-cta-btn-outline {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 10px;
    }
}

/* === CONTACT PAGE STYLES === */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}
.contact-hero h1 {
    color: #ffffff;
}
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: 100px;
    opacity: 0.05;
    z-index: 0;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-quick-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.contact-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius);
    padding: 15px 25px;
    transition: all 0.4s ease;
}

.contact-quick-link:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.contact-quick-link i {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-quick-link span {
    font-weight: 600;
}

/* Contact Info Cards */
.contact-info-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
    text-align: center;
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(10, 71, 169, 0.1), rgba(14, 165, 233, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-info-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-info-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-info-link {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.contact-info-link:hover {
    color: var(--secondary-color);
}

.contact-info-link:last-child {
    margin-bottom: 0;
}

/* Contact Form Card */
.contact-form-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.contact-form-card h2 {
    color: var(--dark-gray);
    font-weight: 700;
}

.contact-form .form-label {
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 15px;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 71, 169, 0.1);
}

/* Contact Map Card */
.contact-map-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.contact-map-card h2 {
    color: var(--dark-gray);
    font-weight: 700;
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
}

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

.contact-social h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.contact-social-links {
    display: flex;
    gap: 15px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(10, 71, 169, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.contact-social-link:hover {
    transform: translateY(-5px) rotate(10deg);
    background-color: var(--primary-color);
    color: var(--white);
}

/* Contact FAQ */
.contact-faq-list {
    max-width: 100%;
}

.accordion-item {
    border: none;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: var(--box-shadow-sm);
}

.accordion-header {
    border-radius: var(--border-radius) !important;
}

.accordion-button {
    font-weight: 700;
    color: var(--dark-gray);
    padding: 20px 25px;
    background-color: var(--white);
    border-radius: var(--border-radius) !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(10, 71, 169, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.4s ease;
}

.accordion-body {
    padding: 20px 25px;
    color: var(--text-light);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 80px 50px;
    border-radius: var(--border-radius-lg);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.contact-cta-content {
    position: relative;
    z-index: 1;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-cta-btn {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    font-size: 1.1rem;
}

.contact-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.contact-cta-btn-outline {
    background-color: transparent;
    color: var(--white);
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    border: 2px solid var(--white);
    transition: all 0.4s ease;
    font-size: 1.1rem;
}

.contact-cta-btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .contact-quick-links {
        flex-wrap: wrap;
    }
    
    .contact-quick-link {
        flex: 1;
        min-width: 120px;
        padding: 15px;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-info-icon i {
        font-size: 1.75rem;
    }
    
    .contact-form-card,
    .contact-map-card {
        padding: 25px;
    }
    
    .contact-cta {
        padding: 60px 30px;
    }
    
    .contact-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 60px 0 40px;
    }
    
    .contact-quick-link {
        padding: 12px;
    }
    
    .contact-quick-link i {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .contact-quick-link span {
        font-size: 0.9rem;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .contact-info-icon i {
        font-size: 1.5rem;
    }
    
    .contact-form-card,
    .contact-map-card {
        padding: 20px;
    }
    
    .contact-form .form-control,
    .contact-form .form-select {
        padding: 10px 12px;
    }
    
    .contact-social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .accordion-button {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 15px 20px;
    }
    
    .contact-cta {
        padding: 40px 20px;
    }
    
    .contact-cta h2 {
        font-size: 1.6rem;
    }
    
    .contact-cta p {
        font-size: 1rem;
    }
    
    .contact-cta-btn,
    .contact-cta-btn-outline {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 10px;
    }
}