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

:root {
    --bg-color: #fcfcfd;
    --text-color: #0f172a;
    --accent-color: #2563eb;
    --grid-color: rgba(15, 23, 42, 0.03);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --border-color: rgba(15, 23, 42, 0.08);
    --card-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    --section-padding: 80px 5%;
    --card-padding: 30px;
    --grid-gap: 30px;
    --container-max-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    /* Grid Background */
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
}

.doodle {
    position: absolute;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
}

/* Navigation */
nav {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 300;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 0.6;
}

/* Sections */
section {
    padding: var(--section-padding);
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 300;
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-color);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
}

/* Portfolio Section */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--grid-gap);
}

.portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
}

.card-img {
    width: 100%;
    height: 300px;
    background: #f0f0f0;
    overflow: hidden;
}

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

.card-content {
    padding: var(--card-padding);
}

.card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
}

.service-card {
    padding: var(--card-padding);
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.learn-more {
    margin-top: auto;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--accent-color);
    transition: var(--transition);
}

.service-card:hover .learn-more {
    transform: translateX(5px);
}

/* Marquee Footer */
.marquee-container {
    background: #000;
    color: white;
    padding: 60px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-right: 50px;
    text-transform: uppercase;
}

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

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

/* Slider Styles */
.slider-section {
    padding: 60px 5%;
    background: #fdfdfd;
    overflow: hidden;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
}

.slide img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: none;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: black;
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

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

.dot.active {
    background: black;
    width: 35px;
    border-radius: 10px;
}

/* Brands Section Styling */
.brands-section {
    padding: 40px 0;
    background: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    margin: 0 auto;
}

.brands-tagline {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 35px;
    font-weight: 700;
}

.brands-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.4;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.brand-item {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    filter: grayscale(1);
    transition: var(--transition);
}

.brand-item:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Responsive */
/* Floating Icons */
.floating-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
    font-size: 1.5rem;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-whatsapp {
    background: #25D366;
    color: white;
}

.floating-phone {
    background: #000;
    color: white;
}


/* Contact Footer Section */
.contact-footer {
    padding: 60px 5%;
    text-align: center;
    background: #fcfcfc;
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 30px auto 0;
}

.contact-item {
    padding: 30px;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-item p a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.95rem;
}

.contact-item p a:hover {
    color: #ff4d4d;
}

/* Sections Polish */
.svg-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    display: inline-block;
}

.contact-icon .svg-icon {
    width: 32px;
    height: 32px;
}

.service-icon .svg-icon {
    width: 48px;
    height: 48px;
}

.footer-bottom .svg-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-color);
}

.section-title span {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 400;
    color: #888;
    background: #f0f0f0;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    display: inline-block;
}

/* Hero Founder Image Adjustment */
.hero img {
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

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

@media (max-width: 768px) {
    nav {
        width: 100%;
        top: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block !important;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .hero img {
        max-height: 350px !important;
    }

    .portfolio-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title {
        margin-bottom: 30px;
    }

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

/* Platform Mastery Section */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.platform-card-new {
    background: white;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.platform-card-new:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
}

.platform-card-new h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.platform-card-new p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

.platform-tag {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.tag-meta {
    background: #eef2ff;
    color: #4f46e5;
}

.tag-google {
    background: #fff7ed;
    color: #ea580c;
}

/* Main Footer */
.footer-main {
    background: #000;
    color: white;
    padding: 60px 5% 30px;
    position: relative;
}

.footer-grid-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.footer-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-info p {
    color: #999;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    color: #555;
    font-size: 0.9rem;
}

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

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

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

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

.floating-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}