:root {
    --main-color: #000000;
    --sec-color: #f29e02;
    --white-color: #fff;
    --dark-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --main-transition: 0.4s;
}
   .whatsapp-icon-link, .phone-icon-link {
        position: fixed;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        color: white;
        font-size: 28px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }
    
    .whatsapp-icon-link {
        right: 20px;
        bottom: 20px;
        background: linear-gradient(135deg, #25D366, #128C7E);
    }
    
    .phone-icon-link {
        right: 20px;
        bottom: 100px;
        background: linear-gradient(135deg, #34b7f1, #007ab9);
    }
    
    .whatsapp-icon-link:hover, .phone-icon-link:hover {
        transform: scale(1.1);
    }
/* Font Display Optimization */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-solid-900.woff2') format('woff2');
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-brands-400.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    direction: rtl;
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-weight: 400;
    font-family: 'Poppins', serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;
}

a {
    text-decoration: none !important;
}

ul {
    list-style: none !important;
}

/* Main Title */
.main-title {
    margin: 40px 0;
    position: relative;
    text-align: center;
}

.main-title h1,
.main-title h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--sec-color);
    display: inline-block;
    padding: 0 20px;
    position: relative;
}

.main-title .shape {
    position: absolute;
    left: 50%;
    background-color: var(--sec-color);
    height: 4px;
    width: 300px;
    transform: translateX(-50%);
    bottom: -20px;
}

.main-title .shape::before,
.main-title .shape::after {
    content: "";
    display: block;
    height: 4px;
    background-color: var(--sec-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.main-title .shape::before {
    width: 200px;
    bottom: -15px;
}

.main-title .shape::after {
    width: 100px;
    bottom: -30px;
}

/* Header */
.header {
    background: black;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all var(--main-transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section {
    flex-shrink: 0;
    order: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: transform var(--main-transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 100%;
    height: 55px;
    border-radius: 8px;
    object-fit: cover;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform var(--main-transition);
}

.logo:hover .logo-img {
    transform: rotate(5deg);
}

.header-spacer {
    flex: 1;
}

.nav-desktop {
    flex-shrink: 0;
    order: -1;
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    margin-bottom: 0 !important;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item.user-item {
    margin-right: 0;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem !important;
    color: var(--white-color) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--main-transition);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sec-color), transparent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--main-transition);
}

.nav-link:hover {
    background-color: rgba(142, 176, 77, 0.15);
    color: var(--sec-color) !important;
}

.nav-link:hover::before {
    transform: scaleX(1);
}

.user-btn {
    display: none;
    align-items: center;
    gap: 0.8rem;
    background: var(--sec-color);
    border: 2px solid var(--sec-color);
    color: var(--white-color);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--main-transition);
    position: relative;
    overflow: hidden;
    margin-right: 0;
}

.user-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sec-color), transparent);
    opacity: 0;
    transition: opacity var(--main-transition);
    z-index: -1;
}

.user-btn:hover {
    border-color: var(--sec-color);
    background: rgba(142, 176, 77, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(142, 176, 77, 0.3);
}

.user-btn:hover::before {
    opacity: 0.1;
}

.user-name {
    font-weight: 600;
    white-space: nowrap;
}

.dropdown-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--main-transition);
    flex-shrink: 0;
}

.user-btn.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--main-transition);
    z-index: 1000;
    overflow: hidden;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    color: #333;
    text-decoration: none;
    transition: all var(--main-transition);
    border-right: 3px solid transparent;
}

.dropdown-item svg {
    width: 20px;
    height: 20px;
    color: var(--main-color);
    transition: color var(--main-transition);
    flex-shrink: 0;
}

.dropdown-item:hover {
    background-color: var(--dark-bg);
    border-right-color: var(--sec-color);
    padding-right: 1.5rem;
}

.dropdown-item:hover svg {
    color: var(--sec-color);
}

.dropdown-divider {
    margin: 0.5rem 0;
    border: none;
    border-top: 1px solid var(--border-color);
}

