:root {
    --primary-color: #ff4d4d;
    --primary-gradient: linear-gradient(135deg, #ff4d4d 0%, #ff8c40 100%);
    --bg-dark: #080808;
    --bg-card: #121212;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-white: #ffffff;
    --text-grey: #a0a0a0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.fade-out {
    transform: translateY(-100%);
    pointer-events: none;
}

.loader {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-circle {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 77, 77, 0.1);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader span {
    position: absolute;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Custom Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

/* Background Decorations */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: pulse 10s infinite alternate;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: #ff8c40;
    bottom: -50px;
    left: -100px;
}

.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-gradient);
    filter: blur(80px);
    opacity: 0.1;
    z-index: -1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite alternate;
}

.blob-1 {
    top: 10%;
    left: 10%;
}

.blob-2 {
    bottom: 10%;
    right: 10%;
    animation-delay: -4s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    100% {
        border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
    }
}

/* Helper Classes */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header .dash {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header p {
    color: var(--text-grey);
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.4s ease;
    backdrop-filter: blur(0);
}

header.scrolled {
    padding: 15px 8%;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: white;
}

.logo-text span {
    color: var(--primary-color);
    margin-right: 2px;
}

.logo .tagline {
    font-size: 0.65rem;
    color: #888;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
    opacity: 0.8;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
    opacity: 1;
}

.cta-button {
    padding: 12px 30px;
    background: var(--primary-gradient);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(255, 77, 77, 0.2);
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 77, 77, 0.4);
    filter: brightness(1.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 0 8%;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: -1;
}

.hero-content {
    z-index: 10;
}

.hero .subtitle {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-grey);
    max-width: 550px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.btn.primary {
    background: var(--primary-gradient);
    color: white;
}

.btn.primary:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 77, 77, 0.3);
}

.btn.secondary {
    border: 1px solid var(--border-glass);
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.locations-compact {
    display: flex;
    gap: 30px;
}

.loc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-grey);
    font-size: 0.9rem;
}

.loc-item i {
    color: var(--primary-color);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    padding: 15px;
    position: relative;
    z-index: 5;
    transition: 0.5s;
}

.main-card {
    width: 380px;
    height: 480px;
    transform: rotate(3deg);
}

.main-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: grayscale(10%);
}

.card-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    color: black;
    padding: 12px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.badge-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    font-weight: 700;
    font-size: 0.8rem;
}

.floating-box {
    position: absolute;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

.floating-box i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.floating-box span {
    font-weight: 600;
    font-size: 0.9rem;
}

.box-1 {
    top: 50px;
    left: -30px;
    animation-delay: 0s;
}

.box-2 {
    bottom: 80px;
    left: -50px;
    animation-delay: 1s;
}

.box-3 {
    top: 150px;
    right: -40px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* About Section */
.about {
    padding: 120px 8%;
    background: #0a0a0a;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text-content h3 {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text-content p {
    color: var(--text-grey);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card h4 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.skills-showcase {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
}

.skill-bar-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.skill-percentage {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .skills-showcase {
        padding: 25px 20px;
    }

    .about-text-content h3 {
        font-size: 2.2rem;
    }
}

.progress-line {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.progress-line span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
    transition: 1.5s ease;
}

/* Services */
.services {
    padding: 120px 8%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 77, 77, 0.3);
    background: rgba(255, 77, 77, 0.02);
}

.service-card::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    filter: blur(60px);
    bottom: -50px;
    right: -50px;
    opacity: 0;
    transition: 0.4s;
}

.service-card:hover::after {
    opacity: 0.2;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 77, 77, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-grey);
    font-size: 1rem;
    margin-bottom: 25px;
}

.service-list {
    list-style: none;
}

.service-list li {
    font-size: 0.9rem;
    color: var(--text-white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.service-list li i {
    color: var(--primary-color);
    font-size: 0.7rem;
}

/* Portfolio Refined */
.portfolio {
    padding: 120px 8%;
    background: #080808;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-item.large {
    grid-column: span 2;
}

.portfolio-img-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: 0.5s;
    backdrop-filter: blur(5px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1) rotate(1deg);
}

.portfolio-info .category {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
    transform: translateY(20px);
    transition: 0.5s 0.1s;
}

.portfolio-info h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: white;
    transform: translateY(20px);
    transition: 0.5s 0.2s;
}

.portfolio-item:hover .portfolio-info .category,
.portfolio-item:hover .portfolio-info h3 {
    transform: translateY(0);
}

.view-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s 0.3s;
}

.portfolio-item:hover .view-link {
    opacity: 1;
    transform: translateY(0);
}

/* Contact */
.contact {
    padding: 120px 8%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 50px;
}

.detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item.clickable {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    cursor: pointer;
}

.detail-item.clickable:hover {
    transform: translateX(10px);
}

.detail-item.clickable:hover .icon-box {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 77, 77, 0.3);
}

.loc-item.clickable {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.loc-item.clickable:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.detail-item h4 {
    color: var(--text-grey);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.detail-item p a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Form Style Improved */
.contact-form-container {
    background: rgba(255, 255, 255, 0.01);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.05) 0%, transparent 60%);
    z-index: -1;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

input,
select,
textarea {
    width: 100%;
    padding: 22px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 77, 77, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 77, 77, 0.15);
}

.submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px !important;
    font-size: 1.1rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.submit-btn i {
    transition: 0.4s ease;
}

.submit-btn:hover i {
    transform: translate(8px, -8px);
}

.submit-btn:active {
    transform: scale(0.98);
}

/* Footer */
footer {
    padding: 60px 8% 40px;
    background: #050505;
    border-top: 1px solid var(--border-glass);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border-glass);
    color: var(--text-grey);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-grey);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Partners Section Redesigned */
.partners {
    padding: 80px 8%;
    background: #050505;
    text-align: center;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 180px;
    gap: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.partner-name {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-grey);
    opacity: 0.8;
    transition: 0.3s;
}

.partner-card:hover .partner-name {
    color: var(--primary-color);
    opacity: 1;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.partner-card img {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
    filter: brightness(1.2);
    transition: 0.4s;
}

.partner-card:hover img {
    transform: scale(1.1);
}

/* Section reveal fixes */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

section.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

/* Responsive Redesign */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-visual {
        transform: scale(0.9);
    }
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        height: auto;
        padding-top: 150px;
        padding-bottom: 80px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }

    .locations-compact {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        margin-top: 60px;
        display: flex;
        justify-content: center;
    }

    .about-grid,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-text-content {
        text-align: center;
    }

    .stats-grid {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    header {
        padding: 20px 5%;
    }

    .hero {
        padding: 120px 5% 60px;
        overflow: visible;
    }

    .main-card {
        width: 100%;
        max-width: 320px;
        height: 400px;
    }

    .floating-box {
        display: flex;
        padding: 12px 20px;
        gap: 10px;
        white-space: nowrap;
    }

    .floating-box i {
        font-size: 1rem;
    }

    .floating-box span {
        font-size: 0.8rem;
    }

    .box-1 {
        top: 30px;
        left: -10px;
    }

    .box-2 {
        bottom: 60px;
        left: -20px;
    }

    .box-3 {
        top: 120px;
        right: -10px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(20px);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1000;
        border-left: 1px solid var(--border-glass);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    nav ul li a {
        font-size: 1.5rem;
    }

    .cta-button {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item.large {
        grid-column: span 1;
    }

    .contact-info h2 {
        font-size: 2.5rem;
    }

    .contact-form-container {
        padding: 40px 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .partner-card {
        width: 100%;
        max-width: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about {
        padding: 80px 5%;
    }

    .about-grid {
        gap: 40px;
        overflow: visible;
    }

    .skills-showcase {
        width: 100%;
        padding: 30px 20px;
        box-sizing: border-box;
    }

    .hero-visual {
        max-width: 100%;
        overflow: visible;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .about-text-content h3 {
        font-size: 1.8rem;
    }
}

/* Floating Chat Button Styles */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: scale(0) translateY(20px);
    animation: chat-entrance 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 2s;
}

@keyframes chat-entrance {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.chat-icon {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: 0.4s;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-card), var(--bg-card)), var(--primary-gradient);
    background-origin: border-box;
    -webkit-background-clip: content-box, border-box;
    background-clip: content-box, border-box;
}

.floating-chat:hover .chat-icon {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 20px 45px rgba(255, 77, 77, 0.3);
}

.floating-chat i {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.notification-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: #25d366;
    /* WhatsApp Green */
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.chat-tooltip {
    position: absolute;
    right: 80px;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(255, 77, 77, 0.2);
}

.chat-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #ff4d4d;
}

.floating-chat:hover .chat-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .floating-chat {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .chat-tooltip {
        display: none;
    }
}

/* Reviews Section */
.reviews {
    padding: 120px 8%;
    background: #080808;
    position: relative;
    border-top: 1px solid var(--border-glass);
}

.reviews-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.reviews-list-container {
    height: 100%;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 15px;
}

.reviews-grid::-webkit-scrollbar {
    width: 6px;
}

.reviews-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.reviews-grid::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 77, 77, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
}

.reviewer-details h4 {
    font-size: 1.1rem;
    margin: 0;
    color: white;
    font-family: var(--font-heading);
}

.reviewer-details span {
    font-size: 0.8rem;
    color: var(--text-grey);
    display: block;
    margin-top: 3px;
}

.review-rating {
    color: #ffb400;
    font-size: 0.95rem;
    display: flex;
    gap: 3px;
}

.review-body p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

.review-form-container {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.review-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.03) 0%, transparent 50%);
    z-index: -1;
}

.review-form-container h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
}

@media (max-width: 992px) {
    .reviews-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .reviews-grid {
        max-height: 400px;
    }
}

/* Store Section */
.store {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 25px;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 77, 77, 0.1);
}

.product-img-container {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.product-card:hover .product-img-container img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    font-weight: 700;
}

.product-price {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-grey);
    margin-bottom: 25px;
    line-height: 1.5;
    height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.buy-now-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.buy-now-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.buy-now-btn i {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .store-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .store-header h1 {
        font-size: 2.5rem !important;
    }

    .store-header {
        padding: 120px 5% 40px;
    }

    .product-card {
        margin-bottom: 20px;
    }

    .buy-now-btn {
        padding: 12px;
        font-size: 0.9rem;
    }

    /* General Mobile Padding Fixes */
    header {
        padding: 15px 5%;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        display: none;
        /* Hide on mobile to save space, or move into nav */
    }
}