.text-center {
    text-align: center !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes hero-float {
    0% {
        transform: scale(1.1) translateY(0);
    }

    50% {
        transform: scale(1.1) translateY(-20px);
    }

    100% {
        transform: scale(1.1) translateY(0);
    }
}

.animate-hero-bg {
    animation: hero-float 15s ease-in-out infinite;
}


:root {
    --primary-red: #D32F2F;
    /* KIGA Red */
    --dark-bg: #0a0a0a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --accent-color: #0fbcf9;
    /* Keeping for secondary elements if needed */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}



/* Dark Subpage Sections */
.dark-section {
    background-color: var(--dark-bg);
    padding: 100px 0;
}

.dark-section h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
}

.dark-section p {
    color: #888;
    line-height: 1.8;
    font-size: 14px;
}



/* Global Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    width: 100%;
}

/* Header Right - Contact & Social */
.header-right {
    display: flex;
    align-items: center;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.icon-circle:hover {
    transform: scale(1.1);
    background: white !important;
    color: var(--primary-red) !important;
}


/* Hero Section */
.kiga-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    /* Abstract Dark Background */
    background-image: url("https://wallpaperaccess.com/full/3255381.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    /* Space for header */
}



.hero-content-wrapper {
    z-index: 10;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.kiga-subheadline {
    font-size: 40px;
    font-weight: 500;
    color: white;
    margin-bottom: -10px;
    letter-spacing: 1px;
}

.kiga-headline {
    font-size: 80px;
    font-weight: 500;
    color: white;
    /* DIGITAL */
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    /* Space between words */
    justify-content: center;
    flex-wrap: wrap;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.kiga-headline .outline-text {
    /* AGENCY - Red fill with white outline feeling, or just Red as per ref? Ref shows Red fill for Digital Agency? No wait, ref says "YOUR ULTIMATE" (White), "DIGITAL AGENCY" (White with Red Stroke? Or Red Fill?) 
       Let's look at image: "YOUR ULTIMATE" is white. "DIGITAL" is Outline (White stroke, transparent fill). "AGENCY" is Red Fill.
       Wait, let me look at the reference again. 
       "YOUR ULTIMATE" -> White.
       "DIGITAL" -> White Outline/Transparent Fill.
       "AGENCY" -> Red Fill.
       Ah, the request says "DIGITAL AGENCY (Red/White Outline)". Let's try that mix.
    */
    -webkit-text-stroke: 2px var(--primary-red);
    color: transparent;
    /* Outline effect */
    position: relative;
}

/* Correction based on visual trend */
/* .kiga-headline rules were empty, removed. */

/* Overriding to match provided description more simpler if distinct classes not used in HTML yet */
.kiga-headline span {
    color: var(--primary-red);
    -webkit-text-stroke: 0;
}

/* Wait, I put class "outline-text" on AGENCY in html. Let's make "DIGITAL" white and "AGENCY" Red outline? Or vice versa?
   Let's stick to a strong impact:
   YOUR ULTIMATE (White)
   DIGITAL (White)
   AGENCY (Red Outline or Red Filled)
   In HTML I wrote: <h1>DIGITAL <span class="outline-text">AGENCY</span></h1>
   Let's make .outline-text Red Outlined.
*/
.outline-text {
    color: var(--primary-red);
    /* Fill Red */
    /* Or if we want outline */
    /*
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-red);
    */
}


.kiga-description {
    font-size: 14px;
    color: #888;
    max-width: 800px;
    margin: 20px auto 40px;
    line-height: 1.8;
}

.btn-kiga-red {
    background: var(--primary-red);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

.btn-kiga-red:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-3px);
}

/* Marquee */
.hero-marquee {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 0px;
    /* Reduced from 190px */
    width: 100%;
    background: var(--primary-red);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 20;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-marquee {
        margin-top: 0 !important;
        /* Ensure flush on mobile */
        padding: 10px 0;
        /* Slightly tighter padding for mobile */
    }

    .marquee-content span {
        font-size: 18px;
        /* Smaller font on mobile */
        margin: 0 20px;
    }
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    padding-left: 100%;
    /* Start off screen */
}

.marquee-content span {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin: 0 30px;
    text-transform: uppercase;
}

.marquee-content i {
    color: white;
    font-size: 18px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Sections Styling Adjustment for Dark Theme */
.why-choose-us,
.kiga-services-section {
    background-color: #111;
    /* Dark Grey */
    color: white;
}

.why-content .main-heading {
    color: white;
}

.why-content .subtitle {
    color: var(--primary-red);
}

.why-content .description {
    color: #999;
}

.feature-item {
    background: #1a1a1a;
    border: 1px solid #333;
}

.feature-header span {
    color: white;
}

.feature-content p {
    color: #aaa;
}

/* Services Cards */
.service-card {
    background: #1a1a1a;
    border: 1px solid #333;
}

.service-card:hover {
    border-color: var(--primary-red);
}

.seo-card,
.marketing-card,
.technical-card,
.ppc-card {
    background: #1a1a1a;
    /* Override light colors */
}

.card-content h3 {
    color: white;
}

.services-nav a {
    color: #888;
}

.services-nav a.active {
    color: var(--primary-red);
}

.services-nav a.active::after {
    background: var(--primary-red);
}

.services-title {
    color: white;
}

@media (max-width: 768px) {
    .kiga-headline {
        font-size: 24px !important;
        line-height: 1.1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .kiga-headline span:not(.hidden) {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }

    .kiga-headline span.hidden {
        display: none !important;
    }

    .kiga-subheadline {
        font-size: 20px;
    }

    .header {
        padding: 10px 20px;
    }

    .nav {
        display: none;
        /* Mobile menu to be implemented */
    }

    .header-right {
        display: none;
        /* Tiny mobile optimization */
    }

    /* Simple hamburger fallback would be needed, keeping simple for now */
}

body {
    overflow-x: hidden;
}

/* Header Styling - Layered Look */
/* Header Styling - Layered Look - REPLACED BY TAILWIND IN BASE.HTML
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

}


.logo-icon-box {
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-10deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.logo-letters {
    color: black;
    font-weight: 800;
    font-size: 24px;
    transform: rotate(10deg);
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: white;
    font-weight: 800;
    line-height: 0.8;
    margin: 0;
    font-size: 28px;
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 12px;
    color: var(--primary-red);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 2px;
}

.brand-tagline {
    font-size: 7px;
    color: #eee;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 1px;
    opacity: 0.8;
}

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon-circle {
    background: var(--primary-red);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.phone-number {
    color: white;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.contact-label {
    color: #b0b0b0;
    font-size: 12px;
    font-weight: 500;
}

.header-socials {
    display: flex;
    gap: 12px;
}

.social-circle {
    background: var(--primary-red);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-circle:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-3px);
}


.nav-item-dropdown {
    position: relative;
    padding-bottom: 5px;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: 0.3s;
}

.dropdown-menu-layer {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.95);
    min-width: 220px;
    padding: 15px 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu-layer {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu-layer a {
    display: block;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    border-left: 3px solid transparent;
}

.dropdown-menu-layer a:hover {
    background: rgba(211, 47, 47, 0.1);
    color: var(--primary-red);
    border-left-color: var(--primary-red);
    padding-left: 30px;
}
*/

/* Mobile Navigation Fixes */
@media (max-width: 992px) {
    .nav-item-dropdown .dropdown-menu-layer {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        display: none;
    }

    .nav-item-dropdown.active .dropdown-menu-layer {
        display: block;
    }
}

.phone-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.phone-info span {
    font-size: 12px;
}

.phone-info b {
    font-size: 16px;
}

/* Secondary Page Heroes */
.secondary-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url("https://wallpaperaccess.com/full/3255381.jpg") center/cover no-repeat;
    position: relative;
    color: white;
}

.secondary-hero .hero-overlay {
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.secondary-hero .hero-content-wrapper {
    z-index: 10;
    max-width: 800px;
    grid-template-columns: 1fr;
}

.secondary-hero h1 {
    font-size: 56px;
    text-transform: uppercase;
    font-weight: 800;
    margin: 10px 0;
}

.secondary-hero p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 1;
}

/* Diagonal Shapes */
/* Diagonal Shapes Removed */
.hero::before {
    content: none;
    display: none;
}

.hero-content-wrapper {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    z-index: 10;
    align-items: center;
}

.hero-text h4 {
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #e0e0e0;
}

.hero-text h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 500px;
    color: #f1f1f1;
}

.btn-learn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 40px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-learn:hover {
    background-color: var(--accent-color);
}

/* Form Styling */
.hero-form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    color: var(--dark-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-form-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    outline: none;
    font-size: 14px;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--dark-color);
}

/* Bottom Controls */
.hero-controls {
    position: absolute;
    bottom: 100px;
    left: 80px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.control-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.whatsapp-float {
    position: absolute;
    bottom: 100px;
    right: 40px;
    z-index: 10;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Offered Services Section - Redesign */
.kiga-services-section {
    padding: 100px 0;
    /* Dark Background */
    background-color: var(--dark-bg);
    color: white;
    text-align: center;
}

.services-header {
    margin-bottom: 60px;
}

.highlight-text-sm {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.2;
}

.section-description {
    font-size: 14px;
    color: #888;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Service Grid - Premium Redesign */
.new-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.new-service-card {
    background-color: #0e0e0e;
    /* Almost black */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    position: relative;
    overflow: hidden;
    background-color: #f7f7f7;
    /* Pale gray background */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
}

.new-service-card .main-icon,
.new-service-card h3,
.new-service-card .arrow-link {
    color: #1a1a1a;
    /* Darker text for light background */
}

.new-service-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
}

.new-service-card .overlay-code,
.new-service-card .red-bar-chart {
    background: #f7f7f7;
    /* Matching background */
}

.new-service-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 20px 50px rgba(211, 47, 47, 0.1);
    background-color: #ffffff;
    transform: translateY(-5px);
}

.new-service-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    background-color: #121212;
    transform: translateY(-5px);
}

.new-service-card:hover .main-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-red);
}

