/* CSS for section section:header */
.site-header-section {
    position: sticky;
    top: 24px;
    z-index: 1000;
    padding: 0 20px;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #030205;
    border: 1.13px solid var(--border-light);
    border-radius: 100px;
    padding: 12px 24px;
    max-width: 1200px;
}
.logo img {
    height: 40px;
    display: block;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    background-color: rgba(0, 0, 0, 0);
    border: 1.13px solid var(--border-light);
    padding: 9px 45px;
    border-radius: 68px;
}
.main-nav a {
    font-size: 14.7px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}
.main-nav a:first-child {
    color: var(--text-light);
    font-weight: 600;
}
.main-nav a:hover {
    color: var(--text-light);
}
.btn-cta {
    background-color: rgba(73, 130, 255, 0.35);
    border: 1.13px solid var(--border-light);
    border-radius: 9px;
    padding: 8px 17px;
    color: var(--text-light);
    font-size: 15.8px;
    backdrop-filter: blur(2px);
    box-shadow: inset 0px 0px 6.77px 3.385px rgba(255, 255, 255, 0.25);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

/* Desktop/Mobile CTA visibility */
.mobile-cta {
    display: none;
}

.desktop-cta {
    display: inline-flex;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        order: 2;
    }

    .logo {
        order: 1;
    }

    .desktop-cta {
        display: none;
    }

    .mobile-cta {
        display: inline-flex;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: rgba(3, 2, 5, 0.98);
        backdrop-filter: blur(10px);
        border: 1.13px solid var(--border-light);
        border-radius: 20px;
        margin: 0 20px;
        padding: 20px;
        flex-direction: column;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        order: 4;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a:not(.btn-cta) {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .main-nav a:nth-last-child(2) {
        border-bottom: none;
    }

    .header-container {
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

/* CSS for section section:hero */
.hero-section {
    text-align: center;
    padding-top: 150px;
    padding-bottom: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.hero-background img {
    position: absolute;
}
.hero-blur-1 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    filter: blur(150px);
    opacity: 0.5;
}
.hero-blur-2 {
    top: 20%;
    left: 60%;
    transform: translateX(-50%);
    width: 50%;
    filter: blur(100px);
    opacity: 0.4;
}
.hero-circles {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    opacity: 0.1;
}
.hero-circles img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    max-width: 912px;
}
.hero-title {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 60px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -4.15px;
}
.hero-subtitle {
    font-size: 22.5px;
    line-height: 1.55;
    color: var(--text-light);
}
.hero-subtitle a {
    text-decoration: underline;
}
.hero-cta {
    font-size: 17px;
    padding: 12px 30px;
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
}

/* CSS for section section:portfolio */
.portfolio-section {
    background: linear-gradient(270deg, #0D0718 0%, rgba(15, 8, 27, 0) 47.85%, #0B0614 100%);
    border: 1.13px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    box-shadow: 0px -25px 66px rgba(69, 116, 255, 0.4), 0px -77px 79px rgba(69, 106, 255, 0.25);
    margin: 0 40px;
}
.portfolio-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.portfolio-header {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}
.portfolio-title {
    font-size: 39px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 6px;
}
.portfolio-description {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    line-height: 1.33;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 28px;
}
.project-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.project-card {
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.project-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 30px;
}
.project-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.project-meta {
    font-family: 'Asap', sans-serif;
    font-size: 14px;
}
.project-title {
    font-family: 'Asap', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
}
.project-card.large .project-title {
    font-size: 24px;
}
.project-description {
    font-family: 'Asap', sans-serif;
    font-size: 18px;
    line-height: 1.75;
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
    .project-card.large {
        grid-column: 1 / -1;
    }
}
@media (max-width: 768px) {
    .portfolio-section {
        margin: 0 20px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* CSS for section section:clients */
.clients-section {
    padding-top: 50px;
    padding-bottom: 20px;
    background-color: #000000;
}
.clients-container {
    max-width: 1200px;
}
.clients-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}
.clients-title .highlight {
    font-weight: 700;
}
.clients-slider {
    padding: 20px 0;
}
.client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.client-item img {
    max-width: 150px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}
.client-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* Owl Carousel Custom Styling */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--text-light) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}
.owl-carousel .owl-nav button.owl-prev {
    left: -50px;
}
.owl-carousel .owl-nav button.owl-next {
    right: -50px;
}
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
}
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}
.owl-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
}
.owl-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.owl-carousel .owl-dot.active span,
.owl-carousel .owl-dot:hover span {
    background-color: var(--text-light);
}

