* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background .3s ease
,        color .3s ease;
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}
section {
    padding: 100px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.section-header p {
    color: var(--text-muted);
    max-width: 700px;
    margin: auto;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover {
    transform: translateY(-3px);
}
.btn-secondary {
    border: 1px solid var(--border);
}
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.card:hover {
    transform: translateY(-8px);
}

/**footer**/
footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
}

/*responsive*/
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }
}
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}
@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* ===================================
   NAVIGATION
=================================== */

nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 65px;
}

.brand h2 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand span {
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
}

.nav-links a.active {
    color: var(--accent);
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

#themeToggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
}

/* hero*/
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-tag {
    display: inline-block;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600;
}
.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero p {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
}
.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
   
}
/*stat*/
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.stats-grid .card {
    text-align: center;
}
.stats-grid h3 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 10px;
}

/* ===================================
   SERVICES
=================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
/* ===================================
   BENEFITS
=================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
/* ===================================
   FOUNDER
=================================== */
.founder-container {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    align-items: center;
}
.founder-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}
.founder-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.founder-content h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}
.founder-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}
/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .founder-container {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .founder-content h2 {
        font-size: 2rem;
    }
}
/* ===================================
   TESTIMONIALS
=================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
/* ===================================
   CTA
=================================== */
.cta-box {
    background: var(--surface);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}
.cta-box h2 {
    margin-bottom: 20px;
}
.cta-box p {
    margin-bottom: 30px;
    color: var(--text-muted);
}

/* ===================================
   FOOTER
=================================== */

footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-grid h3 {
    margin-bottom: 15px;
}

.footer-grid ul li {
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border);
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cta-box {
        padding: 40px 25px;
    }
}

/* ===================================
   SOCIAL ICONS
=================================== */

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-icons a {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: var(--surface);
    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-6px);
}

.social-icons img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.social-icons a:nth-child(1):hover {
    box-shadow: 0 0 20px rgba(10, 102, 194, 0.35);
}

.social-icons a:nth-child(2):hover {
    box-shadow: 0 0 20px rgba(228, 64, 95, 0.35);
}

.social-icons a:nth-child(3):hover {
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.35);
}

.social-icons a:nth-child(4):hover {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.35);
}

.social-icons a:nth-child(5):hover {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.35);
}


.nav-links a.active {
    color: var(--accent);
    font-weight: 600;
}
/* ===================================
   PAGE HERO
=================================== */
.page-hero {
    padding: 140px 0 100px;
    text-align: center;
    background: var(--surface);
}
.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.page-hero p {
    max-width: 800px;
    margin: auto;
    color: var(--text-muted);
}
/* ===================================
   SERVICE DETAIL
=================================== */
.service-detail {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}
.service-detail:last-child {
    border-bottom: none;
}
.service-detail h2 {
    color: var(--accent);
    margin-bottom: 20px;
}
.service-detail p {
    color: var(--text-muted);
    margin-bottom: 20px;
}
.service-detail ul {
    padding-left: 20px;
    list-style: disc;
}
.service-detail li {
    margin-bottom: 10px;
}
/* ===================================
   PROCESS
=================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}
.process-step {
    text-align: center;
}
/* ===================================
   RESPONSIVE
=================================== */
@media (max-width:768px){
    .page-hero h1 {
        font-size: 2.3rem;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
}
/* ===================================
   SERVICES HERO
=================================== */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: center;
}
.hero-left {
    text-align: left;
}
.hero-left p {
    max-width: 650px;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.hero-right {
    text-align: center;
}


/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-left {
        text-align: center;
    }
    .hero-left p {
        margin: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-right {
        margin-top: 30px;
    }
    .hero-right img {
        max-width: 350px;
    }
}
.hero-right img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.hero-right img:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}
.process-step h3 {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
}
.process-step h4 {
    margin-bottom: 15px;
}


/* ===================================
   SOCIAL CONNECT
=================================== */
.social-connect {
    padding: 100px 0;
    text-align: center;
}
.social-connect p {
    max-width: 700px;
    margin: 20px auto 40px;
    color: var(--text-muted);
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}
.social-icons a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.social-icons a:hover {
    transform: translateY(-5px);
}
.social-icons img {
    width: 28px;
    height: 28px;
}


/* ===================================
   WHATSAPP FLOAT
=================================== */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25D366;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

    z-index: 999;

    animation: whatsappBounce 3s infinite;
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
}

