:root {
    --primary-color: #01003a;
    --secondary-color: #064d81;
    --accent1-color: #c9bca6;
    --light-color: #c9bca6;
    --accent2-color: #064d81;
    --accent3-color: #c9bca6;
    --dark-color: #282420;
    --gray-color: #282420;
    --black-color: #282420;
    --white-color: #ffffff;
    --light-gray: #f8f9fa;
    --border-radius: 15px;
    --border-radius-pill: 50px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--black-color);
    background-color: var(--white-color);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
}

html {
    scroll-behavior: smooth;
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #01003a 0%, #064d81 50%, #282420 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-logo {
    animation: logoFloat 3s ease-in-out infinite;
}

.loader-img {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(255, 255, 255, 0.1));
}

.loader-spinner {
    position: relative;
    width: 60px;
    height: 60px;
}

.spinner {
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent1-color);
}

a:hover {
    color: var(--accent2-color);
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
    color: var(--white-color);
    border: none;
    border-radius: var(--border-radius-pill);
    padding: 10px 25px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(6, 77, 129, 0.3);
    color: var(--white-color);
}

.btn-outline-custom {
    background: transparent;
    color: var(--accent1-color);
    border: 2px solid var(--accent1-color);
    border-radius: var(--border-radius-pill);
    padding: 10px 25px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: var(--accent1-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Navbar */
.navbar-container {
    max-width: 90%;
    margin: 30px auto 0;
    border-radius: var(--border-radius-pill);
    background-color: var(--white-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    padding: 0;
    transition: var(--transition);
    z-index: 1000;
    position: sticky;
    top: 20px;
}

.navbar-container.scrolled {
    margin-top: 0;
    border-radius: 0;
    max-width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-custom {
    padding: 10px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    max-width: 150px;
    object-fit: contain;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    color: var(--white-color);
}

.navbar-nav {
    flex-grow: 1;
    justify-content: center;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 12px;
    padding: 8px 0 !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent2-color));
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 5px;
    border-radius: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2897, 95, 237, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Dropdowns */
.dropdown-item-parent {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    animation: slideDown 0.3s ease-out;
}

.dropdown-menu.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f9f9f9;
    color: var(--primary-color);
    padding-right: 20px;
}

.dropdown-item i {
    margin-left: 10px;
    color: var(--secondary-color);
    font-size: 14px;
}

.dropdown-divider {
    height: 1px;
    background-color: #e9ecef;
    margin: 0.5rem 0;
}

.dropdown-item-parent .nav-link::after {
    content: '▼';
    font-size: 10px;
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.dropdown-item-parent .dropdown-menu.show ~ .nav-link::after {
    transform: rotate(-180deg);
}

/* Page Header */
.page-header {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    padding: 120px 0 80px;
    margin-top: -30px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
      background:
    linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    );
    pointer-events: none;
}

.page-header > * {
    position: relative;
    z-index: 1;
}

/* About Page Header */
.page-header.about-page {
    background-image: url('../images/4187.jpg');
}

/* Services Page Header */
.page-header.services-page {
    background-image: url('../images/image\ \(90\).png');
}

/* Portfolio Page Header */
.page-header.portfolio-page {
    background-image: url('../images/image\ \(91\).png');
}

/* Reviews Page Header */
.page-header.reviews-page {
    background-image: url('../images/image\ \(92\).png');
}

.page-header.partners-page {
    background-image: url('../images/image\ \(101\).png');
}
/* Contact Page Header */
.page-header.contact-page {
    background-image: url('../images/image\ \(103\).png');
}

.page-header.products-page {
    background-image: url('../images/4187.jpg');
}


.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item.active {
    color: var(--white-color);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Animated Shapes */
.animated-shape {
    position: absolute;
    opacity: 0.12;
    pointer-events: none;
}

/* Stars */
.shape-star-1 {
    width: 50px;
    height: 50px;
    top: 15%;
    left: 8%;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    background: var(--accent3-color);
    animation: float 7s ease-in-out infinite;
}

.shape-star-2 {
    width: 40px;
    height: 40px;
    top: 50%;
    right: 8%;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    background: var(--accent2-color);
    animation: spin 8s linear infinite;
}

.shape-star-3 {
    width: 35px;
    height: 35px;
    bottom: 15%;
    left: 12%;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    background: var(--primary-color);
    animation: pulse 6s ease-in-out infinite;
}

/* Hexagon */
.shape-hexagon-1 {
    width: 70px;
    height: 70px;
    top: 35%;
    right: 15%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--accent1-color);
    animation: rotate 10s linear infinite;
}

/* Pentagon */
.shape-pentagon-1 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    right: 10%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    background: var(--accent3-color);
    animation: float-reverse 9s ease-in-out infinite;
}

/* Diamond */
.shape-diamond-1 {
    width: 50px;
    height: 50px;
    top: 60%;
    left: 5%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: var(--accent2-color);
    animation: rotate-reverse 7s linear infinite;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-35px) translateX(15px);
    }
}