.new-service-card:hover .card-icon-wrapper div,
.new-service-card:hover .card-icon-wrapper span {
    transform: scale(1.2);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    perspective: 1000px;
}

.card-icon-wrapper {
    position: relative;
    /* width: 80px; height: 80px; Removed fixed size to let icons stack naturally */
}

.main-icon {
    font-size: 50px;
    color: white;
    display: inline-block;
    transition: all 0.4s ease;
    animation: floating 5s ease-in-out infinite;
}

/* Icon Specifics */
.red-bar-chart {
    position: absolute;
    bottom: -10px;
    left: 40px;
    font-size: 24px;
    color: var(--primary-red);
    background: #0e0e0e;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: floating 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.icon-tag-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-red);
    background: transparent;
    color: var(--primary-red);
    margin-top: 1px;
    animation: floating 3.5s ease-in-out infinite;
}

.overlay-code {
    position: absolute;
    bottom: -5px;
    right: -10px;
    font-size: 24px;
    color: var(--primary-red);
    background: #0e0e0e;
    padding: 2px 5px;
    animation: floating 4.5s ease-in-out infinite;
}


/* Arrow Interaction */
.arrow-link {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: 0.4s;
    opacity: 0.7;
    position: absolute;
    top: 0;
    right: 0;
}

.new-service-card:hover .arrow-link {
    opacity: 1;
    transform: rotate(-45deg);
    color: var(--primary-red);
}