@media (max-width: 768px) {
    .clients-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    .client-item img {
        max-width: 120px;
    }
    .owl-carousel .owl-nav button.owl-prev {
        left: -10px;
    }
    .owl-carousel .owl-nav button.owl-next {
        right: -10px;
    }
}

/* CSS for section section:about */
/* .about-section {
    padding-top: 150px;
} */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}
.about-content {
    max-width: 682px;
}
.about-images {
    position: relative;
    width: 100%;
    height: 300px;
}
.about-img {
    position: absolute;
    border-radius: 24px;
    width: 135px;
    height: 135px;
    object-fit: cover;
    margin: 0px -10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.img-1 { top: 0; left: 15%; }
.img-2 { top: 0; right: 15%; }
.img-3 { bottom: 0; left: 15%; }
.img-4 { bottom: 0; right: 15%; }

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-content {
        margin-bottom: 60px;
    }
    .section-description {
        text-align: justify;
    }
}

/* CSS for section section:services */
.services-section {
    padding-top: 80px;
    padding-bottom: 80px;
}
.services-container {
    max-width: 1242px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 16px;
}
.service-card {
    position: relative;
    border-radius: 16px;
    padding: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}
.service-content {
    position: relative;
    z-index: 2;
}
.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #ffffff;
}
.service-card p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}
.service-card-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    background-image: url('images/service/service-1.png');
}
.service-card-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    background-image: url('images/service/service-2.png');
}
.service-card-3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    background-image: url('images/service/service-3.png');
}
.service-card-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background-image: url('images/service/service-4.png');
}
.start-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}
.start-link:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, 350px);
        gap: 12px;
    }
    .service-card h3 {
        font-size: 20px;
    }
    .service-card p {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }
    .service-card {
        min-height: 300px;
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
    }
    .service-card h3 {
        font-size: 22px;
    }
    .service-card p {
        font-size: 15px;
    }
}

/* CSS for section section:cta */
.cta-section {
    background-color: rgba(26, 26, 26, 0.4);
    border-top: 1px solid #635189;
    border-bottom: 1px solid #635189;
    padding: 60px 0;
}
.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.cta-text h2 {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.1;
    background: var(--cta-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 24px;
}
.cta-text p {
    font-size: 16px;
    line-height: 1.75;
    max-width: 588px;
}
.btn-light {
    gap: 10px;
}
.btn-light img {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    .cta-text h2 {
        font-size: 48px;
    }
}

/* CSS for section section:features */
.features-section {
    background: linear-gradient(134deg, var(--background-section) 0%, var(--background-dark) 138.23%);
    border: 1.13px solid var(--border-light);
}
.features-container {
    max-width: 1250px;
}
.features-title {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.95px;
    margin-bottom: 50px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px 130px;
}
.feature-item {
    display: flex;
    flex-direction: column;
    /* gap: 12px; */
}
.feature-header {
    display: flex;
    align-items: center;
    gap: 6px;
}
.feature-header img {
    width: 18px;
    height: 18px;
}
.feature-header h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.9;
}
.feature-item p {
    color: var(--text-medium);
    font-size: 18px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .features-title {
        font-size: 42px;
        text-align: center;
    }
    .features-grid {
        gap: 40px;
    }
}

/* CSS for section section:testimonials */
.testimonials-section {
    /* padding-bottom: 150px; */
}
.testimonials-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}
.testimonials-header {
    text-align: center;
    max-width: 500px;
}
.testimonials-header h2 {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 32px;
}
.testimonials-header p {
    font-size: 21px;
    line-height: 1.55;
}
.testimonial-main {
    width: 100%;
    max-width: 1100px;
    border-top: 1px solid rgba(255,255,255,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.6);
    padding: 40px 0;
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 240px;
    position: relative;
}
.testimonial-card::before, .testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(255,255,255,0.6);
}
.testimonial-card::before { left: 240px; }
.testimonial-card::after { right: 240px; }