@keyframes float-reverse {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(35px) translateX(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.25) rotate(10deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-reverse {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Floating Social Media Icons */
.hero-social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon-float {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 8px 20px rgba(1, 0, 58, 0.15);
    position: relative;
}

.social-icon-float:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 30px rgba(1, 0, 58, 0.25);
}

/* Hero Image Gallery */
.hero-image-gallery {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.main-image:hover img {
    transform: scale(1.05);
}

.overlay-image {
    position: absolute;
    top: -30px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border: 5px solid white;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.overlay-image:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.overlay-image:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 0, 58, 0.2), rgba(6, 76, 127, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image:hover .gallery-overlay {
    opacity: 1;
}

.overlay-image:hover .gallery-overlay {
    opacity: 1;
}

/* Section Styles */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #c9bca6, transparent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Modern Service Cards */
.services-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Services Grid - Homepage */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Modern Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 188, 166, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.gallery-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(6, 77, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.modern-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    grid-auto-rows: 150px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    border-radius: 17px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent2-color) 100%);
    box-shadow: 0 8px 24px rgba(1, 0, 58, 0.12);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.gallery-item:hover {
    box-shadow: 0 20px 48px rgba(1, 0, 58, 0.2);
    transform: translateY(-8px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-lg {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery-item-md {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item-wide {
    grid-column: span 3;
    grid-row: span 1;
}

.gallery-item-sm {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 0, 58, 0.8) 0%, rgba(6, 77, 129, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white-color);
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--accent3-color);
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover .overlay-content i {
    transform: scale(1.2) rotate(-10deg);
}

.overlay-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .modern-gallery {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 130px;
        gap: 15px;
    }
    
    .gallery-item-lg {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-item-md {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item-sm {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 3rem 0;
    }

    .modern-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
        gap: 12px;
    }
    
    .gallery-item-lg {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-item-md,
    .gallery-item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item-sm {
        grid-column: span 1;
        grid-row: span 1;
    }

    .overlay-content i {
        font-size: 2rem;
    }

    .overlay-content h3 {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modern-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 140px;
        gap: 10px;
    }
    
    .gallery-item-lg,
    .gallery-item-md,
    .gallery-item-sm {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .overlay-content i {
        font-size: 2rem;
    }
    
    .overlay-content h3 {
        font-size: 1rem;
    }
}

.modern-service-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 4px solid #c9bca6;
}

.modern-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(1, 0, 58, 0.15);
    border-color: var(--accent3-color);
}

.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent2-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.modern-service-card:hover .service-image {
    transform: scale(1.1);
}

.service-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent2-color) 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-modern {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.modern-service-card:hover .service-icon-modern {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.service-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.service-description {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-cta {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-cta:hover {
    color: var(--accent2-color);
    gap: 12px;
}

/* Modern Review Cards */
.reviews-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 0;
}

.modern-review-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 5px solid var(--accent3-color);
}

.modern-review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(1, 0, 58, 0.12);
}

.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--gray-color);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.review-type {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin: 0;
}

/* Service Detail Cards */
.service-detail-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--primary-color);
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 5rem 0;
}

.modern-why-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    height: 100%;
    position: relative;
}

.modern-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent3-color), var(--accent2-color), var(--primary-color));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-why-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(1, 0, 58, 0.12);
}

.modern-why-card:hover::before {
    opacity: 1;
}