.card-bottom h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.card-bottom p {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 0;
}


/* Responsive */
@media (max-width: 1024px) {
    .new-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .new-services-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .section-title {
        font-size: 28px;
    }

    .kiga-services-section {
        padding: 60px 15px;
    }
}

@media (max-width: 1024px) {
    .header {
        padding: 20px 40px;
    }

    .hero {
        padding: 0 40px;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
    }

    .why-choose-us .container {
        padding: 0 40px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #fff;
}

.why-choose-us .container {
    width: 100%;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content .subtitle {
    color: #444;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.why-content .main-heading {
    color: #1a3c8a;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.why-content .description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 30px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 10px;
    overflow: hidden;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-header span {
    font-weight: 600;
    color: #0d1b2a;
    font-size: 16px;
}

.feature-header i {
    background: #4a6cf7;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: 0.3s;
}

.feature-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding-top: 0;
}

.feature-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    padding-right: 40px;
}

.feature-item.active {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(74, 108, 247, 0.15);
}

.feature-item.active .feature-content {
    max-height: 200px;
    padding-top: 15px;
}

.feature-item.active .feature-header i {
    transform: rotate(180deg);
    background: #0d1b2a;
}

.feature-item:hover {
    box-shadow: 0 10px 30px rgba(74, 108, 247, 0.15);
    transform: translateY(-2px);
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Stats Section */
.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 20px 0;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 500;
    color: #dc3545;
    /* Red color from design */
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    margin-bottom: 10px;
}

.stat-item i {
    font-size: 18px;
    color: #333;
}

/* CTA Section */
.cta-section {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: #f8faff;
    border-top: 1px solid #edf2ff;
}

.cta-content p {
    font-size: 20px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 20px;
}

.cta-content .highlight {
    color: #dc3545;
}

.btn-cta {
    background: #0d1b2a;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-cta:hover {
    background: #4a6cf7;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .why-choose-us .container {
        grid-template-columns: 1fr;
    }
}