.dropdown-item.logout {
    color: #e74c3c;
}

.dropdown-item.logout svg {
    color: #e74c3c;
}

.dropdown-item.logout:hover {
    background-color: rgba(231, 76, 60, 0.1);
}

/* ==================== Mobile Header ==================== */

.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    transition: all var(--main-transition);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--sec-color);
    border-radius: 2px;
    transition: all var(--main-transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-logo .logo-img {
    width: 100%;
    height: 40px;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--main-color);
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: right var(--main-transition);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h3 {
    color: var(--white-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    color: var(--white-color);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--main-transition);
}

.close-btn:hover {
    transform: rotate(90deg);
    color: var(--sec-color);
}

.close-btn svg {
    width: 24px;
    height: 24px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    flex: 1;
}

.sidebar-link {
    padding: 1rem 1.5rem;
    color: var(--white-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--main-transition);
    position: relative;
    border-right: 3px solid transparent;
    display: block;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--sec-color), transparent);
    transition: height var(--main-transition);
}

.sidebar-link:hover {
    background-color: rgba(142, 176, 77, 0.15);
    padding-right: 2rem;
    color: var(--sec-color);
}

.sidebar-link:hover::before {
    height: 100%;
}

.sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.sidebar-user-btn,
.sidebar-logout-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--main-transition);
}

.sidebar-user-btn:hover {
    background: rgba(142, 176, 77, 0.25);
    border-color: var(--sec-color);
    transform: translateX(-5px);
}

.sidebar-logout-btn:hover {
    background: rgba(231, 76, 60, 0.2);
    border-color: #e74c3c;
    color: #e74c3c;
}

.sidebar-user-btn svg,
.sidebar-logout-btn svg {
    width: 20px;
    height: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes wordReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes imageFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}


@media (min-width: 768px) {
    .services-section .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-desktop {
        display: flex;
    }

    .user-btn {
        display: flex;
    }

    .mobile-header {
        display: none !important;
    }

    .menu-toggle,
    .sidebar,
    .overlay {
        display: none !important;
    }

    .header-container {
        padding: 1rem 2rem;
    }

    .nav-link {
        padding: 0.8rem 1.2rem;
    }
}


@media (max-width: 767px) {
    .header-container {
        display: none;
    }

    .mobile-header {
        display: flex;
    }
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('../imgs/slide2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero .hero-header {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    background: rgba(15, 15, 15, 0.477);
    border: 2px solid var(--sec-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.hero .hero-title {
    text-align: center;
}

.hero .hero-title h1 {
    font-size: 2rem;
    color: var(--sec-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.hero-subtitle {
    color: var(--white-color);
}

.hero .services-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    padding: 12px;
    background: rgba(242, 158, 2, 0.1);
    border-radius: 8px;
    border-right: 3px solid var(--sec-color);
    border-left: 3px solid var(--sec-color);
}

.hero .service-item {
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 600;
    padding: 6px 15px;
}

.hero .content-box {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    background: rgba(15, 15, 15, 0.477);
    border-radius: 10px;
    padding: 30px;
    margin: 25px 0;
    backdrop-filter: blur(5px);
}

.hero .content-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 30px;
}

.hero .content-text .highlight {
    color: var(--sec-color);
    font-weight: 600;
}


.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.contact-btn {
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--main-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    text-decoration: none;
}

.btn-phone {
    background: linear-gradient(135deg, var(--sec-color), #ffcc00);
    color: var(--main-color);
}

.btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 158, 2, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.hero .service-item {
    transition: var(--main-transition);
}

.hero .service-item:hover {
    color: var(--sec-color);
}

.hero .contact-btn i {
    transition: var(--main-transition);
}

.hero .contact-btn:hover i {
    transform: scale(1.1);
}

.hero .hero-header,
.hero .content-box {
    transition: var(--main-transition);
}

.hero .hero-header:hover,
.hero .content-box:hover {
    border-color: #ffcc00;
}

/* Contact */
.contact {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    padding: 20px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact .info-card {
    background: #000000;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--main-transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    color: var(--white-color);
}

.contact .info-card:hover {
    transform: translateY(-10px);
    background: #111111;
    border-color: var(--sec-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact .info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 158, 2, 0.12), transparent);
    transition: var(--main-transition);
}

.contact .info-card:hover::before {
    left: 100%;
}

.contact .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--sec-color), #ffcc00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: var(--main-color);
    box-shadow: 0 5px 15px rgba(242, 158, 2, 0.3);
}

.contact .card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--sec-color);
}

