:root {
    --color-primary: #364b71;
    --color-primary-dark: #223c69;
    --color-primary-light: #0D1F3C;
    --color-accent: #a68049;
    --color-accent-light: #E8C06A;
    --color-accent-dark: #8B6914;
    --color-background: #F8F6F1;
    --color-surface: #FFFFFF;
    --color-foreground: #1A1A2E;
    --color-muted: #78716C;
    --color-border: #E7E5E4;
    --color-stone-50: #FAFAF9;
    --color-stone-100: #F5F5F4;
    --color-stone-200: #E7E5E4;
    --color-stone-300: #D6D3D1;
    --color-stone-400: #A8A29E;
    --color-stone-500: #78716C;
    --color-stone-600: #57534E;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'cairo', sans-serif;
    background-color: var(--color-background);
    color: var(--color-foreground);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}



::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--color-background);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-dark);
}

::selection {
    background: var(--color-accent);
    color: #fff;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glass-nav {
    background: var(--color-primary-dark);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-nav-light {
    background: var(--color-primary-dark);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-mask {
    background: linear-gradient(105deg,
            rgba(10, 22, 40, 0.88) 0%,
            rgba(10, 22, 40, 0.65) 45%,
            rgba(10, 22, 40, 0.15) 75%,
            rgba(10, 22, 40, 0.05) 100%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.stagger-1 {
    transition-delay: 0.05s;
}

.stagger-2 {
    transition-delay: 0.12s;
}

.stagger-3 {
    transition-delay: 0.19s;
}

.stagger-4 {
    transition-delay: 0.26s;
}

.stagger-5 {
    transition-delay: 0.33s;
}

.stagger-6 {
    transition-delay: 0.40s;
}

.card-lift {
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -8px rgba(10, 22, 40, 0.12);
}

.gold-link {
    position: relative;
    display: inline-block;
}

.gold-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gold-link:hover::after {
    width: 100%;
}

.grayscale-reveal {
    filter: grayscale(100%) brightness(0.85);
    transition: filter 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.grayscale-reveal:hover {
    filter: grayscale(0%) brightness(1);
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.animate-ping {
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-content.open {
    max-height: 400px;
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.gold-divider {
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    border-radius: 1px;
}

.bento-glow {
    position: absolute;
    border-radius: 50%;
    background: rgba(196, 154, 74, 0.12);
    filter: blur(60px);
    pointer-events: none;
}

.service-card-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover .service-card-img {
    opacity: 1;
}

.service-card:hover .service-card-content {
    color: white;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.project-card-overlay {
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.quote-mark {
    font-family: 'Fraunces', serif;
    font-size: 6rem;
    line-height: 0.8;
    color: var(--color-accent);
    opacity: 0.25;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.navbar-custom {
    padding: 25px 0;
    transition: 0.4s;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar-custom.scrolled {
    background: var(--color-primary-dark);
    backdrop-filter: blur(10px);
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

}

.logo-text {
    color: var(--color-surface);
    font-weight: 700;
    font-size: 20px;
}

.nav-links {
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--color-surface);
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    display: inline-block;
    font-weight: 700;
    display: inline-block;
    font-size: 17px;
}


.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-accent);
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.nav-links a:hover {
    color: var(--color-surface);
}


.btn-contact {
    background: var(--color-accent);
    color: var(--color-surface);
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-contact:hover {
    background: var(--color-accent-dark);
    color: var(--color-surface) !important;
}


.menu-btn {
    border: none;
    background: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--color-surface);
    transition: 0.3s;
}


.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: var(--color-primary-dark);
    padding: 80px 20px;
    transition: 0.4s;
    z-index: 1000;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:hover {
    color: var(--color-accent);
}


#overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

#overlay.active {
    opacity: 1;
    pointer-events: auto;
}


.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 22, 40, 0.85),
            rgba(10, 22, 40, 0.4),
            transparent);
}


.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-surface);
    padding-bottom: 50px;
    padding-top: 150px;

}

@media screen and (max-width:992px) {
    .hero-content {
        padding-top: 200px;
    }
}

.badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 22, 40, 0.6);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid rgba(196, 154, 74, 0.3);
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.hero-title {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--color-accent);
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(0, 0, 0, 0.5);
}

.hero-text {
    color: rgba(255, 255, 255, 0.75);
    max-width: 500px;
    margin-bottom: 30px;
}

.btn-main {
    background: var(--color-accent);
    color: var(--color-surface);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(196, 154, 74, 0.3);
    font-weight: 600;
}

.btn-main:hover {
    background: var(--color-accent-dark);
    box-shadow: 0 8px 25px rgba(196, 154, 74, 0.5);
    font-weight: 700;

}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--color-surface);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    backdrop-filter: blur(5px);
    transition: 0.3s;
    font-weight: 700;

}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}


