@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #89FF5E;
    /* Bright Neon Green */
    --secondary-color: #111111;
    /* Deep Black */
    --text-color: #444444;
    --bg-light: #ffffff;
    --line-color: rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--secondary-color);
    overflow-x: hidden;
    /* Grid background effect */
    background-image: linear-gradient(to right, var(--line-color) 1px, transparent 1px);
    background-size: calc(100% / 6) 100%;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3%;
    border-bottom: 1px solid var(--line-color);
    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

}

/* 
.logo-circle {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
} */

.logo-circle span {
    font-weight: 800;
    font-size: 24px;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-circle img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 15px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

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

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

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    nav ul li a {
        font-size: 24px;
        font-weight: 700;
    }

    .contact-info {
        display: none;
    }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    min-height: 80vh;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 80px;
    line-height: 0.9;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-content h1 span.modern {
    color: var(--secondary-color);
    display: block;
}

.hero-content h1 span.digital {
    color: var(--primary-color);
}

.hero-content h1 span.agency {
    display: block;
    margin-top: 5px;
}

.hero-content .subtitle {
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 1.5px solid var(--secondary-color);
    border-radius: 50%;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.cta-button:hover svg path {
    stroke: var(--primary-color);
}

.cta-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Hero Image Section */
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.image-mask {
    width: 90%;
    height: 550px;
    background: #f0f0f0;
    border-radius: 40px 40px 150px 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

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

.sparkle-icon {
    position: absolute;
    top: -40px;
    left: 0px;
    width: 80px;
    height: 80px;
    color: var(--primary-color);
    animation: float 5s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Partner Section */
.partners {
    padding: 3rem 5%;
    border-top: 1px solid var(--line-color);
}

.partners-title {
    text-align: center;
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.partners-title::before,
.partners-title::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--line-color);
}

.partner-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logos:hover {
    filter: grayscale(0);
    opacity: 1;
}

.partner-logo {
    height: 30px;
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 60px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 5%;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero-content .subtitle {
        margin: 0 auto 40px;
    }

    .cta-container {
        justify-content: center;
    }

    .hero-image-container {
        width: 100%;
    }

    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
}

/* About Section */
.about-section {
    background-color: #110E0E;
    color: white;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.about-title-block {
    max-width: 600px;
}

.tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tagline .line {
    width: 40px;
    height: 1px;
    background: var(--primary-color);
    position: relative;
}

.tagline .line::after {
    content: "";
    width: 6px;
    height: 6px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    right: -3px;
    top: -3px;
}

.about-title-block h2 {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-title-block p {
    color: #999;
    font-size: 16px;
    line-height: 1.6;
}

.about-more-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.circle-arrow {
    width: 100px;
    height: 100px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.circle-arrow:hover {
    border-color: var(--primary-color);
    transform: rotate(-15deg);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 40px;
}

/* Image Collage */
.collage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 150px;
    gap: 15px;
}

.collage-item {
    border-radius: 10px;
    overflow: hidden;
    filter: grayscale(1);
    transition: var(--transition);
}

.collage-item:hover {
    filter: grayscale(0);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-1 {
    grid-area: 1 / 1 / 2 / 2;
}

.item-2 {
    grid-area: 1 / 2 / 3 / 4;
}

.item-3 {
    grid-area: 2 / 1 / 4 / 2;
}

.item-4 {
    grid-area: 3 / 2 / 5 / 3;
}

.item-5 {
    grid-area: 3 / 3 / 4 / 4;
}

.item-6 {
    grid-area: 4 / 3 / 5 / 4;
}

/* Features */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.feature-num {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
}

.feature-item p {
    color: #888;
    line-height: 1.6;
}

/* Stats */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding-top: 60px;
}

.stat-card {
    border: 1px solid #222;
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition);
}

.stat-card:hover {
    background: #1a1a1a;
    border-color: #333;
}

.stat-card h4 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card h4 span {
    color: var(--primary-color);
}

.stat-card p {
    color: #777;
    font-size: 14px;
}

.big-sparkle {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    color: var(--primary-color);
    opacity: 0.15;
    pointer-events: none;
    animation: rotate 20s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 900px) {
    .about-content-grid {
        grid-template-columns: 1fr;
    }

    .about-header {
        flex-direction: column;
        gap: 30px;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
    }
}

@media (max-width: 600px) {
    .collage-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .item-1,
    .item-2,
    .item-3,
    .item-4,
    .item-5,
    .item-6 {
        grid-area: auto;
    }
}

/* Video Section */
.video-section {
    padding: 100px 5%;
    background-color: white;
    position: relative;
    display: flex;
    justify-content: center;
}

.video-container {
    width: 100%;
    max-width: 1200px;
    height: 600px;
    border-radius: 60px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-container:hover img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: var(--transition);
}

.play-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.play-btn-inner {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.play-btn:hover {
    transform: translateX(-50%) translateY(-10px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .video-container {
        height: 400px;
        border-radius: 30px;
    }

    .play-btn {
        width: 100px;
        height: 100px;
        bottom: -40px;
    }

    .play-btn-inner {
        width: 60px;
        height: 60px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 5%;
    background-color: white;
    position: relative;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.testimonials-title-block {
    max-width: 700px;
}

.testimonials-title-block h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.testimonials-title-block p {
    color: var(--text-color);
    line-height: 1.6;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: #f8f8f8;
    padding: 50px 40px;
    border-radius: 30px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    background: white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    transform: translateY(-10px);
}

.quote-icon {
    font-size: 80px;
    color: #e0e0e0;
    line-height: 1;
    margin-bottom: 20px;
    font-family: serif;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 40px;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #eee;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.client-details span {
    font-size: 13px;
    color: #888;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 12px;
    height: 12px;
    border: 1px solid var(--secondary-color);
    background: transparent;
    position: relative;
}

.dot.active::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-header {
        flex-direction: column;
        gap: 30px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 5%;
    background-color: #f6f6f6;
    display: flex;
    gap: 80px;
}

.faq-left {
    flex: 1;
    max-width: 500px;
}

.faq-left h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.faq-left p {
    color: var(--text-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

.faq-right {
    flex: 1.5;
}

.faq-accordion {
    border-top: 1px solid #ddd;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    background: var(--secondary-color);
    transition: var(--transition);
}

/* Plus sign */
.faq-toggle::before {
    width: 2px;
    height: 14px;
}

.faq-toggle::after {
    width: 14px;
    height: 2px;
}

.faq-item.active .faq-toggle::before {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-toggle::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    color: var(--text-color);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 30px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

@media (max-width: 1024px) {
    .faq-section {
        flex-direction: column;
        gap: 50px;
    }

    .faq-left {
        max-width: 100%;
    }
}

/* Blog Section */
.blog-section {
    padding: 100px 5%;
    background-color: white;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.blog-title-block {
    max-width: 700px;
}

.blog-title-block h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.blog-featured {
    display: flex;
    flex-direction: column;
}

.featured-img-card {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.featured-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-featured h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.blog-featured p {
    color: var(--text-color);
    line-height: 1.7;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-list-item {
    display: flex;
    gap: 25px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.blog-list-item:last-child {
    border-bottom: none;
}

.blog-index {
    width: 50px;
    height: 50px;
    background: #f8f8f8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.blog-list-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-list-content p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-header {
        flex-direction: column;
        gap: 30px;
    }
}

/* Footer Section */
footer {
    background-color: #110E0E;
    color: white;
    padding: 100px 5% 40px;
    position: relative;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 80px;
    border-bottom: 1px solid #222;
    margin-bottom: 80px;
}

.footer-top h2 {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    max-width: 600px;
    position: relative;
}

.footer-top h2 span {
    color: var(--primary-color);
    font-size: 40px;
    margin-left: 10px;
}

.btn-contact-circle {
    width: 180px;
    height: 180px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    padding: 20px;
}

.btn-contact-circle:hover {
    transform: scale(1.1) rotate(15deg);
}

.btn-contact-circle svg {
    margin-bottom: 10px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 60px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-address {
    color: #888;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 250px;
}

.footer-phone {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.newsletter-box {
    position: relative;
    margin-bottom: 20px;
}

.newsletter-box input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 18px 60px 18px 25px;
    border-radius: 10px;
    color: white;
    outline: none;
}

.newsletter-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 13px;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-top h2 {
        font-size: 50px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* About Page Specific Styles */
.about-page-hero {
    padding: 120px 5% 60px;
    text-align: center;
    background: #fff;
}

.about-page-hero h1 {
    font-size: clamp(40px, 8vw, 100px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-page-hero .breadcrumb {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: block;
}

.image-feed {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feed-item {
    width: 100%;
    height: 80vh;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.feed-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.feed-item:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: white;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.image-caption h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.image-caption p {
    font-size: 16px;
    opacity: 0.8;
}

.feed-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    pointer-events: none;
}

/* Social Sidebar */
.social-sidebar {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.social-sidebar::before,
.social-sidebar::after {
    content: "";
    width: 1px;
    height: 100px;
    background: #eee;
}

.social-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Specific About Hero */
.about-hero-refactor {
    padding: 100px 5%;
    position: relative;
    background: #fff;
    min-height: 100vh;
    text-align: center;
}

.about-bg-title {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%);
    font-size: 165px;
    font-weight: 700;
    color: rgba(17, 20, 17, 0.15);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.about-hero-refactor .sparkle-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--primary-color);
    right: 20%;
}

.about-hero-refactor h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 900px;
    color: var(--secondary-color);
    margin: 100px auto;
}

.about-hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: visible;
}

.about-hero-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.circular-badge {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.circular-badge svg {
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.circular-badge .arrow {
    position: absolute;
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .about-bg-title {
        font-size: 100px;
        top: 100px;
    }

    .about-hero-refactor h2 {
        font-size: 28px;
    }

    .social-sidebar {
        display: none;
    }
}

/* About Services Section */
.about-services-section {
    padding: 100px 5%;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.services-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-title-block .tagline {
    margin-bottom: 20px;
}

.services-title-block h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--secondary-color);
}

.pill-image-wrap {
    width: 100%;
    height: 350px;
    border-radius: 175px;
    /* Pill shape */
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

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

.services-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding-top: 100px;
}

.services-sparkle {
    width: 100px;
    height: 100px;
    color: var(--primary-color);
    margin-bottom: 20px;
    align-self: flex-end;
}

.services-text p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.explore-services-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .about-services-section {
        grid-template-columns: 1fr;
    }

    .services-right {
        padding-top: 0;
    }

    .services-sparkle {
        align-self: flex-start;
    }
}

/* About Team Section */
.about-team-section {
    padding: 100px 5%;
    background: #110E0E;
    color: white;
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.team-title-block h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 10px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1.25;
    border-radius: 40px 0 40px 0;
    /* Leaf shape */
    overflow: hidden;
    background: #222;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: var(--transition);
}

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

.team-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-info p {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

/* Services List Section */
.services-list-section {
    padding: 100px 5%;
    background: #110E0E;
    color: white;
}

.services-list-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.services-list-header h2 {
    font-size: 50px;
    font-weight: 700;
    max-width: 600px;
}

.services-list-header .sparkle-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
}

.services-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-list-card {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-list-card:hover {
    background: #222;
    border-color: #333;
    transform: translateY(-5px);
}

.service-card-main {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex: 1;
}

.service-card-num {
    font-size: 60px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.service-card-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-card-content p {
    color: #888;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
}

.service-card-image {
    width: 350px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: var(--transition);
}

.service-list-card:hover .service-card-image {
    opacity: 1;
    transform: scale(1);
}

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

.discover-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.discover-more-btn:hover {
    gap: 15px;
}

@media (max-width: 1024px) {
    .service-card-image {
        display: none;
    }

    .service-list-card {
        padding: 40px;
    }

    .service-card-num {
        font-size: 40px;
    }
}

/* Solution Process Section */
.solution-process-section {
    padding: 100px 5%;
    background: #fff;
    position: relative;
}

.process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.process-header h2 {
    font-size: 50px;
    font-weight: 700;
    max-width: 500px;
    line-height: 1.1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 50px;
}

.process-step-card {
    padding: 50px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: var(--transition);
}

.process-step-card:nth-child(2) {
    transform: translateY(40px);
}

.process-step-card:nth-child(3) {
    transform: translateY(80px);
}

.process-step-card:nth-child(4) {
    transform: translateY(120px);
}

.step-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.process-step-card h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.process-step-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Backgrounds for cards */
.step-card-1 {
    background-color: #FEF2F2;
}

.step-card-2 {
    background-color: #FDF2F9;
}

.step-card-3 {
    background-color: #FEF6F2;
}

.step-card-4 {
    background-color: #F5F3FF;
}

.process-step-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step-card {
        transform: none !important;
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Page Styles */
.blog-hero {
    padding: 49px 4%;
    text-align: center;
    position: relative;
    background: #fff;
    min-height: 46vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.blog-bg-title {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -100%);
    font-size: 165px;
    font-weight: 700;
    color: rgba(130, 132, 131, 0.35);
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.blog-hero h1 {
    font-size: 42px;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    padding: 0 5%;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.blog-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 5% 100px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-card-img {
    width: 100%;
    aspect-ratio: 1.5;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.blog-meta-row {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #888;
}

.blog-card h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.blog-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 100px;
}

.page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #eee;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
}

.page-num.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

@media (max-width: 1024px) {
    .blog-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-bg-title {
        font-size: 100px;
    }
}

@media (max-width: 600px) {
    .blog-main-grid {
        grid-template-columns: 1fr;
    }

    .blog-filters {
        gap: 10px;
        flex-wrap: wrap;
    }
}

/* Blog Detail Styles */
.blog-detail-cover {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.blog-detail-cover .cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-content-wrap {
    background-color: var(--bg-light);
    padding: 80px 5%;
}

.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.blog-detail-tagline-line {
    width: 40px;
    height: 1px;
    background: var(--primary-color);
    position: relative;
}

.blog-detail-tagline-line::before {
    content: "";
    width: 8px;
    height: 8px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: -8px;
    top: -4px;
    box-sizing: border-box;
}

.blog-detail-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.blog-detail-meta {
    display: flex;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--line-color);
    padding-bottom: 30px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 40px;
}

.meta-item+.meta-item {
    padding-left: 40px;
    border-left: 1px solid var(--line-color);
}

.meta-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--secondary-color);
}

.meta-value {
    font-size: 13px;
    color: #666;
}

.blog-detail-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.blog-detail-text p {
    margin-bottom: 20px;
}

.blog-detail-text ul {
    list-style-type: disc;
    padding-left: 30px;
    margin: 30px 0;
}

.blog-detail-text ul li {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.8;
}

.blog-detail-inner-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin: 40px 0;
}

.blog-detail-inner-image img {
    width: 100%;
    display: block;
}

.blog-detail-subtitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.blog-detail-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.blog-detail-tags strong {
    font-size: 16px;
    color: var(--secondary-color);
}

.tag {
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    transition: var(--transition);
}

.tag.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.blog-detail-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    padding-top: 50px;
}

.custom-nav-prev,
.custom-nav-next {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
}

.custom-nav-prev span,
.custom-nav-next span {
    transition: var(--transition);
}

.custom-nav-prev svg,
.custom-nav-next svg {
    transition: var(--transition);
}

.custom-nav-prev:hover svg path,
.custom-nav-next:hover svg path,
.custom-nav-prev:hover svg circle,
.custom-nav-next:hover svg circle {
    stroke: var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate-fade-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-400 {
    animation-delay: 400ms;
}

.delay-500 {
    animation-delay: 500ms;
}

/* Contact Page Styles */
.contact-hero-container {
    display: flex;
    background: #fff;
    gap: 0;
    align-items: stretch;
}

.contact-left {
    flex: 1;
    padding: 100px 5% 100px 10%;
    max-width: 900px;
}

.contact-left .contact-header {
    display: flex;
    align-items: center;
    gap: 200px;
    margin-bottom: 30px;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 700;
}

.contact-header .sparkle-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
}

.contact-subtitle {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 15px;
    max-width: 500px;
}

.contact-form-card {
    background: #F6F6F6;
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: none;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    outline: none;
    color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    background: #73C93F;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: 10px;
}

.submit-btn:hover {
    background: #5ea633;
}

.submit-btn svg {
    margin-bottom: -1px;
}

.contact-right {
    flex: 1;
}

.contact-right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-info-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 80px 5%;
    background: #fff;
}

.contact-info-card {
    flex: 1;
    max-width: 350px;
    padding: 40px 30px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.card-phone {
    background: #FEF3F3;
}

.card-email {
    background: #FEF3F8;
}

.card-location {
    background: #F3EFFF;
}

.info-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-content p,
.info-content a {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.contact-map-section {
    width: 100%;
    height: 500px;
    background: #333;
    filter: grayscale(1);
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Specific Footer for Contact */
.footer-contact {
    background: #140E0E;
    color: #fff;
}

.footer-contact .footer-row-main {
    display: flex;
    padding: 80px 5%;
    gap: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-contact-left {
    flex: 1.5;
}

.footer-contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.footer-subscribe-box {
    display: flex;
    background: #221a1a;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
}

.footer-subscribe-box input {
    flex: 1;
    padding: 0 20px;
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    font-size: 14px;
}

.footer-subscribe-box button {
    background: var(--primary-color);
    border: none;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.footer-subscribe-box button svg {
    color: #111;
}

.social-circle-icons {
    display: flex;
    gap: 15px;
    margin-top: 60px;
}

.social-circle-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.social-circle-icon:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.footer-contact-right {
    flex: 2;
    display: flex;
    gap: 80px;
}

.footer-col-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.footer-col-contact ul {
    list-style: none;
}

.footer-col-contact ul li {
    margin-bottom: 15px;
}

.footer-col-contact ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col-contact ul li a:hover {
    color: var(--primary-color);
}

.footer-contact-bottom {
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 13px;
}

.footer-contact-bottom strong {
    color: #fff;
}

.footer-contact-links {
    display: flex;
    gap: 30px;
}

.footer-contact-links a {
    color: #888;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-links a:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .contact-hero-container {
        flex-direction: column;
    }

    .contact-left {
        padding: 80px 5%;
        max-width: 100%;
    }

    .contact-left .contact-header {
        gap: 40px;
    }

    .contact-right-img {
        height: 500px;
    }

    .contact-info-cards {
        flex-wrap: wrap;
    }

    .footer-contact .footer-row-main {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }

    .contact-header {
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact-right {
        flex-direction: column;
        gap: 40px;
    }

    .footer-contact-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* News Page Styles */
.news-hero-section {
    padding: 120px 5% 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
}



.news-bg-title {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 165px;
    font-weight: 900;
    color: rgba(17, 20, 17, 0.15);
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 5px;
}

.news-bg-title svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    color: var(--secondary-color);
    z-index: -1;
}

.news-hero-section h1 {
    font-size: 42px;
    font-weight: 700;
    max-width: 900px;
    margin: 80px auto;
    color: var(--secondary-color);
    line-height: 1.2;

}

.news-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.news-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.news-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.news-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.news-card-content {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.85);
    /* Frost glass look matching design */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 20px;
    padding: 30px;
    border-radius: 15px;
    width: calc(100% - 40px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.news-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.news-card-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.news-read-more-btn {
    display: inline-flex;
    align-items: center;
    background: #6DCE36;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    gap: 8px;
    transition: var(--transition);
}

.news-read-more-btn:hover {
    background: #5ab12c;
}

.news-read-more-btn svg {
    margin-bottom: -1px;
}

/* Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 100px;
    background: #fff;
}

.page-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.page-item:hover,
.page-item.active {
    background: #6DCE36;
    color: white;
    border-color: #6DCE36;
}

@media (max-width: 900px) {
    .news-grid-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .news-bg-title {
        font-size: 80px;
    }

    .news-hero-section h1 {
        font-size: 28px;
        padding: 0 20px;
    }

    .news-card {
        height: 350px;
    }

    .news-pagination {
        gap: 10px;
    }
}

/* News Detail Page Styles */
.news-detail-hero {
    position: relative;
    width: 100%;
    height: 700px;
    background: url('assets/service_seo.png') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
}

.news-detail-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.news-detail-hero h1 {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 1100px;
    padding: 0 5% 60px 5%;
}

.news-detail-content {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 5%;
}

.news-article p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.news-article ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #444;
    margin-bottom: 30px;
}

.news-article ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.news-article h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.news-dual-images {
    display: flex;
    gap: 30px;
    margin: 50px 0;
}

.news-dual-images img {
    flex: 1;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Optional: Adding a blue outline to the second image to mimic the screenshot */
.news-dual-images img:nth-child(2) {
    outline: 4px solid #00a4ef;
    outline-offset: -4px;
}

.related-news-section {
    max-width: 1400px;
    margin: 100px auto 100px;
    padding: 0 5%;
}

.related-news-section h2 {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 900px) {
    .news-detail-hero h1 {
        font-size: 36px;
        padding-bottom: 40px;
    }

    .news-detail-hero {
        height: 500px;
    }

    .news-dual-images {
        flex-direction: column;
    }

    .related-news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .news-detail-hero h1 {
        font-size: 28px;
    }

    .news-detail-hero {
        height: 400px;
    }
}

/* Terms Page Styles */
.terms-layout {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 5%;
    gap: 80px;
    position: relative;
    align-items: flex-start;
}

.terms-sidebar-wrapper {
    position: sticky;
    top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.terms-sidebar-wrapper::before,
.terms-sidebar-wrapper::after {
    content: "";
    width: 1px;
    height: 100px;
    background: #eee;
}

.terms-content-area {
    flex: 1;
    padding-bottom: 100px;
    position: relative;
}

.terms-bg-title {
    font-size: 100px;
    font-weight: 900;
    color: rgba(17, 20, 17, 0.15);
    line-height: 1;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
}

.terms-bg-title svg {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    color: #6DCE36;
}

.terms-content-area h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-top: 60px;
    margin-bottom: 25px;
}

.terms-content-area h2:first-of-type {
    margin-top: -30px;
    /* pull up slightly against bg title */
}

.terms-content-area p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

@media (max-width: 1024px) {
    .terms-sidebar-wrapper {
        display: none;
    }

    .terms-layout {
        display: block;
    }

    .terms-bg-title {
        font-size: 70px;
    }
}

@media (max-width: 600px) {
    .terms-bg-title {
        font-size: 45px;
    }

    .terms-bg-title svg {
        width: 30px;
        height: 30px;
    }

    .terms-content-area h2 {
        font-size: 30px;
    }
}

/* FAQ Page Specific Styles */
.faq-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5% 100px;
}

.faq-page-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.faq-page-accordion .faq-item {
    border-bottom: 1px solid #eee;
}

.faq-page-accordion .faq-item:first-child {
    border-top: 1px solid #eee;
}

.faq-page-accordion .faq-question {
    padding: 35px 0;
}

.faq-page-accordion .faq-question h3 {
    font-size: 18px;
    font-weight: 700;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    /* Forms an X */
}

.faq-item.active .faq-toggle::after {
    opacity: 0;
    /* hides one line so it's a + rotated to x, but wait if it's already + we just rotate 45deg to make x! */
    /* wait, original toggle ::before and ::after makes a +. */
}

/* override the original minus behavior for the faq page specifically */
.faq-page-accordion .faq-item.active .faq-toggle::before {
    transform: none;
    opacity: 1;
}

.faq-page-accordion .faq-item.active .faq-toggle::after {
    transform: none;
    opacity: 1;
}

.faq-page-accordion .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    /* now it's an X */
}

/* Form Section */
.faq-contact-container {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 5%;
}

.faq-contact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.faq-contact-header h2 {
    font-size: 45px;
    font-weight: 800;
    max-width: 550px;
    line-height: 1.2;
    margin-top: 20px;
}

.faq-contact-form-card {
    background: #f7f7f7;
    padding: 50px;
    border-radius: 20px;
}

.faq-contact-form-card label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
    color: var(--secondary-color);
}

.faq-contact-form-card input,
.faq-contact-form-card textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    padding: 18px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-sizing: border-box;
    font-size: 15px;
    outline: none;
}

.faq-contact-form-card textarea {
    height: 150px;
    resize: none;
}

.submit-inquiry-box {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.submit-inquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: var(--secondary-color);
    text-decoration: none;
}

.submit-inquiry-btn .circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.submit-inquiry-btn:hover .circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Banner */
.faq-banner-strip {
    background: #111;
    color: #fff;
    padding: 20px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    margin: 100px 0;
}

.banner-item {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    margin-right: 50px;
    text-transform: uppercase;
}

.banner-item svg {
    margin-right: 15px;
}

@media (max-width: 900px) {
    .faq-page-title {
        font-size: 32px;
    }

    .faq-contact-header {
        flex-direction: column;
        gap: 30px;
    }

    .faq-contact-header h2 {
        font-size: 36px;
    }
}

/* AI Inbox Page Styles */
.ai-dark-bg {
    background: #14100F;
    color: white;
}

.ai-hero-section {
    padding: 100px 5%;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.ai-hero-images {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.ai-hero-images img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.ai-hero-content {
    flex: 1;
}

.ai-hero-content h2 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 25px;
    color: #fff;
}

.ai-hero-content p {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Common Subtitle Label */
.ai-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 20px;
}

.ai-section-label .line {
    width: 30px;
    height: 1px;
    background: #6DCE36;
}

.ai-section-label .circle {
    width: 10px;
    height: 10px;
    border: 1px solid #6DCE36;
    border-radius: 50%;
    background: transparent;
    margin-left: -5px;
    /* Adjusting for overlap */
}

.ai-dark-bg .ai-section-label {
    color: #bbb;
}

/* Features Section */
.ai-features-section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.ai-features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.ai-features-header h2 {
    font-size: 45px;
    font-weight: 800;
    max-width: 500px;
    line-height: 1.2;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ai-feature-card {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
}

.ai-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ai-feature-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ai-feature-image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.ai-feature-arrow-btn {
    position: absolute;
    bottom: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #6DCE36;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: var(--transition);
}

.ai-feature-arrow-btn:hover {
    background: #5ab32d;
    transform: scale(1.1);
}

.ai-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.ai-feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Industries Section */
.ai-industries-section {
    padding: 100px 5%;
}

.ai-industries-header {
    text-align: center;
    margin-bottom: 60px;
}

.ai-industries-header h2 {
    font-size: 45px;
    font-weight: 800;
    color: white;
}

.ai-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.ai-industry-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
}

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

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

.ai-industry-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.ai-industry-card h3 {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    font-size: 22px;
    font-weight: 700;
}

/* Case Studies Section */
.ai-case-studies-section {
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.ai-about-details-section h2 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
}

@media (max-width: 1200px) {
    .ai-about-details-container {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
        text-align: center;
    }

    .ai-section-label {
        justify-content: center;
    }
}

.ai-video-dashboard {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 100px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.ai-video-dashboard img {
    width: 100%;
    display: block;
    filter: brightness(0.6);
}

.ai-video-dashboard h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    font-weight: 800;
    color: white;
    z-index: 2;
    text-align: center;
}

.ai-video-play-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: #6DCE36;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    cursor: pointer;
    transition: var(--transition);
}

.ai-video-play-btn:hover {
    transform: scale(1.1);
    background: #5ab32d;
}

.ai-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ai-case-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.ai-case-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--secondary-color);
}

.ai-case-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .ai-hero-section {
        flex-direction: column;
        text-align: center;
    }

    .ai-hero-images {
        order: 2;
    }

    .ai-hero-content {
        order: 1;
    }

    .ai-section-label {
        justify-content: center;
    }

    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ai-features-grid {
        grid-template-columns: 1fr;
    }

    .ai-industries-grid {
        grid-template-columns: 1fr;
    }

    .ai-case-grid {
        grid-template-columns: 1fr;
    }

    .ai-hero-content h2,
    .ai-features-header h2,
    .ai-industries-header h2 {
        font-size: 36px;
    }

    .ai-video-dashboard h2 {
        font-size: 32px;
    }

    .ai-features-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* Authentication & User Section */
.auth-section-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.auth-section-card.success {
    background: #f0fff4;
    border-color: #c6f6d5;
}

.auth-section-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.auth-section-card h3 span {
    color: var(--primary-color);
}

.auth-section-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.auth-inline-form {
    display: flex;
    gap: 15px;
}

.auth-inline-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
}

.auth-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.user-email-display {
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary-color);
    background: rgba(109, 206, 54, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

.logout-link:hover {
    text-decoration: underline !important;
}

/* Newsletter AJAX Messages */
.newsletter-message {
    margin-top: 15px;
    font-size: 14px;
    padding: 10px;
    border-radius: 8px;
    display: none;
    transition: var(--transition);
}

.newsletter-message.success {
    display: block;
    background: rgba(137, 255, 94, 0.1);
    color: #89FF5E;
    border: 1px solid rgba(137, 255, 94, 0.2);
}

.newsletter-message.error {
    display: block;
    background: rgba(255, 94, 94, 0.1);
    color: #FF5E5E;
    border: 1px solid rgba(255, 94, 94, 0.2);
}

.newsletter-message.info {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}