.contact .card-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact .card-link {
    color: var(--sec-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--main-transition);
}

.contact .card-link:hover {
    color: #ffcc00;
    gap: 12px;
}

.contact .social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.contact .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #495057;
    font-size: 20px;
    transition: var(--main-transition);
    text-decoration: none;
    box-shadow: var(--shadow);
}

.contact .social-link:hover {
    background: var(--sec-color);
    color: var(--main-color);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 5px 15px rgba(242, 158, 2, 0.4);
}

.contact .contact-form-container {
    background: #000000;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    color: var(--white-color);
}

.contact .contact-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 158, 2, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.contact .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact .form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--sec-color);
}

.contact .form-header p {
    color: var(--white-color);
}

.contact .contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact .input-group {
    position: relative;
}

.contact .input-group input,
.contact .input-group textarea,
.contact .input-group select {
    width: 100%;
    padding: 18px 20px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    font-size: 16px;
    color: var(--main-color);
    transition: var(--main-transition);
    resize: vertical;
}

.contact .input-group select {
    appearance: none;
    cursor: pointer;
}

.contact .input-group textarea {
    min-height: 150px;
}

.contact .input-group input:focus,
.contact .input-group textarea:focus,
.contact .input-group select:focus {
    outline: none;
    border-color: var(--sec-color);
    background: #fffdf7;
    box-shadow: 0 0 0 3px rgba(242, 158, 2, 0.25);
}

.contact .input-group label {
    position: absolute;
    right: 20px;
    top: 18px;
    color: #6c757d;
    transition: var(--main-transition);
    pointer-events: none;
    background: transparent;
    padding: 0 4px;
}

.contact .input-group input:focus+label,
.contact .input-group textarea:focus+label,
.contact .input-group select:focus+label,
.contact .input-group input:not(:placeholder-shown)+label,
.contact .input-group textarea:not(:placeholder-shown)+label,
.contact .input-group select:not([value=""])+label {
    top: -10px;
    font-size: 14px;
    color: #ffffff;
    background: var(--sec-color);
    border-radius: 999px !important;
    padding: 2px 10px;
}

.contact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .contact .form-row {
        grid-template-columns: 1fr;
    }
}

.contact .submit-btn {
    padding: 18px 40px;
    background: linear-gradient(90deg, var(--sec-color), #ffcc00);
    border: none;
    border-radius: 12px !important;
    color: var(--main-color);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--main-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(242, 158, 2, 0.3);
}

.contact .submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(242, 158, 2, 0.5);
    letter-spacing: 1px;
}

.contact .submit-btn:active {
    transform: translateY(0);
}

.contact .message-status {
    padding: 15px 20px;
    border-radius: 10px !important;
    margin-bottom: 20px;
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.contact .message-status.success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.contact .message-status.error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

/* Footer */
footer {
    font-family: serif;
    text-align: right;
    position: relative;
    padding: 40px 0px 0 0px;
    color: #fff;
    background-color: var(--main-color);
}

.footer .angles li a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    transition: all 0.3s ease;
}

.footer .angles li a:hover {
    color: var(--sec-color);
    padding-right: 5px;
}

.footer .develop-by {
    width: 40px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

footer a {
    color: #fff;
}

.ul-title,
.footer-logo {
    text-align: right;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 60px !important;
}

.footer-logo img {
    max-width: 50%;
    margin-right: auto;
    margin-left: 0;
}

footer ul {
    margin-top: 30px;
    padding-left: 20px;
    list-style-position: inside;
}

footer ul li a {
    position: relative;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li i {
    margin-left: 7px;
    color: var(--sec-color);
}

.footer .angles li::before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--sec-color);
    content: "\f100";
}