.stat-box {
    background: rgba(10, 22, 40, 0.5);
    padding: 20px;
    border-radius: 18px;
    text-align: center;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.stat-box:hover {
    border-color: rgba(196, 154, 74, 0.4);
    background: rgba(10, 22, 40, 0.7);
}

.stat-box h3 {
    color: var(--color-accent);
    font-size: 28px;
    font-style: italic;
    font-weight: 700;
}

.stat-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-weight: 600;
}


.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 2px;
}

@media screen and (max-width:992px) {
    .scroll-indicator {
        bottom: -10px;

    }
}

.scroll-indicator .line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, white, transparent);
    margin: auto;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

#overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 40;
}

#overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

.about-section {
    background: var(--color-surface);
}

.fs-7 {
    font-size: 30px !important;
}

.fs-8 {
    font-size: 40px !important;

}

.image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-height: 600px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.4), transparent);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-primary);
    color: white;
    padding: 20px;
    border-radius: 16px;
    width: 150px;
    text-align: center;
}

.floating-card h3 {
    color: var(--color-accent);
    font-style: italic;
    font-weight: 700;
}

.floating-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 1) !important;
    font-weight: 700;
}

.about-title {
    font-size: 40px;
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.5;
}

.about-title span {
    color: var(--color-accent);
    font-style: italic;
}

.about-text {
    color: var(--color-muted);
    line-height: 1.8;
    font-weight: 600;
    font-size: 16px !important;
}

.about-section h4 {
    color: var(--color-primary);
    font-style: italic;
    font-weight: 700;
    font-size: 30px;
}

.about-section p {
    font-size: 16px;
    color: var(--color-muted);
    font-weight: 600;
}

.learn-more {
    display: inline-block;
    margin-top: 10px;
    color: var(--color-surface);
    text-decoration: none;
    transition: 0.3s;
    background-color: var(--color-accent);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.learn-more:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-4px);
}



.section-tag {
    font-size: 30px;
    letter-spacing: 2px;
    background-color: var(--color-accent);
    color: var(--color-surface);
    padding: 5px 20px;
    border-radius: 30px;
    font-weight: 700;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: 0.8s;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: 0.8s;
}

.revealed {
    opacity: 1;
    transform: translateX(0);
}

.title {
    color: var(--color-primary);
    font-weight: 700;
}

.header .title {
    font-weight: 800;
    font-size: 50px;
}

.header .accent {
    background-color: var(--color-accent);
    color: var(--color-surface);
    display: inline-block;
    padding: 8px 20px;
    font-weight: 700;
    border-radius: 30px;
}

.card-custom {
    border-radius: 20px;
    padding: 30px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--color-accent);
}

.card-custom p {
    font-weight: 600;
}

.card-custom:hover {
    transform: translateY(-10px);
}

.bg-primary-custom {
    background: var(--color-primary);
    color: white;
}

.bg-accent-custom {
    background: var(--color-accent);
    color: white;
}

.bg-surface {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
}

.text-muted-custom {
    color: var(--color-muted);
}



.goals ul {
    list-style: none;
    padding: 0;
}

.goals ul li::before {
    content: "•";
    color: var(--color-accent);
    margin-left: 8px;
}

.goals ul li {
    margin-bottom: 15px;
    font-weight: 600;
}

.goals .icon-box {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


.goals .icon-box {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
    transition: 0.3s;
}

.icon-primary {
    background: #8b69141e;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
}

.icon-accent {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.icon-light {
    background: rgba(10, 22, 40, 0.08);
    color: var(--color-primary);
}

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

.card-custom h5 {
    font-weight: 700 !important;
    display: inline-block;
    font-size: 28px;
}

.card-custom .accent {
    color: var(--color-accent);

}

.card-custom h3 {
    font-weight: 800;
}

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

.services .accent {
    color: var(--color-accent);
    padding: 8px 20px;
    border: 1px solid var(--color-accent);
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
}

.services h2 {
    font-weight: 800;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    border: 1px solid #c4994a8d;
}

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

.service-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.45);
    transition: 0.4s;
}

