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

/* Custom Properties */
:root {
    /* Dark Theme (Default) */
    --bg-main: #09090b;
    --bg-offset: #000000;
    --bg-card: rgb(0 0 0 / 83%);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --header-bg: rgba(255, 255, 255, 0.98);
    --header-text: #09090b;

    /* Brand Colors - Constant */
    --primary: #FF3100;
    --primary-glow: rgba(255, 49, 0, 0.4);
    --secondary: #FF6A00;
    --secondary-glow: rgba(255, 106, 0, 0.4);
    --gradient-brand: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);

    /* Fonts & Transitions */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
    --bg-main: #ffffff;
    --bg-offset: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-muted: #475569;
    --glass-border: rgba(15, 23, 42, 0.08);
    --glass-bg: rgba(15, 23, 42, 0.02);
    --header-bg: rgba(255, 255, 255, 0.98);
    --header-text: #0f172a;
    --primary-glow: rgba(255, 49, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

p {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Components */
.bg-glass {
    background: rgba(9, 9, 11, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    transition: var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 49, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--primary-glow);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(255, 49, 0, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.badge {
    margin-bottom: 1rem;
    margin-top: 2rem;
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 49, 0, 0.1);
    border: 1px solid rgba(255, 49, 0, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

}

.section-padding {
    padding: 1rem 0;
}

.bg-darker {
    background-color: var(--bg-offset);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    background-color: #ffffff;
    color: #0f172a;
}

.header .nav-links a {
    color: #0f172a;
}

.header .mobile-menu-toggle {
    color: #0f172a;
}

.header .theme-toggle-btn {
    color: #0f172a;
    background: rgba(15, 23, 42, 0.05);
}

.header.scrolled {
    background-color: var(--header-bg) !important;
    color: var(--header-text) !important;
}

.header.scrolled .nav-links a {
    color: var(--header-text);
}

.header.scrolled .theme-toggle-btn {
    color: var(--header-text);
    border-color: rgba(0, 0, 0, 0.1);
}

.header-logo {
    max-height: 75px;
    width: auto;
    transition: var(--transition-normal);
}

.footer-logo {
    max-height: 55px;
    width: auto;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 8px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-normal);
}

/* Scrolled Header State */
.header.scrolled {
    background: var(--header-bg) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08) !important;
    backdrop-filter: blur(10px);
}

.header.scrolled .nav-wrapper {
    height: 60px;
}

.header.scrolled .header-logo {
    max-height: 50px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: var(--transition-normal);
}

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

/* Theme Toggle Button */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.theme-toggle-btn {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.theme-toggle-btn i {
    font-size: 1.1rem;
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* Icons visibility */
.light-icon {
    opacity: 0;
    transform: translateY(20px);
}

.dark-icon {
    opacity: 1;
    transform: translateY(0);
}

[data-theme="light"] .light-icon {
    opacity: 1;
    transform: translateY(0);
}

[data-theme="light"] .dark-icon {
    opacity: 0;
    transform: translateY(-20px);
}

[data-theme="light"] .theme-toggle-btn {
    background: rgba(15, 23, 42, 0.05);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Ensure mobile toggle is dark enough in scrolled light mode */
.header.scrolled .mobile-menu-toggle {
    color: var(--header-text);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--bg-main);
    /* Changed from hardcoding rgba(9, 9, 11, 0.95) */
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.header .nav-links .dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-main);
    border-bottom: 1px solid var(--glass-border);
}

.header.scrolled .nav-links .dropdown-menu {
    background: var(--header-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-links .dropdown-menu a {
    color: var(--header-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled .nav-links .dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--primary);
}

.header .nav-links .dropdown-menu a::after {
    display: none !important;
    /* disable slider nav effect */
}

.header .nav-links .dropdown-menu a:hover,
.header .nav-links .dropdown-menu a.active {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.02);
    padding-left: 2rem;
}

.header .nav-links .dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

/* Glow effects */
.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}

.sphere-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    left: -10%;
}

.sphere-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: 10%;
    right: -5%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    line-height: 1;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-stat {
    position: absolute;
    bottom: 20%;
    left: 0;
    z-index: 2;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.stat-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--primary-glow);
    animation: float 6s ease-in-out infinite;
}

@keyframes spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-15px);
    }
}

/* Services Section */
.section-header {
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Services Swiper Carousel */
.services-slider-wrapper {
    position: relative;
    padding: 0 60px;
    /* Space for the arrows */
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .services-slider-wrapper {
        padding: 0 20px;
    }
}

.services-carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0 3rem 0;
}

.services-carousel-container .swiper-slide {
    height: auto;
    /* Ensure cards stretch to fill height */
}

/* Position arrows outside the swiper container */
.services-slider-wrapper .swiper-button-next,
.services-slider-wrapper .swiper-button-prev {
    color: var(--primary);
    background: rgba(9, 9, 11, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    transition: var(--transition-fast);
    top: 50%;
    margin-top: -40px;
    /* Adjust for padding and height */
}

.services-slider-wrapper .swiper-button-prev {
    left: 0;
}

.services-slider-wrapper .swiper-button-next {
    right: 0;
}

.services-slider-wrapper .swiper-button-next:hover,
.services-slider-wrapper .swiper-button-prev:hover {
    background: var(--gradient-brand);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px var(--primary-glow);
}

.services-slider-wrapper .swiper-button-next::after,
.services-slider-wrapper .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 768px) {

    .services-slider-wrapper .swiper-button-next,
    .services-slider-wrapper .swiper-button-prev {
        display: none;
        /* Hide arrows on small screens due to space constraints */
    }
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(255, 49, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--gradient-brand);
    color: #fff;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.service-card:hover .service-link {
    gap: 0.8rem;
}