footer .angles li a {
    display: inline-block;
    text-align: right;
    margin-right: 30px;
}

footer .mail {
    letter-spacing: normal;
    font-size: .9rem;
}

.ul,
footer ul span,
footer ul li a {
    line-height: 2;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 600;
}

.copyright a {
    margin-left: 5px;
}

.copyright {
    border-top: 1px solid var(--sec-color);
    padding: 10px 0 1px !important;
    background-color: black;
    width: 100% !important;
}

.copyright p,
.copyright a {
    color: #fff;
    line-height: 2;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 600;
}

.develop-by .innovo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* Articles */
.articles-header {
    position: relative;
    padding: 20px 0;
    text-align: center;
}

.articles-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 70px auto 40px !important;
    z-index: 10;
}

.search-box {
    width: 100%;
    padding: 20px 60px 20px 30px;
    background: var(--white-color);
    backdrop-filter: blur(10px);
    border: 2px solid var(--main-color);
    border-radius: 50px;
    font-size: 1.1rem;
    color: var(--main-color);
    transition: var(--main-transition);
    box-shadow: var(--shadow);
}

.search-box:focus {
    outline: none;
    border-color: var(--sec-color);
    box-shadow: 0 0 0 3px rgba(242, 158, 2, 0.2), 0 5px 20px rgba(242, 158, 2, 0.1);
}

.search-box::placeholder {
    color: var(--main-color);
}

.search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sec-color);
    font-size: 1.3rem;
    transition: var(--main-transition);
}

.search-box:focus+.search-icon {
    color: #ffcc00;
    transform: translateY(-50%) scale(1.1);
}

.articles-container .articles-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.articles-container .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.articles-container .article-card {
    background: var(--main-color);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--main-transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: articlesFadeInUp 0.6s ease-out;
}

@keyframes articlesFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.articles-container .article-card:hover {
    transform: translateY(-10px);
    border-color: var(--sec-color);
    box-shadow: 0 15px 30px rgba(242, 158, 2, 0.2);
}

.articles-container .article-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 158, 2, 0.1), transparent);
    transition: var(--main-transition);
}

.articles-container .article-card:hover::before {
    right: 100%;
}

.articles-container .article-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.articles-container .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--main-transition);
}

.articles-container .article-card:hover .article-image img {
    transform: scale(1.05);
}

.articles-container .article-category {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    color: var(--sec-color);
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid rgba(242, 158, 2, 0.3);
}

.articles-container .article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.articles-container .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.articles-container .article-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--sec-color);
}

.articles-container .article-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white-color);
    line-height: 1.4;
    transition: var(--main-transition);
    cursor: pointer;
}

.articles-container .article-title:hover {
    color: var(--sec-color);
}

.articles-container .article-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.articles-container .article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.articles-container .read-more-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--sec-color), #ffcc00);
    border: none;
    border-radius: 25px;
    color: var(--main-color);
    font-weight: bold;
    cursor: pointer;
    transition: var(--main-transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.articles-container .read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 158, 2, 0.4);
    gap: 12px;
}

.articles-container .load-more-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px 0;
    position: relative;
}

.articles-container .load-more-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 158, 2, 0.5), transparent);
}

.articles-container .load-more-btn {
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--sec-color), #ffcc00);
    border: none;
    border-radius: 50px;
    color: var(--main-color);
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--main-transition);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(242, 158, 2, 0.3);
    position: relative;
    overflow: hidden;
}

.articles-container .load-more-btn:hover:not(:disabled) {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(242, 158, 2, 0.5);
    letter-spacing: 1px;
}

.articles-container .load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.articles-container .load-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
}

.articles-container .load-more-btn:hover::before {
    width: 300px;
    height: 300px;
}

.articles-container .no-more-articles {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: inline-block;
}