.service-card .content {
    position: absolute;
    inset: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    z-index: 2;
}

.service-card .icon {
    width: 45px;
    height: 45px;
    background: rgba(196, 154, 74, 0.15);
    border: 1px solid rgba(196, 154, 74, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 15px;
    color: var(--color-accent);
}

.service-card h4 {
    font-weight: 800;
}

.service-card p {
    font-weight: 600;
}

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



.bg-light-custom {
    background: var(--color-background);
}

.title {
    color: var(--color-primary);
    font-weight: 700;
}

.accent {
    color: var(--color-accent);
}

.text-muted-custom {
    color: var(--color-muted);
}

.branch-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 20px;
    transition: 0.3s;
    height: 100%;
}

.branch-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
}

.branch-card .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.branch-card .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(10, 22, 40, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: 0.3s;
}

.branch-card:hover .icon {
    background: rgba(196, 154, 74, 0.15);
    color: var(--color-accent);
}

.badge-hq {
    font-size: 10px;
    background: rgba(196, 154, 74, 0.15);
    color: var(--color-accent);
    padding: 4px 8px;
    border-radius: 20px;
}

.branch-card h5 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 800;
}

.branch-card .country {
    font-size: 12px;
    color: var(--color-accent);
    margin-bottom: 15px;
    font-weight: 600;
}

.branch-card .bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.why-us {
    background: var(--color-primary-dark);
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.464);
    padding-bottom: 100px !important;
}

.divider {
    width: 40px;
    height: 2px;
    background: var(--color-accent);
}


.counter-box {
    padding: 30px;
    border: 1px solid #c4994a4b;
}

.counter-box h2 {
    font-size: 40px;
    color: var(--color-accent);
    font-style: italic;
    font-weight: 700;
}

.counter-box small {
    color: var(--color-surface);
    opacity: 0.8;
}

.feature-box {
    background: var(--color-primary);
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
    height: 100%;
    border: 1px solid #c4994a4b;
}

.feature-box:hover {
    transform: scale(1.02);
    border: 1px solid var(--color-accent);

}

.feature-box .icon-box {
    background: #060e1a87;
    margin-bottom: 15px;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #c4994a4b;
    transition: 0.3s;

}

.feature-box:hover .icon-box {
    transform: rotate(5deg);
}

.feature-box i {
    font-size: 22px;
    color: var(--color-accent);
}

.border-accent {
    border: 1px solid var(--color-accent);
}

.feature-box h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--color-surface);
    opacity: 0.8;
}

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

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

.text-accent {
    color: var(--color-accent);
}

.divider {
    width: 40px;
    height: 2px;
    background: var(--color-accent);
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
    filter: grayscale(100%);
}

.project-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
}

.content {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: white;
}

.content span {
    color: var(--color-accent);
    font-size: 12px;
}

.hover-box {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: white;
    opacity: 0;
    transition: 0.4s;
}

.project-card:hover .hover-box {
    opacity: 1;
}

.hover-box i {
    color: var(--color-accent);
    font-size: 24px;
}

.award-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 15px;
    padding: 25px;
    transition: 0.3s;
}