/* About KIGA Section (Redesigned) */
.about-kiga {
    padding: 10px 0;
    background-color: #0c0c0f;
    color: rgb(186, 29, 29);
    position: relative;
    overflow: hidden;
}

/* Top-right corner gradient glow */
.about-kiga::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

/* Bottom-left corner gradient glow */
.about-kiga::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.kiga-subtitle {
    color: var(--primary-red);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.kiga-heading {
    font-size: 48px;
    font-weight: 500;
    color: white;
    line-height: 1.2;
    margin-bottom: 30px;
}

.highlight-red {
    color: var(--primary-red);
}

.about-text {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text strong {
    color: rgb(228, 59, 59);
}

.btn-know-more {
    margin-top: 20px;
    display: inline-block;
}

/* About Cards */
.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    background: #d71717;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.3s;
}

.about-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    /* Slight increase */
    height: 60px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    transition: 0.3s;
}

.about-card:hover .card-icon {
    background: var(--primary-red);
}

.card-text h3 {
    font-size: 22px;
    font-weight: 500;
    color: white;
    margin-bottom: 10px;
}

.card-text p {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .kiga-heading {
        font-size: 32px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
}

/* Delivering Value Section */
.delivering-value-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    color: white;
}

.delivering-value-section .header-content {
    margin-bottom: 60px;
}

.delivering-value-section .section-title {
    font-size: 48px;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: white;
}

.delivering-value-section .section-description {
    max-width: 800px;
    margin: 0 auto 50px;
    color: #888;
    line-height: 1.8;
    font-size: 14px;
}

.main-content-layout {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-top: 20px;
}

.value-features-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-card {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-red);
    background: #181818;
    transform: translateX(10px);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: white;
    font-weight: 500;
}

.value-card p {
    color: #888;
    font-size: 14px;
    line-height: 1.8;
}

.value-visual-container {
    flex: 1.2;
}

.futuristic-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(211, 47, 47, 0.15);
}

/* Value Section Responsiveness */
@media (max-width: 1024px) {
    .main-content-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .delivering-value-section .section-title {
        font-size: 32px;
    }
}

/* Delivery Process Section */
.delivery-process-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.delivery-process-section .header-content {
    margin-bottom: 80px;
}

.delivery-process-section .section-title {
    font-size: 48px;
    margin-top: 10px;
    font-weight: 500;
}