/* Innovation Section */
.innovation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.innovation-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-shape {
    position: relative;
    width: 350px;
    height: 350px;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .ring {
    border-color: rgba(0, 0, 0, 0.15);
}

/* Specificity fix for rotating rings in light mode */
[data-theme="light"] .ring-1 {
    border-top-color: var(--primary);
}

[data-theme="light"] .ring-2 {
    border-right-color: var(--secondary);
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-top-color: var(--primary);
    animation: spin 15s linear infinite;
}

.ring-2 {
    width: 80%;
    height: 80%;
    border-right-color: var(--secondary);
    animation: spin 20s linear infinite reverse;
}

.ring-3 {
    width: 60%;
    height: 60%;
    background: var(--gradient-brand);
    opacity: 0.1;
    filter: blur(20px);
    animation: pulse 4s ease-in-out infinite;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: #ffffff;
    padding: 25px;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 49, 0, 0.4);
    animation: pulse 4s ease-in-out infinite;
}

.center-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Clientele Section */
.carousel-container {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
    position: relative;
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-darker), transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-darker), transparent);
}

.client-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    padding: 2rem 3rem;
    color: var(--text-muted);
}

.client-logo:hover {
    color: var(--primary);
    transform: translateY(-5px);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
}

.stars {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    gap: 5px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.client-profile h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.client-profile p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
}

.shadow-glow {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px var(--primary-glow);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-main);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    z-index: 2;
}

.experience-badge span {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.about-content {
    padding-right: 2rem;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-list {
    margin-bottom: 2.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.feature-list i {
    font-size: 1.2rem;
}

/* CTA Section */
.cta-box {
    padding: 5rem 2rem;
    background: linear-gradient(rgba(255, 49, 0, 0.1), rgba(255, 106, 0, 0.1));
    border: 1px solid rgba(255, 49, 0, 0.2);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.pulse-btn {
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 0 0 var(--primary-glow);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 49, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 49, 0, 0);
    }
}

/* Footer High-End Redesign */
.footer {
    position: relative;
    border-top: 1px solid var(--glass-border);
    padding-top: 6rem;
    background: var(--bg-offset);
    overflow: hidden;
}

/* Glowing top border effect */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

/* Background ambient glow */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(255, 49, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.brand-col p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 320px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-main);
    /* Changed from white */
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.social-links a:hover {
    background: var(--gradient-brand);
    border-color: transparent;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 49, 0, 0.3);
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    position: relative;
    display: inline-block;
}

/* Small accent line under headings */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 1.1rem;
}

.footer-col ul a {
    color: var(--text-muted);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info li:hover {
    color: var(--text-main);
    transform: translateX(8px);
}

.contact-info i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    backdrop-filter: blur(5px);
    margin-top: 0 !important;
}

.contact-info li:hover i {
    background: var(--gradient-brand);
    color: white !important;
    -webkit-text-fill-color: white !important;
    border-color: transparent;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 49, 0, 0.4);
}

.contact-info i.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-bottom {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animations Triggered by JS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(255, 49, 0, 0.05) 0%, transparent 70%);
}

.testimonials-slider {
    padding: 2rem 0 4rem;
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card:hover {
    border-color: rgba(255, 49, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 2rem;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.testimonial-client {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.client-avatar {
    display: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 0 15px rgba(255, 49, 0, 0.3);
}

.client-details h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.client-details p {
    margin: 5px 0 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.testimonials-pagination {
    margin-top: 1rem !important;
    position: relative !important;
    bottom: 0 !important;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--text-muted);
    opacity: 0.3;
    transition: 0.4s;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    width: 35px;
    border-radius: 10px;
    background: var(--primary);
    opacity: 1;
}

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

    .hero-content {
        gap: 2rem;
    }

    .innovation-wrapper {
        gap: 3rem;
    }

    .about-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .main-nav .btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav.active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-main);
        backdrop-filter: blur(15px);
        padding: 2rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .main-nav.active .nav-links a {
        font-size: 1.2rem;
        color: var(--text-main);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text p {
        max-width: 100%;
        margin: 0 auto 2rem;
    }

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

    .hero-visual {
        display: flex;
        width: 100%;
        margin-top: 1rem;
    }

    .hero-visual .hero-img {
        width: 100%;
        max-height: 350px;
        object-fit: cover;
    }

    .innovation-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .innovation-visual {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding-right: 0;
    }

    .experience-badge {
        bottom: -10px;
        right: 10px;
        padding: 1.5rem;
    }

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

    .founder-badge {
        bottom: -10px !important;
        right: 10px !important;
        padding: 1rem !important;
    }

    .inner-hero h1 {
        font-size: 2.5rem !important;
    }

    .inner-hero p {
        font-size: 1rem !important;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 4rem 0;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

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

    .cta-box {
        padding: 3rem 1.5rem;
    }
}