.articles-container .no-results {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.articles-container .no-results-icon {
    font-size: 5rem;
    color: var(--sec-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.articles-container .no-results h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--sec-color);
}

.articles-container .no-results p {
    color: var(--main-color);
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .articles-container .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 992px) {
    .articles-header h1 {
        font-size: 3rem;
    }

    .articles-container .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
}

/* Single Show */
.service-page {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

.service-page .service-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 1024px) {
    .service-page .service-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.service-page .main-content {
    background: var(--white-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.service-page .service-header-content {
    display: block;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--sec-color);
}

.service-page .service-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.service-page .service-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    transition: var(--main-transition);
    display: block;
}

.service-page .service-image:hover img {
    transform: scale(1.05);
}

.service-page .service-info {
    width: 100%;
}

.service-page .service-title {
    font-size: 2rem;
    color: var(--sec-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-page .service-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.service-page .content-section {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-page .section-title {
    font-size: 1.5rem;
    color: var(--main-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sec-color);
    position: relative;
}

.service-page .content-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.service-page .toc-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.service-page .toc-container {
    background: var(--white-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    border-right: 3px solid var(--sec-color);
}

.service-page .toc-title {
    font-size: 1.2rem;
    color: var(--main-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-page .toc-title i {
    color: var(--sec-color);
}

.service-page .toc-list {
    list-style: none;
}

.service-page .toc-item {
    margin-bottom: 10px;
}

.service-page .toc-link {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 6px;
    transition: var(--main-transition);
    font-size: 0.95rem;
}

.service-page .toc-link:hover {
    background: rgba(242, 158, 2, 0.1);
    color: var(--main-color);
    padding-right: 20px;
}

.service-page .toc-link.active {
    background: var(--sec-color);
    color: var(--white-color);
    font-weight: 600;
}

.service-page .related-services {
    background: var(--white-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.service-page .related-title {
    font-size: 1.2rem;
    color: var(--main-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-page .related-title i {
    color: var(--sec-color);
}

.service-page .related-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-page .related-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(242, 158, 2, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(242, 158, 2, 0.1);
    transition: var(--main-transition);
    text-decoration: none;
    color: inherit;
}

.service-page .related-item:hover {
    transform: translateX(-5px);
    border-color: var(--sec-color);
    box-shadow: var(--shadow);
}

.service-page .related-image {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-page .related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page .related-content h4 {
    color: var(--main-color);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.service-page .related-content p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-page .gallery-section {
    background: var(--white-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
}

.service-page .gallery-header {
    text-align: center;
    margin-bottom: 30px;
}

.service-page .gallery-title {
    font-size: 1.8rem;
    color: var(--main-color);
    margin-bottom: 10px;
}

.service-page .gallery-subtitle {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}


.service-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 180px;
    gap: 18px;
    margin-bottom: 30px;
}

.service-page .gallery-grid .grid-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    transform-origin: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-page .gallery-grid .grid-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(242, 158, 2, 0.35), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.service-page .gallery-grid .grid-item:hover {
    transform: translateY(-6px) scale(1.03) rotate(-0.5deg);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.service-page .gallery-grid .grid-item:hover::before {
    opacity: 1;
}

@media (max-width: 1024px) {
    .service-page .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: 170px;
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .service-page .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 160px;
        gap: 8px;
    }
}

.service-page .grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: #111;
}

.service-page .grid-item:hover {
    z-index: 10;
}

.service-page .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--main-transition);
}

.service-page .grid-item:hover img {
    transform: scale(1.1);
}

.service-page .lightbox-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.service-page .lightbox-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
}

.service-page .lightbox-img {
    width: 100%;
    height: 70vh;
    object-fit: contain;
    border-radius: 10px;
}

.service-page .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(242, 158, 2, 0.8);
    color: var(--white-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--main-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-page .lightbox-nav:hover {
    background: var(--sec-color);
    transform: translateY(-50%) scale(1.1);
}

.service-page .lightbox-prev {
    right: -50px;
}

.service-page .lightbox-next {
    left: -50px;
}

.service-page .lightbox-close {
    position: absolute;
    top: -50px;
    left: 0;
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--main-transition);
}

.service-page .lightbox-close:hover {
    color: var(--sec-color);
    transform: rotate(90deg);
}

.service-page .lightbox-counter {
    position: absolute;
    bottom: -40px;
    right: 50%;
    transform: translateX(50%);
    color: var(--white-color);
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
}

@media (max-width: 1200px) {
    .service-page {
        max-width: 100%;
        padding: 15px;
    }

    .service-page .service-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 15px;
        min-height: 90vh;
    }

    .hero .hero-title h1 {
        font-size: 1.6rem;
    }

    .hero .hero-title h1 span {
        font-size: 1.5rem;
    }

    .hero .services-list {
        gap: 8px;
        padding: 10px;
    }

    .hero .service-item {
        font-size: 0.9rem;
        padding: 5px 12px;
    }

    .hero .content-box {
        padding: 20px;
        margin: 20px 0;
    }

    .hero .content-text {
        font-size: 1rem;
        line-height: 1.6;
    }


    .contact-buttons {
        gap: 15px;
    }


    .contact-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 160px;
    }

    .hero .hero-header {
        padding: 20px;
    }

    .contact .contact-form-container,
    .contact .info-card {
        padding: 25px;
    }

    .contact .form-header h2 {
        font-size: 2rem;
    }

    .about-images {
        column-count: 1;
    }

    .gallery-grid {
        column-count: 2;
    }

    .stat-item h3 {
        font-size: 20px;
    }

    .stat-item img {
        width: 50px;
        height: 50px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .articles-header {
        padding: 30px 0;
    }

    .articles-header h1 {
        font-size: 2.5rem;
    }

    .articles-header p {
        font-size: 1.1rem;
    }

    .search-box {
        padding: 18px 50px 18px 25px;
        font-size: 1rem;
    }

    .articles-container .articles-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .service-page {
        margin: 15px auto;
    }

    .service-page .main-content {
        padding: 20px;
    }

    .service-page .service-header-content {
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    .service-page .service-title {
        font-size: 1.5rem;
    }

    .service-page .service-description {
        font-size: 1rem;
    }

    .service-page .section-title {
        font-size: 1.3rem;
    }

    .service-page .content-text {
        font-size: 1rem;
    }

    .service-page .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-page .gallery-section {
        padding: 20px;
        margin-top: 30px;
    }

    .service-page .gallery-title {
        font-size: 1.5rem;
    }

    .service-page .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .service-page .lightbox-prev {
        right: -40px;
    }

    .service-page .lightbox-next {
        left: -40px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        column-count: 1;
    }

    .hero .hero-title h1 {
        font-size: 1.4rem;
    }

    .hero .hero-title h1 span {
        font-size: 1.3rem;
    }

    .hero .service-item {
        font-size: 0.85rem;
    }

    .hero .contact-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 140px;
    }

    .hero .content-text {
        font-size: 0.95rem;
    }

    .hero .services-list {
        flex-direction: column;
        align-items: center;
    }

    .articles-header h1 {
        font-size: 2rem;
    }

    .articles-header p {
        font-size: 1rem;
    }

    .search-container {
        margin-bottom: 30px;
    }

    .articles-container .article-card {
        border-radius: 15px;
    }

    .articles-container .article-content {
        padding: 20px;
    }

    .articles-container .article-title {
        font-size: 1.3rem;
    }

    .articles-container .load-more-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .service-page .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 100px;
        gap: 4px;
    }

    .service-page .service-layout {
        gap: 25px;
    }

    .service-page .toc-container,
    .service-page .related-services {
        padding: 20px;
    }

    .service-page .gallery-header {
        margin-bottom: 20px;
    }

    .service-page .gallery-title {
        font-size: 1.3rem;
    }

    .service-page .lightbox-nav {
        position: fixed;
        bottom: 20px;
        top: auto;
        transform: none;
    }

    .service-page .lightbox-prev {
        right: auto;
        left: 20px;
    }

    .service-page .lightbox-next {
        left: auto;
        right: 20px;
    }
}

.service-page .service-image {
    position: relative;
    overflow: hidden;
}

.service-page .service-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 70%, rgba(242, 158, 2, 0.1));
    opacity: 0;
    transition: var(--main-transition);
}

.service-page .service-image:hover::after {
    opacity: 1;
}


.contact .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 100px;
}

@media (max-width: 900px) {
    .contact .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Services section */
.services-section {
    background-color: var(--dark-bg);
    padding: 40px 0;
}

.services-section .container {
    margin-top: 5rem;
}

.services-section .service-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.services-section .service-item {
    position: relative;
    text-align: center;
    transition: var(--main-transition);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-section .service-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    border: 3px solid transparent;
    transition: var(--main-transition);
    box-shadow: var(--shadow);
}

.services-section .service-item:hover img {
    transform: scale(1.03);
    border-color: var(--sec-color);
    box-shadow: var(--shadow-lg);
}

.services-section .service-item h3 {
    font-size: 1.4rem;
    color: var(--main-color);
    margin: 20px 0 15px;
    font-weight: 600;
}

.str {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: 2.1rem;
    padding: 0;
    position: static;
}

.str-p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: 4.5rem;
    padding: 0;
    margin: 0;
}

.services-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.services-btns a {
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--main-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
}

.services-btns a:first-child {
    background: rgba(242, 158, 2, 0.1);
    color: var(--sec-color);
    border: 2px solid var(--sec-color);
}

.services-btns a:first-child:hover {
    background: var(--sec-color);
    transform: translateY(-3px);
    color: var(--main-color);
}

.services-btns a:last-child {
    background: linear-gradient(135deg, var(--sec-color), #ffcc00);
    color: var(--main-color);
    border: 2px solid transparent;
}

.services-btns a:last-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 158, 2, 0.3);
    background: linear-gradient(135deg, #ffcc00, var(--sec-color));
}

.services-btns a i {
    transition: var(--main-transition);
}

.services-btns a:hover i {
    transform: translateX(-5px);
}

@media (min-width: 992px) {
    .services-section .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-btns {
        gap: 20px;
    }

    .services-btns a {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

.services-section .service-item:nth-child(1) {
    animation-delay: 0.1s;
}

.services-section .service-item:nth-child(2) {
    animation-delay: 0.2s;
}

.services-section .service-item:nth-child(3) {
    animation-delay: 0.3s;
}

.services-section .service-item:nth-child(4) {
    animation-delay: 0.4s;
}

.services-section .service-item:nth-child(5) {
    animation-delay: 0.5s;
}

.services-section .service-item:nth-child(6) {
    animation-delay: 0.6s;
}


.features-section {
    background-color: var(--white-color);
    padding: 10px 20px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 5rem auto 0 !important;
}

.feature-item {
    padding: 15px 24px;
    text-align: center;
    transition: var(--main-transition);
    position: relative;
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--sec-color);
    margin-bottom: 10px;
}

.feature-description {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* status */
.stats-section {
    background-color: var(--dark-bg);
    padding: 60px 20px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    background: var(--white-color);
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.stat-item:hover img {
    transform: scale(1.1);
}

.stat-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 14px;
    color: #555;
}

/* Gallery */
.gallery-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    column-count: 4;
    column-gap: 16px;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .gallery-grid {
        column-count: 3;
    }
}


/* About Section */
.about-section {
    padding: 60px 20px;
    background-color: var(--white-color);
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.about-info {
    flex: 1 1 50%;
    text-align: right;
}

.about-info h2 {
    font-size: 32px;
    color: var(--sec-color);
    margin-bottom: 20px;
}

.about-info p {
    font-size: 16px;
    color: var(--main-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-images {
    flex: 1 1 45%;
    column-count: 3;
    column-gap: 16px;
}

.about-images .gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.about-images .gallery-item img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.about-images .gallery-item img:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .about-container {
        flex-direction: column-reverse;
    }

    .about-images {
        column-count: 2;
    }
}


.cta-section {
    padding: 60px 20px;
    background-color: var(--white-color);
    text-align: center;
    direction: rtl;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 32px;
    color: var(--sec-color);
    margin-bottom: 16px;
    line-height: 1.4;
}

.cta-section p {
    font-size: 18px;
    color: var(--main-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 14px 40px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    display: inline-block;
    color: #fff;
    overflow: hidden;
    background-size: 400% 400%;
    transition: all 0.4s ease;
    animation: pulseBtn 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-call {
    background-color: var(--sec-color) !important;
}

@keyframes pulseBtn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.cta-buttons .btn:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}




/* FAQ */
.faq-page .faq-section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding: 20px;
}

.faq-page .faq-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.faq-page .faq-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--main-transition);
    border: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
}

.faq-page .faq-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.faq-page .faq-card:hover .faq-icon {
    transform: rotate(15deg) scale(1.1);
}

.faq-page .faq-card:nth-child(even):hover .faq-icon {
    color: var(--sec-color);
}

.faq-page .faq-card:nth-child(odd):hover .faq-icon {
    color: var(--main-color);
}

.faq-page .faq-card:nth-child(even) .faq-header {
    background: linear-gradient(135deg, #000000, #333333);
}

.faq-page .faq-card:nth-child(odd) .faq-header {
    background: linear-gradient(135deg, #f29e02, #ffb733);
}

.faq-page .faq-header {
    padding: 20px;
    display: flex;
    align-items: center;
    color: var(--white-color);
}

.faq-page .faq-icon {
    font-size: 2rem;
    margin-left: 15px;
    transition: all var(--main-transition);
}

.faq-page .faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    flex: 1;
}

.faq-page .faq-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--main-transition);
    font-size: 1.2rem;
}

.faq-page .faq-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.faq-page .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--main-transition);
    opacity: 0;
}

.faq-page .faq-card.active .faq-answer {
    padding: 20px;
    max-height: 500px;
    opacity: 1;
}

.faq-page .faq-card.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-page .search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.faq-page .search-box {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all var(--main-transition);
    outline: none;
    padding-left: 60px;
    box-shadow: var(--shadow);
}

.faq-page .search-box:focus {
    border-color: var(--sec-color);
    box-shadow: 0 0 0 3px rgba(242, 158, 2, 0.2);
}

.faq-page .search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--sec-color);
}

.faq-page .category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.faq-page .category-btn {
    padding: 10px 20px;
    background: var(--white-color);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--main-transition);
    font-weight: 600;
    color: var(--main-color);
}