.process-timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 40px;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.step-label {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.step-marker {
    width: 12px;
    height: 12px;
    background: var(--primary-red);
    border: 3px solid var(--dark-bg);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.process-card:hover {
    background: #181818;
    border-color: var(--primary-red);
    transform: translateY(-10px);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 24px;
    color: #fff;
    transition: 0.3s;
}

.process-card:hover .process-icon {
    background: var(--primary-red);
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
}

.process-card p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

/* Process Section Responsiveness */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-line {
        display: none;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .timeline-steps {
        overflow-x: auto;
        padding-bottom: 20px;
    }
}

/* Our Projects (Portfolio) Section */
.portfolio-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-header .header-left h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 10px;
}



.btn-all-projects {
    display: inline-flex;
    align-items: center;
    background: var(--primary-red);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-all-projects:hover {
    background: #b02626;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

.project-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    min-width: calc(50% - 15px);
    flex-shrink: 0;
}

.project-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.project-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.project-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.project-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.portfolio-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.portfolio-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.portfolio-carousel::-webkit-scrollbar {
    display: none;
}

.portfolio-slider-btn {
    background: var(--primary-red);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
    z-index: 10;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

.portfolio-slider-btn:hover {
    background: white;
    color: var(--primary-red);
    transform: scale(1.1);
}

/* Portfolio Responsiveness */
@media (max-width: 1024px) {
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .portfolio-carousel .project-card {
        min-width: 100%;
    }

    .portfolio-slider-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .portfolio-header .header-left h2 {
        font-size: 36px;
    }

    .project-card {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }

    .project-card img {
        width: 100%;
        height: 220px;
        min-height: 220px;
        max-height: 220px;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .project-info {
        bottom: 15px;
        left: 15px;
    }

    .project-info h3 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .project-info span {
        font-size: 12px;
    }

    .portfolio-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Industries We Serve Section */
.industries-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.industries-section .section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.industries-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.industries-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.industries-carousel::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.industry-card {
    flex: 0 0 calc(16.66% - 17px);
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 170px;
}

.industry-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    background: #181818;
}

.industry-icon {
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.slider-btn {
    width: 45px;
    height: 45px;
    background: var(--primary-red);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: #b02626;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: white;
    width: 20px;
    border-radius: 10px;
}

/* Industries Responsiveness */
@media (max-width: 1200px) {
    .industry-card {
        flex: 0 0 calc(25% - 15px);
    }
}

@media (max-width: 768px) {
    .industry-card {
        flex: 0 0 calc(50% - 10px);
    }

    .industries-section .section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .industry-card {
        flex: 0 0 100%;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.testimonials-section .header-content {
    margin-bottom: 60px;
}

.testimonials-section .section-title {
    font-size: 42px;
    font-weight: 800;
    margin-top: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.testimonial-slider-card {
    background: #121212;
    border: 1px solid #888;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.testimonial-slider-card .stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 25px;
    display: flex;
    gap: 5px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: white;
    font-weight: 500;
    margin-bottom: 30px;
}

.client-info-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Align nav to bottom right */
    width: 100%;
}

.client-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-slider-card .client-details span {
    color: #aaaaaa !important;
    /* Improved default legibility */
    font-size: 13px;
    transition: color 0.3s ease;
    display: block;
}

.testimonial-slider-card:hover .client-details span {
    color: #ffffff !important;
    /* Brighter white on hover */
}

.slider-nav {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background: #b01a1a;
    /* Red background as in image */
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.nav-btn:hover {
    background: white;
    color: #b01a1a;
    transform: scale(1.1);
}

/* Dots Styling (Below Card) */
.slider-nav-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.dots-container {
    display: flex;
    gap: 8px;
}

.dots-container .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dots-container .dot.active {
    background: white;
    transform: scale(1.2);
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-slider-card .client-details span {
    color: #aaaaaa !important;
    /* Improved default legibility */
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
}

.testimonial-slider-card:hover .client-details span {
    color: #ffffff !important;
    /* Brighter white on hover */
}

.slider-nav {
    display: flex;
    gap: 15px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid rgba(211, 47, 47, 0.3);
    border-radius: 50%;
    color: var(--primary-red);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.nav-btn:hover {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

/* Rating Summary Card - Re-Styled for Premium Look */
.rating-summary-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.rating-score {
    font-size: 80px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 15px;
}

.rating-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 30px;
    display: flex;
    gap: 6px;
}

.reviews-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    width: 100%;
}

/* Testimonials Responsiveness */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-slider-card,
    .rating-summary-card {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .testimonial-text {
        font-size: 18px;
    }

    .client-info-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .rating-score {
        font-size: 72px;
    }
}

/* Footer CTA Section - Premium Redesign */
.footer-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
        url('https://www.transparenttextures.com/patterns/carbon-fibre.png'),
        #111;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.1;
}

.cta-text p {
    color: #b0b0b0;
    font-size: 14px;
    max-width: 500px;
}

.cta-form {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 8px 8px 25px;
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    margin: 0 auto;
}

.cta-form:focus-within {
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.2);
}

.cta-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    outline: none;
}

.cta-form .btn-submit {
    background: var(--primary-red);
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 18px;
}

.cta-form .btn-submit:hover {
    background: white;
    color: var(--primary-red);
    transform: rotate(360deg) scale(1.1);
}

/* Main Footer - Luxury Aesthetic */
.main-footer {
    background-color: #080808;
    padding: 100px 0 30px;
    color: white;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.footer-col h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
    margin-top: 10px;
}

.footer-description {
    color: #999;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 35px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    transform: translateY(-8px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--primary-red);
    opacity: 0;
    transition: 0.3s;
    margin-left: -15px;
}

.footer-links a:hover {
    color: white;
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
    margin-left: 0;
}

.footer-contact li {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    color: #999;
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact .icon-box {
    color: var(--primary-red);
    font-size: 18px;
    min-width: 20px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    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;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Footer Responsiveness */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .footer-cta .container {
        flex-direction: column;
        text-align: center;
    }

    .cta-text p {
        margin: 0 auto;
    }

    .cta-form {
        min-width: 100%;
        max-width: 100%;
        padding: 5px 5px 5px 15px;
    }

    .cta-form input {
        font-size: 14px;
    }

    .cta-form .btn-submit {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        padding: 60px 0;
    }

    .cta-text h2 {
        font-size: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

}

/* Recurring Popup Styles */
.recurring-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.recurring-popup-content {
    background: #0f0f0f;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-popup-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-popup-btn:hover {
    border-color: #fff;
}

.popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.popup-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.popup-subtitle {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.5;
    max-width: 450px;
    margin: 0 auto;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.popup-input,
.popup-textarea {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 12px 15px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.popup-input:focus,
.popup-textarea:focus {
    border-color: var(--primary-red);
}

.popup-input {
    flex: 1;
}

.popup-textarea {
    resize: vertical;
    min-height: 80px;
}

.full-width {
    width: 100%;
}

.captcha-box {
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    padding: 10px 15px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 300px;
}

.captcha-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-left input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: #999;
}

.captcha-left label {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.captcha-right {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.captcha-right img {
    height: 22px;
    margin-bottom: 2px;
}

.captcha-text {
    font-size: 10px;
    color: #555;
}

.popup-submit-btn {
    background: #cc0000;
    /* Darker red */
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 5px;
}

.popup-submit-btn:hover {
    background: #ff0000;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }

    .recurring-popup-content {
        padding: 20px;
    }

    .popup-title {
        font-size: 20px;
    }

    .popup-subtitle {
        font-size: 13px;
    }
}

/ *   F O R C I N G   C A C H E   R E F R E S H   -   A N T I G R A V I T Y   F I X   A T T E M P T   * /     
/* FINAL ROBUST FIXES FOR MOBILE ALIGNMENT AND MARQUEE */
.marquee-content span {
    white-space: nowrap !important;
}

@media (max-width: 768px) {
    .kiga-headline span:not(.hidden) {
        white-space: normal !important;
    }
}