.why-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white-color);
    font-size: 2.2rem;
    box-shadow: 0 8px 20px rgba(1, 0, 58, 0.15);
    transition: all 0.3s ease;
}

.modern-why-card:hover .why-card-icon {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 12px 28px rgba(1, 0, 58, 0.2);
}

.why-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-card-description {
    color: var(--gray-color);
    line-height: 1.7;
    font-size: 0.95rem;
}
.stat-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-color);
    font-weight: 500;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background-image: url('../images/cta.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #c9bca6;
    border-bottom: 3px solid #c9bca6;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 0, 58, 0.85), rgba(6, 77, 129, 0.85));
    pointer-events: none;
}

.cta-section > .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #01003a 0%, #064d81 100%);
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.footer-brand h3 {
    color: var(--white-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand img {
    height: 50px;
    max-width: 150px;
    object-fit: contain;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(201, 188, 166, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent1-color);
    transition: var(--transition);
    border: 2px solid rgba(201, 188, 166, 0.4);
}

.social-link:hover {
    background-color: var(--accent1-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--accent1-color);
}

.footer-links h4 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent1-color);
    transform: translateX(-5px);
}

.footer-contact h4 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white-color);
}

/* About Page */
.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
    padding-right: 2rem;
}

.mission-vision-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(201, 188, 166, 0.2);
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 188, 166, 0.1) 0%, rgba(6, 77, 129, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mission-vision-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(1, 0, 58, 0.15), 0 0 30px rgba(201, 188, 166, 0.2);
    border-color: #c9bca6;
}

.mission-vision-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #064d81, #01003a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: 0 0 0 3px rgba(201, 188, 166, 0.3);
    transition: var(--transition);
    animation: iconFloat 3s ease-in-out infinite;
}

.mission-vision-card:hover .card-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(201, 188, 166, 0.4), 0 0 0 3px rgba(201, 188, 166, 0.3);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.mission-vision-card:hover .card-title {
    color: #064d81;
}

.card-text {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.mission-vision-card:hover .card-text {
    color: #282420;
}

.value-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white-color);
    font-size: 1.8rem;
}

.value-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.value-text {
    color: var(--gray-color);
}