.faq-page .category-btn:hover,
.faq-page .category-btn.active {
    background: var(--sec-color);
    color: var(--white-color);
    border-color: var(--sec-color);
}

.faq-page .contact-section {
    background: linear-gradient(135deg, var(--main-color), #333);
    color: var(--white-color);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 50px;
    box-shadow: var(--shadow-lg);
}

.faq-page .contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white-color);
}

.faq-page .contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.faq-page .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--main-transition);
    border: none;
    cursor: pointer;
}

.faq-page .whatsapp-btn {
    background: #25D366;
    color: white;
}

.faq-page .whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.faq-page .phone-btn {
    background: var(--sec-color);
    color: var(--white-color);
}

.faq-page .phone-btn:hover {
    background: #d68a00;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 158, 2, 0.3);
}

.faq-page .floating-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.faq-page .floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--sec-color);
    opacity: 0.1;
    border-radius: 50%;
    animation: FaqFaloat 15s infinite linear;
}

.faq-page .floating-element:nth-child(2) {
    background: var(--main-color);
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-duration: 20s;
}

.faq-page .floating-element:nth-child(3) {
    width: 30px;
    height: 30px;
    top: 60%;
    left: 85%;
    animation-duration: 12s;
}

@keyframes FaqFaloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-50px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}