@keyframes whatsappBounce {
    0%,20%,50%,80%,100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ===================================
   CAREER FORM
=================================== */

.career-form{
    max-width:800px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.career-form input,
.career-form textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid var(--border);
    border-radius:10px;
    background:var(--bg);
    color:var(--text);
    font-family:inherit;
}

.career-form label{
    font-weight:600;
}

/* ===================================
   MAP SECTION
=================================== */

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* ===================================
   MOBILE MENU
=================================== */

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
}
/* ===================================
   MOBILE NAVIGATION
=================================== */

@media (max-width: 992px) {

    .menu-toggle {
        display: block;
    }

    .nav-actions {
        display: none;
    }

    .nav-links {

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: var(--bg);

        border-top: 1px solid var(--border);

        flex-direction: column;

        gap: 0;

        max-height: 0;

        overflow: hidden;

        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 500px;
    }

    .nav-links a {
        display: block;
        padding: 18px;
        text-align: center;
        border-bottom: 1px solid var(--border);
    }

    .services-grid,
    .benefits-grid,
    .services-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-container,
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-left,
    .hero-left p {
        text-align: center;
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .hero h1,
    .page-hero h1 {
        font-size: 2.3rem;
    }

    .services-grid,
    .benefits-grid,
    .testimonial-grid,
    .services-grid-large,
    .footer-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box {
        padding: 40px 25px;
    }

    .brand h2 {
        font-size: 1rem;
    }

    .brand span {
        font-size: 0.6rem;
    }
}

/* ===================================
   FORMS
=================================== */

.career-form,
.consultation-form {
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.career-form input,
.career-form select,
.career-form textarea,
.consultation-form input,
.consultation-form select,
.consultation-form textarea {

    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
}

.career-form textarea,
.consultation-form textarea {
    resize: vertical;
}

/* ===================================
   DEVELOPER CREDIT
=================================== */

.developer-link {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-left: 10px;

    padding: 8px 18px;

    border-radius: 999px;

    background: linear-gradient(
        135deg,
        var(--accent),
        #4f7cff
    );

    color: #ffffff !important;

    font-weight: 700;

    letter-spacing: 0.5px;

    border: 2px solid rgba(255,255,255,0.15);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.15),
        0 0 0 rgba(79,124,255,0);

    transition: all 0.3s ease;

    position: relative;

    overflow: hidden;

}

/* Shine effect */

.developer-link::before {

    content: '';

    position: absolute;

    top: 0;

    left: -120%;

    width: 60%;

    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );

    animation: shine 4s infinite;

}

/* Hover */

.developer-link:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.25),
        0 0 25px rgba(79,124,255,0.45);

}

/* Pulse */

.developer-link {

    animation: pulseGlow 3s infinite;

}

@keyframes pulseGlow {

    0% {

        box-shadow:
            0 8px 20px rgba(0,0,0,0.15),
            0 0 0 rgba(79,124,255,0);

    }

    50% {

        box-shadow:
            0 8px 20px rgba(0,0,0,0.15),
            0 0 20px rgba(79,124,255,0.55);

    }

    100% {

        box-shadow:
            0 8px 20px rgba(0,0,0,0.15),
            0 0 0 rgba(79,124,255,0);

    }

}

@keyframes shine {

    0% {

        left: -120%;

    }

    100% {

        left: 150%;

    }

}


/* ===================================
   PREMIUM SERVICE CARD
=================================== */

.service-card-large {

    position: relative;

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: 20px;

    padding: 30px;

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: all 0.35s ease;

}

/* Animated top line */

.service-card-large::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--accent),
        transparent
    );

    transition: left 0.6s ease;

}

/* Hover State */

.service-card-large:hover {

    transform: translateY(-8px);

    border-color: var(--accent);

    background: rgba(255,255,255,0.03);

}

/* Move line across top */

.service-card-large:hover::before {

    left: 100%;

}

/* Title */

.service-card-large h3 {

    color: var(--accent);

    margin-bottom: 15px;

    transition: .3s ease;

}

.service-card-large:hover h3 {

    transform: translateX(3px);

}

/* Text */

.service-card-large p {

    color: var(--text-muted);

    margin-bottom: 20px;

}

/* List */

.service-card-large ul {

    padding-left: 18px;

}

.service-card-large li {

    margin-bottom: 10px;

}
.service-card-large::after {

    content: '';

    position: absolute;

    inset: 0;

    background: radial-gradient(
        circle at top right,
        rgba(79,124,255,.08),
        transparent 60%
    );

    opacity: 0;

    transition: .4s ease;

    pointer-events: none;

}

.service-card-large:hover::after {

    opacity: 1;

}

.service-link{
    display:inline-block;
    margin-top:15px;
    color:var(--accent);
    font-weight:600;
}

/* ===================================
   SERVICES DETAIL GRID
=================================== */
.services-detail-grid {
    padding: 70px 0;
}
.services-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}
@media (max-width: 992px) {
    .services-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}