.award-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.icon-box {
    width: 55px;
    height: 55px;
    background: rgba(196, 154, 74, 0.1);
    border: 1px solid rgba(196, 154, 74, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

.icon-box i {
    font-size: 20px;
}

.year {
    font-size: 12px;
    background: rgba(196, 154, 74, 0.1);
    color: var(--color-accent);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 5px;
}

.issuer {
    font-size: 12px;
    color: var(--color-muted);
    margin: 0;
}

.desc {
    font-size: 14px;
    color: var(--color-muted);
}

.testimonials {
    background: var(--color-primary-dark);
    color: white;
    padding-top: 100px !important;
}

.text-accent {
    color: var(--color-accent);
}

.divider {
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.testimonial-card {
    background: var(--primary-light);
    padding: 25px;
    border-radius: 20px;
    position: relative;
    transition: 0.3s;
    border: 1px solid rgba(196, 154, 74, 0.3);
    height: 100% !important;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.quote-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 20px;
    color: var(--color-accent);
}

.stars i {
    color: var(--color-accent);
    font-size: 14px;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.client img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.client h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.client small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.company {
    color: var(--color-accent);
    font-size: 12px;
}

.info-box {
    background-color: var(--color-surface);
    padding: 10px;
    border-radius: 10px;

}

.info-box i {
    width: 40px;
    height: 40px;
    background: rgba(196, 154, 74, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-top: 10px;
}

.form-box {
    background: var(--color-primary);
    padding: 30px;
    border-radius: 20px;
    color: var(--color-surface);
    border: 6px solid var(--color-accent-dark);
}

.form-control {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-surface);
}

.form-control:focus {
    background: transparent;
    border-color: var(--color-accent);
    box-shadow: none;
    color: var(--color-surface);
}

label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-surface);
    font-weight: bold;
}

.btn-accent:hover {
    background: var(--color-accent-dark);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: rgba(196, 154, 74, 0.2);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    font-size: 24px;
}

.error-msg {
    display: block;
    margin-top: 5px;
    font-size: 11px;
}



.testimonials .testimonialsSwiper {
    padding-top: 40px !important;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    display: flex;
    height: auto !important;
}

.swiper-slide:hover {
    cursor: grab;
}

.testimonial-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

footer {
    background: var(--color-primary-dark);
    color: var(--color-surface);
    padding-top: 60px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 20px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    max-width: 280px;
    line-height: 1.6;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 16px;
    margin: 0 10px;
    transition: 0.3s;
    font-weight: 600;
}

@media screen and (max-width:768px) {
    .footer-link {

        font-size: 14px;

    }
}

@media screen and (max-width:500px) {
    .footer-link {

        font-size: 12px;

    }
}

.footer-link:hover {
    color: var(--color-accent-dark);
}

.social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
}

.bottom-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.divider {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 8px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: var(--color-surface);
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
}

/* swiper full height */
.heroSwiper,
.heroSwiper .swiper-slide {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.heroSwiper {
    position: relative;
    overflow: hidden;
}

.heroSwiper .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 22, 40, 0.89),
            rgba(10, 22, 40, 0.851),
            transparent);
}

.logo-img {
    position: relative;
    width: fit-content;
    margin: auto;
}

.logo-img img {
    display: block;
    position: relative;
    z-index: 2;
}

.logo-img::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    inset: 0px;
    box-shadow: 0 0 10px rgba(166, 127, 73, 0.4);
    border-top: 5px solid #a67f49;
    border-right: 5px solid #313e55;
    animation: spin 4s linear infinite;
    z-index: 1;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
    font-weight: 700;
}

.accordion-button {
    font-weight: 700;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #313e55;
    color: #fff;
}

.faq-img {
    border-radius: 20px;
    filter:
        contrast(1.15) brightness(0.92) saturate(1.2) sepia(0.15) hue-rotate(-5deg);
    min-height: 400px;
    width: 100%;
    object-fit: cover;
}

.accordion-button::after {
    margin-left: 0;
    margin-right: auto;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23313e55'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.process-box {
    background: var(--color-primary);
    padding: 30px 20px;
    border-radius: 16px;
    position: relative;
    transition: 0.3s;
    height: 100%;
    border-right: 6px solid var(--color-accent);
}

.process-box:hover {
    transform: translateX(-8px);
}

.process-box .step {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.process-box h5 {
    color: var(--color-surface);
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 15px;
}

.process-box p {
    color: rgba(255, 255, 255, 0.685);
    font-weight: 600;
}

.final-cta {
    padding: 80px 0;
    color: #fff;
    background: linear-gradient(120deg, #313e55, #a67f49);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.final-cta::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.final-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-surface) !important;
    margin-bottom: 15px;
}

.final-cta p {
    opacity: 0.9;
    margin-top: 10px;
    color: var(--color-surface) !important;
}

.phone {
    direction: ltr !important;
    unicode-bidi: bidi-override;
}



.about-content {
    background-color: var(--color-background);
    border: 1px solid var(--color-accent);
    padding: 20px;
    border-radius: 20px;
}


.company-profile-section {
    background: linear-gradient(135deg, #0f1a10c0, #1c2b1e94), url(../imgs/company-profile-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-profile-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--color-foreground);
    filter: blur(120px);
    opacity: 0.2;
    top: -100px;
    right: -100px;
}

.profile-box {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.download-btn {
    background: var(--color-accent);
    color: #0f1a10;
    border-radius: 50px;
    transition: 0.3s;
}

.download-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}