.testimonial-avatar {
    width: 241px;
    height: 241px;
    border-radius: 22px;
    object-fit: cover;
}
.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.testimonial-content blockquote {
    font-size: 21.5px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}
.testimonial-content cite {
    font-style: normal;
    display: flex;
    flex-direction: column;
}
.testimonial-content cite .name {
    font-size: 18px;
    line-height: 1.6;
}
.testimonial-content cite .title {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-medium);
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    background-image: url('images/e943fd303c0291fd9475f87f73eb8662aae4ab65.png');
    background-size: cover;
    padding: 40px;
    border-radius: 15px;
    position: relative;
}
.review-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 1, 3, 0) 0%, #020103 84.46%);
    border-radius: 15px;
}
.review-card {
    position: relative;
    padding: 30px 22px;
    border-radius: 22px;
    backdrop-filter: blur(3px);
    background-color: rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}
.review-author .name {
    font-size: 15px;
    font-weight: 500;
}
.review-author .title {
    font-size: 11px;
}
.review-card p {
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 1200px) {
    .testimonial-card { padding: 0 100px; }
    .testimonial-card::before { left: 100px; }
    .testimonial-card::after { right: 100px; }
    .review-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .testimonial-card { flex-direction: column; text-align: center; padding: 0; }
    .testimonial-card::before, .testimonial-card::after { display: none; }
    .review-grid { grid-template-columns: 1fr; }
}

/* CSS for section section:faq */
.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 32px;
    align-items: flex-start;
}
.faq-intro {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.faq-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.5;
}
.faq-contact-card {
    background: linear-gradient(180deg, #000000 0%, #23469C 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.contact-title {
    font-size: 24px;
    font-weight: 600;
}
.contact-desc {
    font-size: 18px;
    font-weight: 600;
    max-width: 325px;
}
.contact-icon-group {
    margin: 40px 0;
}
.contact-icon-group img {
    width: 138px;
    height: 138px;
}
.faq-contact-card .btn {
    gap: 10px;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.faq-item {
    border-radius: 12px;
    padding: 24px;
    background-color: rgba(112, 112, 112, 0.27);
}
.faq-item[open] {
    background-color: rgba(136, 170, 255, 0.27);
}
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 21px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item p {
    margin-top: 32px;
    font-size: 18px;
    line-height: 1.5;
}
.faq-item .chevron {
    transition: transform 0.3s ease;
}
.faq-item[open] .chevron {
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
    .faq-title {
        text-align: center;
    }
}

/* CSS for section section:footer */
.site-footer {
    background-color: #000;
    padding-top: 0;
    padding-bottom: 60px;
    border-top: 1px solid var(--border-light);
}
.footer-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: rgba(26, 26, 26, 0.4);
    border-bottom: 1px solid #635189;
    margin-bottom: 60px;
}
.footer-top-container .cta-text h2 {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.1;
    background: var(--cta-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 24px;
}
.footer-top-container .cta-text p {
    font-size: 16px;
    line-height: 1.75;
    max-width: 588px;
}
.footer-top-container .btn-light {
    gap: 10px;
}
.footer-top-container .btn-light img {
    transform: rotate(90deg);
}
.footer-bottom-container {
    padding-top: 40px;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}
.footer-about {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer-logo img {
    height: 57px;
}
.social-links {
    display: flex;
    gap: 30px;
}
.social-links a img {
    opacity: 0.4;
    transition: opacity 0.3s ease;
}
.social-links a:hover img {
    opacity: 1;
}
.footer-links {
    display: flex;
    gap: 60px;
    flex-grow: 1;
    justify-content: space-around;
}
.link-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.link-column h4 {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0;
}
.link-column a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 2;
}
.link-column a:hover {
    color: var(--text-light);
}

@media (max-width: 992px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-about {
        align-items: center;
        gap: 40px;
        margin-bottom: 40px;
    }
    .footer-links {
        width: 100%;
        justify-content: space-between;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .footer-top-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-top-container .cta-text h2 {
        font-size: 48px;
    }
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
        width: 100%;
    }
    .link-column {
        width: 100%;
        text-align: left;
    }
}
@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }
    .link-column {
        width: 100%;
        text-align: left;
    }
}