.team-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.team-position {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    background-color: rgba(97, 95, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* Portfolio Page */
.portfolio-filter {
    margin-bottom: 2rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    margin: 0 5px 10px;
    border-radius: var(--border-radius-pill);
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.portfolio-item {
    margin-bottom: 2rem;
}

.portfolio-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid #c9bca6;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 0, 58, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white-color);
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-card:hover .overlay-content {
    transform: translateY(0);
}

.portfolio-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.portfolio-category {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin: 0 auto;
    transition: var(--transition);
}

.portfolio-link:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

.featured-project {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.featured-project-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.project-category {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.project-description {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-color);
}

.detail-item i {
    color: var(--primary-color);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background-color: rgba(97, 95, 237, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: var(--border-radius-pill);
    font-size: 0.9rem;
}

/* Reviews Page */
.review-stats {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stats-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-stars {
    color: #ffc107;
    font-size: 1.5rem;
}

.rating-text {
    color: var(--gray-color);
    margin-top: 0.5rem;
}

.rating-breakdown {
    margin-bottom: 1.5rem;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.rating-label {
    width: 60px;
    text-align: left;
}

.rating-bar {
    flex-grow: 1;
    height: 10px;
    background-color: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
}

.rating-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent2-color));
}

.rating-percent {
    width: 40px;
    text-align: right;
}

.review-highlights {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.highlights-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    flex-shrink: 0;
}

.highlight-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.highlight-content p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.review-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.review-date {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.review-rating {
    color: #ffc107;
}

.review-text {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
    font-style: italic;
}

.review-event {
    text-align: left;
}

.event-type {
    background-color: rgba(97, 95, 237, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: var(--border-radius-pill);
    font-size: 0.9rem;
    font-weight: 500;
}

.video-testimonial {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.video-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 225px;
    object-fit: cover;
    transition: var(--transition);
}

.video-testimonial:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
    cursor: pointer;
}

.video-testimonial:hover .play-button {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.video-client {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Contact Page */
.contact-info {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.info-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.info-text {
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-details p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.social-links-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-form-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-control,
.form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(97, 95, 237, 0.25);
}

.form-check {
    margin-bottom: 1.5rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(97, 95, 237, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(97, 95, 237, 0.25);
}

.accordion-button::after {
    left: auto;
    right: 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius) !important;
    overflow: hidden;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent2-color));
}

.process-step {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 3rem;
    text-align: right;
}

.process-step:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
    text-align: left;
}

.step-number {
    position: absolute;
    top: 0;
    right: calc(50% - 25px);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1;
}

.step-content {
    background-color: var(--white-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 90%;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.step-description {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .navbar-container {
        max-width: 95%;
    }
    
    .navbar-nav {
        margin-top: 20px;
    }
    
    .nav-link {
        margin: 5px 0;
    }
    
    .btn-primary-custom {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-timeline::before {
        right: 30px;
    }
    
    .process-step {
        padding-right: 0;
        padding-left: 80px;
        text-align: right;
    }
    
    .process-step:nth-child(even) {
        padding-left: 80px;
        text-align: right;
    }
    
    .step-number {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        margin-top: 10px;
    }
    
    body {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .overall-rating {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .rating-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .rating-label {
        width: auto;
    }
    
    .rating-bar {
        width: 100%;
    }
    
    .rating-percent {
        width: auto;
        text-align: right;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .project-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .detail-item {
        justify-content: flex-start;
    }
}

/* Portfolio Category Cards */
.portfolio-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.portfolio-category-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(1, 0, 58, 0.15);
}

.portfolio-category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.portfolio-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-category-card:hover .portfolio-category-image img {
    transform: scale(1.1);
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 3rem;
}

.portfolio-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 0, 58, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-category-card:hover .portfolio-category-overlay {
    opacity: 1;
}

.portfolio-category-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.portfolio-category-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.category-description {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.category-cta {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.category-cta:hover {
    color: var(--accent2-color);
    gap: 12px;
}

/* Service Price */
.service-price {
    background: rgba(150, 119, 88, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    margin: 1rem 0;
}

.price-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-unit {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-right: 5px;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading-spinner {
    border: 3px solid rgba(97, 95, 237, 0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Add these styles to your existing style.css */

/* Service Filters */
.service-filters {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.filter-btn-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius-pill);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    box-shadow: 0 5px 15px rgba(97, 95, 237, 0.3);
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

/* Detailed Service Card */
.detailed-service-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
}

.detailed-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(1, 0, 58, 0.15);
    border-color: var(--accent3-color);
}

.service-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: var(--border-radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.service-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detailed-service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(1, 0, 58, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.detailed-service-card:hover .service-card-image-overlay {
    opacity: 1;
}

.service-card-content {
    padding: 1.5rem;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(1, 0, 58, 0.2);
    transition: all 0.3s ease;
}

.detailed-service-card:hover .service-card-icon {
    transform: rotate(-10deg) scale(1.1);
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.service-card-description {
    color: var(--gray-color);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 1rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.detail-item i {
    color: var(--primary-color);
}

.service-price-tag {
    background: rgba(150, 119, 88, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-unit {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.service-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.btn-service-details {
    flex: 1;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-service-details:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-service-book {
    flex: 1;
    background: var(--primary-color);
    color: var(--white-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-service-book:hover {
    background: var(--accent2-color);
    border-color: var(--accent2-color);
    transform: translateY(-2px);
}

/* Loading States */
.loading-container {
    display: none;
    text-align: center;
    padding: 3rem;
}

.loading-container.active {
    display: block;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(97, 95, 237, 0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.no-results-icon {
    font-size: 3rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

/* Search and Sort */
.service-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2rem;
}

.service-search {
    flex: 1;
    min-width: 300px;
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-pill);
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(97, 95, 237, 0.1);
}

.service-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: var(--white-color);
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    cursor: pointer;
}

/* Process Steps */
.process-step-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.process-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(97, 95, 237, 0.3);
}

.process-step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.process-step-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-tools {
        flex-direction: column;
        align-items: stretch;
    }
    
    .service-search {
        min-width: 100%;
    }
    
    .service-card-actions {
        flex-direction: column;
    }
}

/* Add these to your existing style.css */

/* Portfolio Page Styles */
.portfolio-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.portfolio-search {
    flex: 1;
    min-width: 300px;
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-pill);
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white-color);
    box-shadow: 0 0 0 3px rgba(97, 95, 237, 0.1);
}

.portfolio-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: var(--white-color);
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    min-width: 150px;
}

/* Portfolio Filters */
.portfolio-filters {
    margin-bottom: 2rem;
}

.filter-btn-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(97, 95, 237, 0.3);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

/* Portfolio Card */
.modern-portfolio-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
}

.modern-portfolio-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(1, 0, 58, 0.15);
    border-color: var(--accent3-color);
}

.portfolio-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: var(--border-radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.portfolio-card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-portfolio-card:hover .portfolio-card-image img {
    transform: scale(1.1);
}

.portfolio-card-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, rgba(1, 0, 58, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-portfolio-card:hover .portfolio-card-overlay {
    opacity: 1;
}

.portfolio-card-content {
    padding: 1.5rem;
}

.portfolio-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.portfolio-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.portfolio-card-category {
    background: rgba(150, 119, 88, 0.1);
    color: var(--secondary-color);
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
}

.portfolio-card-description {
    color: var(--gray-color);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
    height: 60px;
    overflow: hidden;
}

.portfolio-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.portfolio-detail-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.portfolio-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.btn-portfolio-view {
    flex: 1;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-portfolio-view:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.btn-portfolio-inquire {
    flex: 1;
    background: var(--primary-color);
    color: var(--white-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-portfolio-inquire:hover {
    background: var(--accent2-color);
    border-color: var(--accent2-color);
    transform: translateY(-2px);
}

/* Portfolio Stats */
.portfolio-stats {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-color);
    font-size: 1rem;
}

/* Showcase Cards */
.showcase-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.showcase-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white-color);
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(97, 95, 237, 0.2);
}

.showcase-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.showcase-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Loading States */
.portfolio-loading {
    text-align: center;
    padding: 4rem 2rem;
}

.portfolio-loading.active {
    display: block;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(97, 95, 237, 0.1);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* No Results */
.portfolio-no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: none;
}

.portfolio-no-results-icon {
    font-size: 3.5rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

/* Pagination */
.portfolio-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Coming Soon Section */
.coming-soon-container {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(1, 0, 58, 0.05) 0%, rgba(3, 52, 87, 0.05) 100%);
    border-radius: var(--border-radius);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-content {
    max-width: 600px;
}

.coming-soon-icon {
    font-size: 5rem;
    color: var(--accent2-color);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.coming-soon-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.coming-soon-subtitle {
    font-size: 1.3rem;
    color: var(--accent2-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.coming-soon-text {
    font-size: 1rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.coming-soon-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-soon-actions .btn {
    padding: 0.75rem 2rem;
}

/* Product Card Styles */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(1, 0, 58, 0.15);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(1, 0, 58, 0.1), rgba(61, 136, 188, 0.1));
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.price-value {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.price-unit {
    color: var(--accent2-color);
    font-size: 0.9rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.page-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

/* Highlight Animation */
.highlight {
    animation: highlightPulse 2s ease-in-out;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(97, 95, 237, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(97, 95, 237, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(97, 95, 237, 0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .portfolio-tools {
        flex-direction: column;
        align-items: stretch;
    }
    
    .portfolio-search {
        min-width: 100%;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-card-actions {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* About Page Styles */
.about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    color: var(--accent2-color);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.about-label.center-label {
    justify-content: center;
}

.label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent2-color);
}

.label-text {
    text-transform: uppercase;
}

.about-introduction {
    background: linear-gradient(135deg, rgba(1, 0, 58, 0.03) 0%, rgba(3, 52, 87, 0.03) 100%);
    padding: 4rem 0;
}

.about-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0 1.5rem;
    line-height: 1.3;
}

.about-description {
    font-size: 1rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(1, 0, 58, 0.15);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--gray-color);
    line-height: 1.6;
    margin: 0;
}

/* Team Member Card */
.team-member-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(1, 0, 58, 0.15);
}

.team-member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2-color));
    position: relative;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member-info {
    padding: 1.5rem;
    text-align: center;
}

.team-member-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem;
}

.team-member-position {
    font-size: 0.95rem;
    color: var(--accent2-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-member-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.team-member-social a:hover {
    background: var(--accent2-color);
    color: white;
    transform: translateY(-3px);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent1-color) 50%, var(--accent2-color) 100%);
    color: white;
    padding: 4rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Responsive Design */
/* About Page - New Design */
.badge-text {
    display: inline-block;
    color: #c9bca6;
    font-weight: 600;
    font-size: 3.5rem;
    letter-spacing: 1px;
    background-color: rgba(201, 188, 166, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.feature-card-about {
    background: var(--white-color);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 4px solid #c9bca6;
    position: relative;
    overflow: hidden;
}

.feature-card-header {
    margin-bottom: 1.5rem;
}

.feature-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 188, 166, 0.2);
    color: #c9bca6;
    font-size: 1.2rem;
    transition: var(--transition);
    opacity: 0;
    transform: translateX(10px);
}

.feature-card-about:hover .feature-card-footer {
    opacity: 1;
    transform: translateX(0);
    color: #064d81;
}

.feature-card-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 188, 166, 0.1) 0%, rgba(6, 77, 129, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card-about:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(1, 0, 58, 0.15), 0 0 30px rgba(201, 188, 166, 0.2);
    border-top-color: #064d81;
}

.feature-card-about:hover::before {
    opacity: 1;
}

.feature-icon-about {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 0 0 3px rgba(201, 188, 166, 0.3);
    transition: var(--transition);
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-card-about:hover .feature-icon-about {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(201, 188, 166, 0.4), 0 0 0 3px rgba(201, 188, 166, 0.3);
}

.feature-icon-about.bg-danger {
    background-color: #064d81;
}

.feature-icon-about.bg-dark {
    background-color: #282420;
}

.feature-title-about {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
}

.feature-card-about:hover .feature-title-about {
    color: #064d81;
    transform: translateY(-5px);
}

.feature-text-about {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    transition: var(--transition);
}

.feature-card-about:hover .feature-text-about {
    color: #282420;
}

.feature-footer-about {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 188, 166, 0.2);
}

.feature-badge {
    display: inline-block;
    background: rgba(201, 188, 166, 0.1);
    color: #c9bca6;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.feature-card-about:hover .feature-badge {
    background: #c9bca6;
    color: var(--white-color);
}

.about-image-section {
    position: relative;
}

.about-image-section img {
    max-width: 100%;
    height: auto;
    display: block;
}

.video-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.video-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #064d81 0%, #01003a 100%);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.video-link:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(6, 77, 129, 0.3);
}

.play-button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.video-text {
    color: var(--black-color);
    font-weight: 500;
    margin: 0;
    flex-grow: 1;
    text-align: right;
}

@media (max-width: 768px) {
    .about-main-title {
        font-size: 1.8rem;
    }
    
    .about-features {
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .team-member-image {
        height: 250px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-card-about {
        padding: 1.5rem 1rem;
    }
    
    .video-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .video-text {
        text-align: right;
    }
}

/* Enhanced Accent Color Usage */
/* Light background sections */
.mission-vision-card {
    background: rgba(201, 188, 166, 0.05);
    border-right: 3px solid #c9bca6;
}

/* Accent text highlights */
.highlight-accent {
    color: #c9bca6;
    font-weight: 600;
}

/* Divider lines with accent color */
.divider-accent {
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9bca6, transparent);
    margin: 2rem 0;
}

/* Button with accent styling */
.btn-accent {
    border: 2px solid #c9bca6;
    color: #c9bca6;
    background-color: transparent;
}

.btn-accent:hover {
    background-color: #c9bca6;
    color: var(--white-color);
}

/* Values Card Styling */
.value-card-item {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-top: 3px solid #c9bca6;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.value-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top-color: #064d81;
}

.value-icon {
    font-size: 3rem;
    color: #064d81;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.value-card-item:hover .value-icon {
    color: #c9bca6;
    transform: scale(1.1);
}

.value-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.value-description {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin: 0;
}
    }}