*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#fffdf8;
    color:#222;
    line-height:1.6;
}

/* HEADER */
header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:white;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo img{
    width:140px;
    height:auto;
    display:block;
}

nav{
    display:flex;
    gap:28px;
}

nav a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    font-size:16px;
    position:relative;
    transition:0.3s;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#c9a227;
    transition:0.3s;
}

nav a:hover{
    color:#c9a227;
}

nav a:hover::after{
    width:100%;
}
.btn {
    padding: 12px 30px;
    background: #c9a227;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: .3s;
    z-index: 2;
    display: inline-block;
}

.btn:hover {
    transform: scale(1.05);
    background: #b8962e;
}
/* HERO */
.service-hero{
    position:relative;
    height:55vh;
    background:linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../image/") center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(201, 162, 39, 0.12);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
}

.hero-content h1{
    font-size:52px;
    color:white;
    margin-bottom:15px;
    text-shadow:0 4px 15px rgba(0,0,0,0.4);
}

.hero-content p{
    font-size:18px;
    color:#f5f5f5;
    line-height:1.8;
}

/* MAIN SECTION */
.service-detail{
    padding:90px 8%;
}

.service-container{
    max-width:1100px;
    margin:auto;
    background:white;
    border-radius:20px;
    padding:60px 50px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    text-align:center;
    border:1px solid rgba(201, 162, 39, 0.15);
}

.service-icon{
    width:100px;
    height:100px;
    margin:0 auto 25px;
    background:linear-gradient(135deg, #c9a227, #e6c766);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 8px 20px rgba(201, 162, 39, 0.3);
}

.service-icon i{
    font-size:40px;
    color:white;
}

.service-container h2{
    font-size:38px;
    color:#1f1f1f;
    margin-bottom:25px;
}

.service-container p{
    font-size:17px;
    color:#555;
    margin-bottom:20px;
    line-height:1.9;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}

/* FEATURES */
.feature-boxes{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:25px;
    margin-top:50px;
}

.feature-card{
    background:#fffaf0;
    padding:30px 25px;
    border-radius:16px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    transition:0.4s;
    border:1px solid rgba(201, 162, 39, 0.15);
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(201, 162, 39, 0.18);
}

.feature-card i{
    font-size:30px;
    color:#c9a227;
    margin-bottom:15px;
}

.feature-card h3{
    font-size:22px;
    margin-bottom:12px;
    color:#222;
}

.feature-card p{
    font-size:15px;
    color:#666;
    margin:0;
    line-height:1.7;
}

/* CTA */
.service-cta{
    margin-top:60px;
    background:linear-gradient(135deg, #fff8e7, #fff3cf);
    padding:40px 30px;
    border-radius:18px;
    border:1px solid rgba(201, 162, 39, 0.2);
    box-shadow:0 10px 25px rgba(201, 162, 39, 0.12);
}

.service-cta h3{
    font-size:30px;
    color:#1f1f1f;
    margin-bottom:15px;
}

.service-cta p{
    margin-bottom:25px;
    color:#555;
}

.cta-btn{
    display:inline-block;
    padding:14px 34px;
    background:#c9a227;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 6px 16px rgba(201, 162, 39, 0.3);
}

.cta-btn:hover{
    background:#b8921d;
    transform:translateY(-3px) scale(1.03);
    box-shadow:0 10px 22px rgba(201, 162, 39, 0.4);
}

/* FOOTER */
.footer{
    background:#111;
    color:white;
    padding-top:60px;
}

.footer-container{
    width:85%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:30px;
    padding-bottom:40px;
}

.footer-box h3{
    color:#c9a227;
    margin-bottom:18px;
    font-size:22px;
}

.footer-box p,
.footer-box a{
    color:#ddd;
    font-size:15px;
    line-height:1.8;
    text-decoration:none;
    display:block;
    margin-bottom:8px;
    transition:0.3s;
}

.footer-box a:hover{
    color:#c9a227;
    padding-left:5px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    padding:18px 10px;
    font-size:14px;
    color:#bbb;
}

/* RESPONSIVE */
@media(max-width:992px){
    .feature-boxes{
        grid-template-columns:1fr;
    }

    .service-container{
        padding:45px 25px;
    }

    .hero-content h1{
        font-size:40px;
    }

    .service-container h2{
        font-size:30px;
    }
}

@media(max-width:768px){
    header{
        flex-direction:column;
        gap:15px;
        padding:15px 5%;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:16px;
    }

    .service-detail{
        padding:60px 5%;
    }
}

/* WEB DEV */
.dev-hero{
    position:relative;
    height:55vh;
    background:linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../image/") center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(201, 162, 39, 0.10);
}

.dev-hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.dev-hero-content h1{
    font-size:52px;
    color:white;
    margin-bottom:15px;
    text-shadow:0 4px 15px rgba(0,0,0,0.4);
}

.dev-hero-content p{
    font-size:18px;
    color:#f5f5f5;
    line-height:1.8;
}

/* INTRO */
.dev-intro{
    padding:90px 8%;
}

.intro-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:40px;
    align-items:start;
}

.intro-left{
    background:white;
    padding:45px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border:1px solid rgba(201, 162, 39, 0.15);
}

.small-tag{
    display:inline-block;
    background:#fff4d1;
    color:#b8921d;
    font-weight:700;
    font-size:13px;
    padding:8px 16px;
    border-radius:30px;
    margin-bottom:18px;
    letter-spacing:0.5px;
}

.intro-left h2{
    font-size:38px;
    color:#1f1f1f;
    margin-bottom:20px;
    line-height:1.3;
}

.intro-left p{
    font-size:16px;
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

.intro-right{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.highlight-box{
    background:linear-gradient(135deg, #fffaf0, #fffdf8);
    padding:28px 24px;
    border-radius:18px;
    border:1px solid rgba(201, 162, 39, 0.18);
    box-shadow:0 8px 22px rgba(0,0,0,0.05);
    transition:0.35s;
}

.highlight-box:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 28px rgba(201, 162, 39, 0.15);
}

.highlight-box i{
    font-size:28px;
    color:#c9a227;
    margin-bottom:14px;
}

.highlight-box h3{
    font-size:22px;
    color:#222;
    margin-bottom:10px;
}

.highlight-box p{
    font-size:15px;
    color:#666;
    line-height:1.7;
}

/* PROCESS */
.dev-process{
    padding:90px 8%;
    background:#fffaf0;
}

.process-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.process-container h2{
    font-size:40px;
    margin-bottom:12px;
    color:#1f1f1f;
}

.process-sub{
    max-width:760px;
    margin:0 auto 45px;
    color:#666;
    font-size:17px;
    line-height:1.8;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}

.process-card{
    background:white;
    padding:35px 25px;
    border-radius:18px;
    box-shadow:0 8px 22px rgba(0,0,0,0.06);
    border:1px solid rgba(201, 162, 39, 0.12);
    position:relative;
    transition:0.4s;
}

.process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 16px 30px rgba(201, 162, 39, 0.16);
}

.step-number{
    position:absolute;
    top:18px;
    right:18px;
    font-size:14px;
    font-weight:700;
    color:#c9a227;
    background:#fff4d1;
    padding:6px 12px;
    border-radius:20px;
}

.process-card i{
    font-size:32px;
    color:#c9a227;
    margin-bottom:18px;
    margin-top:12px;
}

.process-card h3{
    font-size:22px;
    margin-bottom:12px;
    color:#222;
}

.process-card p{
    font-size:15px;
    color:#666;
    line-height:1.7;
}

/* WHY CHOOSE US */
.why-dev{
    padding:90px 8%;
}

.why-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.why-container h2{
    font-size:40px;
    margin-bottom:45px;
    color:#1f1f1f;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.why-card{
    background:white;
    padding:35px 28px;
    border-radius:18px;
    box-shadow:0 8px 22px rgba(0,0,0,0.06);
    border-top:4px solid #c9a227;
    transition:0.35s;
}

.why-card:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 15px 30px rgba(201, 162, 39, 0.16);
}

.why-card i{
    font-size:30px;
    color:#c9a227;
    margin-bottom:16px;
}

.why-card h3{
    font-size:22px;
    margin-bottom:12px;
    color:#222;
}

.why-card p{
    font-size:15px;
    color:#666;
    line-height:1.7;
}

/* CTA */
.dev-cta{
    padding:0 8% 90px;
}

.cta-box{
    max-width:1100px;
    margin:auto;
    background:linear-gradient(135deg, #fff7e0, #fff2c4);
    padding:50px 30px;
    border-radius:22px;
    text-align:center;
    border:1px solid rgba(201, 162, 39, 0.2);
    box-shadow:0 12px 30px rgba(201, 162, 39, 0.12);
}

.cta-box h3{
    font-size:34px;
    color:#1f1f1f;
    margin-bottom:15px;
}

.cta-box p{
    color:#555;
    font-size:16px;
    margin-bottom:25px;
}

.cta-btn{
    display:inline-block;
    padding:14px 34px;
    background:#c9a227;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 6px 16px rgba(201, 162, 39, 0.3);
}

.cta-btn:hover{
    background:#b8921d;
    transform:translateY(-3px) scale(1.03);
    box-shadow:0 10px 22px rgba(201, 162, 39, 0.4);
}

/* SEO */
/* HERO */
.seo-hero{
    position:relative;
    height:55vh;
    background:linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../image/") center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    overflow:hidden;
}

.seo-overlay{
    position:absolute;
    inset:0;
    background:rgba(201, 162, 39, 0.10);
}

.seo-hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.seo-hero-content h1{
    font-size:52px;
    color:white;
    margin-bottom:15px;
    text-shadow:0 4px 15px rgba(0,0,0,0.4);
}

.seo-hero-content p{
    font-size:18px;
    color:#f5f5f5;
    line-height:1.8;
}

/* INTRO */
.seo-intro{
    padding:90px 8%;
}

.seo-intro-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:35px;
    align-items:center;
}

.seo-intro-text{
    background:white;
    padding:45px;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(0,0,0,0.07);
    border-left:5px solid #c9a227;
}

.seo-tag{
    display:inline-block;
    background:#fff4d1;
    color:#b8921d;
    font-weight:700;
    font-size:13px;
    padding:8px 16px;
    border-radius:30px;
    margin-bottom:18px;
    letter-spacing:0.5px;
}

.seo-intro-text h2{
    font-size:38px;
    color:#1f1f1f;
    margin-bottom:20px;
    line-height:1.3;
}

.seo-intro-text p{
    font-size:16px;
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

/* STATS */
.seo-stats{
    display:grid;
    gap:20px;
}

.stat-box{
    background:linear-gradient(135deg, #fffaf0, #fffdf8);
    padding:28px 24px;
    border-radius:18px;
    border:1px solid rgba(201, 162, 39, 0.18);
    box-shadow:0 8px 22px rgba(0,0,0,0.05);
    transition:0.35s;
}

.stat-box:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 28px rgba(201, 162, 39, 0.15);
}

.stat-box i{
    font-size:28px;
    color:#c9a227;
    margin-bottom:14px;
}

.stat-box h3{
    font-size:22px;
    color:#222;
    margin-bottom:10px;
}

.stat-box p{
    font-size:15px;
    color:#666;
    line-height:1.7;
}

/* SEO SERVICES */
.seo-services{
    padding:90px 8%;
    background:#fffaf0;
}

.seo-services-container{
    max-width:1100px;
    margin:auto;
}

.seo-services-container h2{
    text-align:center;
    font-size:40px;
    margin-bottom:12px;
    color:#1f1f1f;
}

.seo-subtitle{
    max-width:760px;
    margin:0 auto 50px;
    text-align:center;
    color:#666;
    font-size:17px;
    line-height:1.8;
}

/* TIMELINE */
.timeline{
    position:relative;
    max-width:900px;
    margin:auto;
}

.timeline::before{
    content:"";
    position:absolute;
    left:28px;
    top:0;
    width:3px;
    height:100%;
    background:linear-gradient(to bottom, #c9a227, #f0d87c);
    border-radius:10px;
}

.timeline-item{
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:22px;
    margin-bottom:35px;
}

.timeline-icon{
    min-width:58px;
    width:58px;
    height:58px;
    border-radius:50%;
    background:linear-gradient(135deg, #c9a227, #e6c766);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:22px;
    box-shadow:0 8px 18px rgba(201, 162, 39, 0.25);
    position:relative;
    z-index:2;
}

.timeline-content{
    flex:1;
    background:white;
    padding:24px 24px;
    border-radius:16px;
    box-shadow:0 8px 22px rgba(0,0,0,0.06);
    border:1px solid rgba(201, 162, 39, 0.12);
    transition:0.35s;
}

.timeline-content:hover{
    transform:translateY(-5px);
    box-shadow:0 14px 28px rgba(201, 162, 39, 0.14);
}

.timeline-content h3{
    font-size:22px;
    color:#222;
    margin-bottom:10px;
}

.timeline-content p{
    font-size:15px;
    color:#666;
    line-height:1.8;
}

/* BENEFITS */
.seo-benefits{
    padding:90px 8%;
}

.benefits-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.benefits-container h2{
    font-size:40px;
    margin-bottom:45px;
    color:#1f1f1f;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.benefit-card{
    background:white;
    padding:35px 24px;
    border-radius:18px;
    box-shadow:0 8px 22px rgba(0,0,0,0.06);
    border-bottom:4px solid #c9a227;
    transition:0.35s;
}

.benefit-card:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 15px 30px rgba(201, 162, 39, 0.16);
}

.benefit-card i{
    font-size:30px;
    color:#c9a227;
    margin-bottom:16px;
}

.benefit-card h3{
    font-size:21px;
    margin-bottom:12px;
    color:#222;
}

.benefit-card p{
    font-size:15px;
    color:#666;
    line-height:1.7;
}

/* CTA */
.seo-cta{
    padding:0 8% 90px;
}

.seo-cta-box{
    max-width:1100px;
    margin:auto;
    background:linear-gradient(135deg, #fff7e0, #fff2c4);
    padding:50px 30px;
    border-radius:22px;
    text-align:center;
    border:1px solid rgba(201, 162, 39, 0.2);
    box-shadow:0 12px 30px rgba(201, 162, 39, 0.12);
}

.seo-cta-box h3{
    font-size:34px;
    color:#1f1f1f;
    margin-bottom:15px;
}

.seo-cta-box p{
    color:#555;
    font-size:16px;
    margin-bottom:25px;
}

.seo-btn{
    display:inline-block;
    padding:14px 34px;
    background:#c9a227;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 6px 16px rgba(201, 162, 39, 0.3);
}

.seo-btn:hover{
    background:#b8921d;
    transform:translateY(-3px) scale(1.03);
    box-shadow:0 10px 22px rgba(201, 162, 39, 0.4);
}

/* SOCIAL */
/* HERO */
.smm-hero{
    position:relative;
    height:60vh;
    background:linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.45)),
    url("../image/download (17).jpg") center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right, rgba(201,162,39,0.20), transparent 40%);
}

.smm-hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.hero-tag{
    display:inline-block;
    background:rgba(255,255,255,0.12);
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:18px;
    border:1px solid rgba(255,255,255,0.15);
}

.smm-hero-content h1{
    font-size:54px;
    color:white;
    margin-bottom:15px;
    text-shadow:0 4px 15px rgba(0,0,0,0.35);
}

.smm-hero-content p{
    font-size:18px;
    color:#f2f2f2;
    line-height:1.8;
}

/* COMMON TAG */
.section-tag{
    display:inline-block;
    background:#fff4d1;
    color:#b8921d;
    font-weight:700;
    font-size:13px;
    padding:8px 16px;
    border-radius:30px;
    margin-bottom:18px;
    letter-spacing:0.4px;
}

/* INTRO */
.smm-intro{
    padding:90px 8%;
}

.smm-intro-container{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
    align-items:center;
}

.smm-text h2{
    font-size:40px;
    color:#1f1f1f;
    margin-bottom:20px;
    line-height:1.3;
}

.smm-text p{
    font-size:16px;
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

.smm-btn{
    display:inline-block;
    margin-top:10px;
    padding:14px 34px;
    background:#c9a227;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 6px 16px rgba(201, 162, 39, 0.3);
}

.smm-btn:hover{
    background:#b8921d;
    transform:translateY(-3px) scale(1.03);
    box-shadow:0 10px 22px rgba(201, 162, 39, 0.4);
}

/* SOCIAL PLATFORM CARDS */
.social-platforms{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:22px;
}

.platform-card{
    background:white;
    padding:28px 22px;
    border-radius:20px;
    box-shadow:0 10px 24px rgba(0,0,0,0.06);
    border:1px solid rgba(201,162,39,0.12);
    transition:0.35s;
    position:relative;
    overflow:hidden;
}

.platform-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(to right, #c9a227, #f0d87c);
}

.platform-card:hover{
    transform:translateY(-8px) rotate(-1deg);
    box-shadow:0 16px 30px rgba(201,162,39,0.14);
}

.platform-card i{
    font-size:30px;
    color:#c9a227;
    margin-bottom:14px;
}

.platform-card h3{
    font-size:21px;
    color:#222;
    margin-bottom:10px;
}

.platform-card p{
    font-size:15px;
    color:#666;
    line-height:1.7;
}

/* STRATEGY */
.smm-strategy{
    padding:90px 8%;
    background:#fffaf0;
}

.strategy-container{
    max-width:1250px;
    margin:auto;
    text-align:center;
}

.strategy-container h2{
    font-size:40px;
    margin-bottom:12px;
    color:#1f1f1f;
}

.strategy-subtitle{
    max-width:780px;
    margin:0 auto 50px;
    color:#666;
    font-size:17px;
    line-height:1.8;
}

.strategy-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.strategy-card{
    background:white;
    padding:35px 25px;
    border-radius:22px;
    box-shadow:0 10px 24px rgba(0,0,0,0.06);
    position:relative;
    transition:0.35s;
    border:1px solid rgba(201,162,39,0.10);
}

.strategy-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(201,162,39,0.14);
}

.strategy-number{
    width:58px;
    height:58px;
    border-radius:50%;
    margin:0 auto 18px;
    background:linear-gradient(135deg, #c9a227, #e6c766);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:700;
    box-shadow:0 8px 18px rgba(201,162,39,0.25);
}

.strategy-card h3{
    font-size:22px;
    color:#222;
    margin-bottom:12px;
}

.strategy-card p{
    font-size:15px;
    color:#666;
    line-height:1.8;
}

/* RESULTS */
.smm-results{
    padding:90px 8%;
}

.results-container{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:35px;
    align-items:start;
}

.results-left h2{
    font-size:40px;
    color:#1f1f1f;
    margin-bottom:20px;
    line-height:1.3;
}

.results-left p{
    font-size:16px;
    color:#555;
    line-height:1.9;
}

.results-right{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:22px;
}

.result-box{
    background:linear-gradient(135deg, #fffefb, #fff7e4);
    padding:28px 22px;
    border-radius:18px;
    border:1px solid rgba(201,162,39,0.14);
    box-shadow:0 8px 22px rgba(0,0,0,0.05);
    transition:0.35s;
}

.result-box:hover{
    transform:translateY(-7px) scale(1.02);
    box-shadow:0 15px 30px rgba(201,162,39,0.14);
}

.result-box i{
    font-size:28px;
    color:#c9a227;
    margin-bottom:14px;
}

.result-box h3{
    font-size:21px;
    color:#222;
    margin-bottom:10px;
}

.result-box p{
    font-size:15px;
    color:#666;
    line-height:1.7;
}

/* CTA */
.smm-cta{
    padding:0 8% 90px;
}

.smm-cta-box{
    max-width:1100px;
    margin:auto;
    background:linear-gradient(135deg, #fff7e0, #fff2c4);
    padding:50px 30px;
    border-radius:24px;
    text-align:center;
    border:1px solid rgba(201, 162, 39, 0.2);
    box-shadow:0 12px 30px rgba(201, 162, 39, 0.12);
}

.smm-cta-box h3{
    font-size:34px;
    color:#1f1f1f;
    margin-bottom:15px;
}

.smm-cta-box p{
    color:#555;
    font-size:16px;
    margin-bottom:25px;
}

.cta-btn{
    display:inline-block;
    padding:14px 34px;
    background:#c9a227;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 6px 16px rgba(201, 162, 39, 0.3);
}

.cta-btn:hover{
    background:#b8921d;
    transform:translateY(-3px) scale(1.03);
    box-shadow:0 10px 22px rgba(201, 162, 39, 0.4);
}

/* ERP */

/* HERO */
.erp-hero{
    position:relative;
    height:60vh;
    background:linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.45)),
    url("../image/download (18).jpg") center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    overflow:hidden;
}

.erp-overlay{
    position:absolute;
    inset:0;
 background:radial-gradient(circle at top right, rgba(201,162,39,0.20), transparent 40%);

}

.erp-hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,0.12);
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:18px;
    border:1px solid rgba(255,255,255,0.15);
}

.erp-hero-content h1{
    font-size:54px;
    color:white;
    margin-bottom:15px;
    text-shadow:0 4px 15px rgba(0,0,0,0.35);
}

.erp-hero-content p{
    font-size:18px;
    color:#f2f2f2;
    line-height:1.8;
}

/* COMMON TAG */
.section-tag{
    display:inline-block;
    background:#fff4d1;
    color:#b8921d;
    font-weight:700;
    font-size:13px;
    padding:8px 16px;
    border-radius:30px;
    margin-bottom:18px;
    letter-spacing:0.4px;
}

/* INTRO */
.erp-intro{
    padding:90px 8%;
}

.erp-intro-container{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
    align-items:center;
}

.erp-text h2{
    font-size:40px;
    color:#1f1f1f;
    margin-bottom:20px;
    line-height:1.3;
}

.erp-text p{
    font-size:16px;
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

.erp-btn{
    display:inline-block;
    margin-top:10px;
    padding:14px 34px;
    background:#c9a227;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 6px 16px rgba(201, 162, 39, 0.3);
}

.erp-btn:hover{
    background:#b8921d;
    transform:translateY(-3px) scale(1.03);
    box-shadow:0 10px 22px rgba(201, 162, 39, 0.4);
}

/* DASHBOARD PREVIEW */
.erp-dashboard-preview{
    display:grid;
    gap:20px;
}

.dashboard-card{
    background:white;
    border-radius:22px;
    box-shadow:0 12px 28px rgba(0,0,0,0.06);
    border:1px solid rgba(201,162,39,0.12);
}

.big-card{
    padding:28px;
}

.dash-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.dash-top h3{
    font-size:22px;
    color:#222;
}

.dash-top span{
    font-size:13px;
    background:#fff4d1;
    color:#b8921d;
    padding:6px 12px;
    border-radius:20px;
    font-weight:600;
}

.dash-bars{
    display:flex;
    align-items:flex-end;
    gap:14px;
    height:160px;
    margin-bottom:25px;
}

.bar{
    flex:1;
    border-radius:10px 10px 0 0;
    background:linear-gradient(to top, #c9a227, #efd77d);
}

.bar1{ height:60%; }
.bar2{ height:85%; }
.bar3{ height:45%; }
.bar4{ height:95%; }

.dash-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.mini-stat{
    background:#fffaf0;
    padding:16px;
    border-radius:14px;
    border:1px solid rgba(201,162,39,0.10);
}

.mini-stat h4{
    font-size:18px;
    color:#222;
    margin-bottom:6px;
}

.mini-stat p{
    font-size:14px;
    color:#666;
}

.small-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.small-card{
    background:white;
    padding:24px 20px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 24px rgba(0,0,0,0.05);
    border:1px solid rgba(201,162,39,0.10);
    transition:0.35s;
}

.small-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 28px rgba(201,162,39,0.14);
}

.small-card i{
    font-size:28px;
    color:#c9a227;
    margin-bottom:12px;
}

.small-card h4{
    font-size:18px;
    color:#222;
}

/* ERP MODULES */
.erp-modules{
    padding:90px 8%;
    background:#fffaf0;
}

.erp-modules-container{
    max-width:1250px;
    margin:auto;
    text-align:center;
}

.erp-modules-container h2{
    font-size:40px;
    margin-bottom:12px;
    color:#1f1f1f;
}

.modules-subtitle{
    max-width:780px;
    margin:0 auto 50px;
    color:#666;
    font-size:17px;
    line-height:1.8;
}

.modules-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.module-card{
    background:white;
    padding:35px 25px;
    border-radius:22px;
    box-shadow:0 10px 24px rgba(0,0,0,0.06);
    border-top:4px solid #c9a227;
    transition:0.35s;
}

.module-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(201,162,39,0.14);
}

.module-card i{
    font-size:30px;
    color:#c9a227;
    margin-bottom:16px;
}

.module-card h3{
    font-size:22px;
    color:#222;
    margin-bottom:12px;
}

.module-card p{
    font-size:15px;
    color:#666;
    line-height:1.8;
}

/* SOLUTIONS */
.erp-solutions{
    padding:90px 8%;
}

.erp-solutions-container{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:35px;
    align-items:start;
}

.solutions-left h2{
    font-size:40px;
    color:#1f1f1f;
    margin-bottom:20px;
    line-height:1.3;
}

.solutions-left p{
    font-size:16px;
    color:#555;
    line-height:1.9;
}

.solutions-right{
    display:grid;
    gap:20px;
}

.solution-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:white;
    padding:24px 22px;
    border-radius:18px;
    box-shadow:0 10px 24px rgba(0,0,0,0.05);
    border:1px solid rgba(201,162,39,0.10);
    transition:0.35s;
}

.solution-box:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 28px rgba(201,162,39,0.14);
}

.solution-icon{
    min-width:56px;
    width:56px;
    height:56px;
    border-radius:50%;
    background:linear-gradient(135deg, #c9a227, #e6c766);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:22px;
    box-shadow:0 8px 18px rgba(201,162,39,0.25);
}

.solution-box h3{
    font-size:22px;
    color:#222;
    margin-bottom:8px;
}

.solution-box p{
    font-size:15px;
    color:#666;
    line-height:1.8;
}

/* WHY */
.erp-why{
    padding:90px 8%;
    background:#fffaf0;
}

.erp-why-container{
    max-width:1250px;
    margin:auto;
    text-align:center;
}

.erp-why-container h2{
    font-size:40px;
    margin-bottom:45px;
    color:#1f1f1f;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.why-card{
    background:white;
    padding:35px 24px;
    border-radius:20px;
    box-shadow:0 10px 24px rgba(0,0,0,0.06);
    border-bottom:4px solid #c9a227;
    transition:0.35s;
}

.why-card:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 16px 30px rgba(201,162,39,0.14);
}

.why-card i{
    font-size:30px;
    color:#c9a227;
    margin-bottom:16px;
}

.why-card h3{
    font-size:21px;
    color:#222;
    margin-bottom:12px;
}

.why-card p{
    font-size:15px;
    color:#666;
    line-height:1.7;
}

/* CTA */
.erp-cta{
    padding:0 8% 90px;
}

.erp-cta-box{
    max-width:1100px;
    margin:auto;
    background:linear-gradient(135deg, #fff7e0, #fff2c4);
    padding:50px 30px;
    border-radius:24px;
    text-align:center;
    border:1px solid rgba(201, 162, 39, 0.2);
    box-shadow:0 12px 30px rgba(201, 162, 39, 0.12);
}

.erp-cta-box h3{
    font-size:34px;
    color:#1f1f1f;
    margin-bottom:15px;
}

.erp-cta-box p{
    color:#555;
    font-size:16px;
    margin-bottom:25px;
}

.cta-btn{
    display:inline-block;
    padding:14px 34px;
    background:#c9a227;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 6px 16px rgba(201, 162, 39, 0.3);
}

.cta-btn:hover{
    background:#b8921d;
    transform:translateY(-3px) scale(1.03);
    box-shadow:0 10px 22px rgba(201, 162, 39, 0.4);
}

/* mobile */
/* HERO */
.app-hero{
  position:relative;
  height:60vh;
  background:linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.45)),
  url("../image/download (19).jpg") center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top left, rgba(201,162,39,0.20), transparent 40%);
}

.app-hero-content{
  position:relative;
  z-index:2;
  max-width:850px;
}

.hero-tag{
  display:inline-block;
  background:rgba(255,255,255,0.12);
  color:#fff;
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:18px;
  border:1px solid rgba(255,255,255,0.15);
}

.app-hero-content h1{
  font-size:54px;
  color:white;
  margin-bottom:15px;
  text-shadow:0 4px 15px rgba(0,0,0,0.35);
}

.app-hero-content p{
  font-size:18px;
  color:#f2f2f2;
  line-height:1.8;
}

/* COMMON TAG */
.section-tag{
  display:inline-block;
  background:#fff4d1;
  color:#b8921d;
  font-weight:700;
  font-size:13px;
  padding:8px 16px;
  border-radius:30px;
  margin-bottom:18px;
  letter-spacing:0.4px;
}

/* SHOWCASE */
.app-showcase{
  padding:90px 8%;
}

.app-showcase-container{
  max-width:1250px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

/* PHONE MOCKUPS */
.phone-mockups{
  display:flex;
  justify-content:center;
  align-items:flex-end;
  gap:25px;
  position:relative;
  min-height:500px;
}

.phone{
  width:220px;
  height:430px;
  background:#111;
  border-radius:35px;
  padding:12px;
  box-shadow:0 18px 35px rgba(0,0,0,0.15);
  position:relative;
  transition:0.35s;
}

.phone:hover{
  transform:translateY(-10px);
}

.phone-1{
  transform:rotate(-6deg);
}

.phone-2{
  transform:rotate(6deg);
}

.phone-1:hover{
  transform:rotate(-6deg) translateY(-10px);
}

.phone-2:hover{
  transform:rotate(6deg) translateY(-10px);
}

.phone-top{
  width:80px;
  height:8px;
  background:#333;
  border-radius:10px;
  margin:0 auto 12px;
}

.phone-screen{
  width:100%;
  height:calc(100% - 20px);
  background:linear-gradient(180deg, #fffaf0, #fff3cf);
  border-radius:25px;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px;
}

.screen-card{
  text-align:center;
  background:white;
  border-radius:20px;
  padding:28px 18px;
  box-shadow:0 10px 24px rgba(201,162,39,0.12);
  border:1px solid rgba(201,162,39,0.12);
}

.screen-card i{
  font-size:34px;
  color:#c9a227;
  margin-bottom:15px;
}

.screen-card h4{
  font-size:22px;
  color:#222;
  margin-bottom:10px;
}

.screen-card p{
  font-size:14px;
  color:#666;
  line-height:1.7;
}

/* CONTENT */
.app-content h2{
  font-size:40px;
  color:#1f1f1f;
  margin-bottom:20px;
  line-height:1.3;
}

.app-content p{
  font-size:16px;
  color:#555;
  line-height:1.9;
  margin-bottom:18px;
}

.app-highlights{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:15px;
  margin:28px 0;
}

.highlight-box{
  background:white;
  border:1px solid rgba(201,162,39,0.12);
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
  border-radius:14px;
  padding:16px 18px;
  display:flex;
  align-items:center;
  gap:12px;
  transition:0.3s;
}

.highlight-box:hover{
  transform:translateY(-5px);
  box-shadow:0 14px 28px rgba(201,162,39,0.12);
}

.highlight-box i{
  font-size:20px;
  color:#c9a227;
}

.highlight-box span{
  font-size:15px;
  font-weight:600;
  color:#333;
}

.app-btn{
  display:inline-block;
  margin-top:10px;
  padding:14px 34px;
  background:#c9a227;
  color:white;
  text-decoration:none;
  border-radius:8px;
  font-weight:600;
  transition:0.3s;
  box-shadow:0 6px 16px rgba(201, 162, 39, 0.3);
}

.app-btn:hover{
  background:#b8921d;
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 10px 22px rgba(201, 162, 39, 0.4);
}

/* PROCESS */
.app-process{
  padding:90px 8%;
  background:#fffaf0;
}

.process-container{
  max-width:1250px;
  margin:auto;
  text-align:center;
}

.process-container h2{
  font-size:40px;
  margin-bottom:12px;
  color:#1f1f1f;
}

.process-subtitle{
  max-width:780px;
  margin:0 auto 50px;
  color:#666;
  font-size:17px;
  line-height:1.8;
}

.process-timeline{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:20px;
}

.process-step{
  background:white;
  padding:28px 20px;
  border-radius:22px;
  box-shadow:0 10px 24px rgba(0,0,0,0.06);
  border:1px solid rgba(201,162,39,0.10);
  transition:0.35s;
}

.process-step:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 35px rgba(201,162,39,0.14);
}

.step-icon{
  width:60px;
  height:60px;
  margin:0 auto 16px;
  border-radius:50%;
  background:linear-gradient(135deg, #c9a227, #e6c766);
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:24px;
  box-shadow:0 8px 18px rgba(201,162,39,0.25);
}

.process-step h3{
  font-size:20px;
  color:#222;
  margin-bottom:10px;
}

.process-step p{
  font-size:14px;
  color:#666;
  line-height:1.7;
}

/* BENEFITS */
.app-benefits{
  padding:90px 8%;
}

.benefits-container{
  max-width:1250px;
  margin:auto;
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:35px;
  align-items:start;
}

.benefits-left h2{
  font-size:40px;
  color:#1f1f1f;
  margin-bottom:20px;
  line-height:1.3;
}

.benefits-left p{
  font-size:16px;
  color:#555;
  line-height:1.9;
}

.benefits-right{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:22px;
}

.benefit-card{
  background:linear-gradient(135deg, #fffefb, #fff7e4);
  padding:28px 22px;
  border-radius:18px;
  border:1px solid rgba(201,162,39,0.14);
  box-shadow:0 8px 22px rgba(0,0,0,0.05);
  transition:0.35s;
}

.benefit-card:hover{
  transform:translateY(-7px) scale(1.02);
  box-shadow:0 15px 30px rgba(201,162,39,0.14);
}

.benefit-card i{
  font-size:28px;
  color:#c9a227;
  margin-bottom:14px;
}

.benefit-card h3{
  font-size:21px;
  color:#222;
  margin-bottom:10px;
}

.benefit-card p{
  font-size:15px;
  color:#666;
  line-height:1.7;
}

/* CTA */
.app-cta{
  padding:0 8% 90px;
}

.app-cta-box{
  max-width:1100px;
  margin:auto;
  background:linear-gradient(135deg, #fff7e0, #fff2c4);
  padding:50px 30px;
  border-radius:24px;
  text-align:center;
  border:1px solid rgba(201, 162, 39, 0.2);
  box-shadow:0 12px 30px rgba(201, 162, 39, 0.12);
}

.app-cta-box h3{
  font-size:34px;
  color:#1f1f1f;
  margin-bottom:15px;
}

.app-cta-box p{
  color:#555;
  font-size:16px;
  margin-bottom:25px;
}

.cta-btn{
  display:inline-block;
  padding:14px 34px;
  background:#c9a227;
  color:white;
  text-decoration:none;
  border-radius:8px;
  font-weight:600;
  transition:0.3s;
  box-shadow:0 6px 16px rgba(201, 162, 39, 0.3);
}

.cta-btn:hover{
  background:#b8921d;
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 10px 22px rgba(201, 162, 39, 0.4);
}

/* advance */
.tech-hero{
  position:relative;
  height:60vh;
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.55)),
    url("../image/download (20).jpg") center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,162,39,0.18), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(201,162,39,0.10), transparent 25%),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,0.05), transparent 25%);
}

.tech-hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
}

.hero-tag{
  display:inline-block;
  background:rgba(255,255,255,0.10);
  color:#fff;
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:18px;
  border:1px solid rgba(255,255,255,0.15);
}

.tech-hero-content h1{
  font-size:54px;
  color:white;
  margin-bottom:15px;
  text-shadow:0 4px 15px rgba(0,0,0,0.35);
}

.tech-hero-content p{
  font-size:18px;
  color:#f2f2f2;
  line-height:1.8;
}

/* COMMON TAG */
.section-tag{
  display:inline-block;
  background:#fff4d1;
  color:#b8921d;
  font-weight:700;
  font-size:13px;
  padding:8px 16px;
  border-radius:30px;
  margin-bottom:18px;
  letter-spacing:0.4px;
}

/* INTRO */
.tech-intro{
  padding:90px 8%;
}

.tech-intro-container{
  max-width:1250px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:35px;
  align-items:center;
}

.tech-content h2{
  font-size:40px;
  color:#1f1f1f;
  margin-bottom:20px;
  line-height:1.3;
}

.tech-content p{
  font-size:16px;
  color:#555;
  line-height:1.9;
  margin-bottom:18px;
}

.tech-btn{
  display:inline-block;
  margin-top:10px;
  padding:14px 34px;
  background:#c9a227;
  color:white;
  text-decoration:none;
  border-radius:8px;
  font-weight:600;
  transition:0.3s;
  box-shadow:0 6px 16px rgba(201, 162, 39, 0.3);
}

.tech-btn:hover{
  background:#b8921d;
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 10px 22px rgba(201, 162, 39, 0.4);
}

/* GLOW CARDS */
.tech-cards{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:22px;
}

.glow-card{
  background:linear-gradient(135deg, #fffefb, #fff8e8);
  padding:28px 22px;
  border-radius:20px;
  box-shadow:0 10px 24px rgba(0,0,0,0.06);
  border:1px solid rgba(201,162,39,0.14);
  transition:0.35s;
  position:relative;
  overflow:hidden;
}

.glow-card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:radial-gradient(circle, rgba(201,162,39,0.10), transparent 50%);
  transform:scale(0.7);
  transition:0.4s;
}

.glow-card:hover::before{
  transform:scale(1);
}

.glow-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 30px rgba(201,162,39,0.14);
}

.glow-card i,
.glow-card h3,
.glow-card p{
  position:relative;
  z-index:2;
}

.glow-card i{
  font-size:30px;
  color:#c9a227;
  margin-bottom:14px;
}

.glow-card h3{
  font-size:21px;
  color:#222;
  margin-bottom:10px;
}

.glow-card p{
  font-size:15px;
  color:#666;
  line-height:1.7;
}

/* SERVICES GRID */
.tech-services{
  padding:90px 8%;
  background:#fffaf0;
}

.tech-services-container{
  max-width:1250px;
  margin:auto;
  text-align:center;
}

.tech-services-container h2{
  font-size:40px;
  margin-bottom:12px;
  color:#1f1f1f;
}

.tech-subtitle{
  max-width:780px;
  margin:0 auto 50px;
  color:#666;
  font-size:17px;
  line-height:1.8;
}

.tech-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:25px;
}

.tech-box{
  background:white;
  padding:35px 25px;
  border-radius:22px;
  box-shadow:0 10px 24px rgba(0,0,0,0.06);
  position:relative;
  transition:0.35s;
  border:1px solid rgba(201,162,39,0.10);
  overflow:hidden;
}

.tech-box::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(to right, #c9a227, #f0d87c);
}

.tech-box:hover{
  transform:translateY(-10px);
  box-shadow:0 18px 35px rgba(201,162,39,0.14);
}

.tech-icon{
  width:62px;
  height:62px;
  border-radius:50%;
  margin:0 auto 18px;
  background:linear-gradient(135deg, #c9a227, #e6c766);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  box-shadow:0 8px 18px rgba(201,162,39,0.25);
}

.tech-box h3{
  font-size:22px;
  color:#222;
  margin-bottom:12px;
}

.tech-box p{
  font-size:15px;
  color:#666;
  line-height:1.8;
}

/* PROCESS */
.tech-process{
  padding:90px 8%;
}

.process-container{
  max-width:1250px;
  margin:auto;
  text-align:center;
}

.process-container h2{
  font-size:40px;
  margin-bottom:12px;
  color:#1f1f1f;
}

.process-subtitle{
  max-width:780px;
  margin:0 auto 50px;
  color:#666;
  font-size:17px;
  line-height:1.8;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:20px;
}

.process-card{
  background:linear-gradient(180deg, #ffffff, #fff9ea);
  padding:28px 20px;
  border-radius:22px;
  box-shadow:0 10px 24px rgba(0,0,0,0.06);
  border:1px solid rgba(201,162,39,0.10);
  transition:0.35s;
}

.process-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 35px rgba(201,162,39,0.14);
}

.process-card span{
  display:inline-flex;
  width:55px;
  height:55px;
  border-radius:50%;
  background:linear-gradient(135deg, #c9a227, #e6c766);
  color:white;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:700;
  margin-bottom:16px;
  box-shadow:0 8px 18px rgba(201,162,39,0.25);
}

.process-card h3{
  font-size:20px;
  color:#222;
  margin-bottom:10px;
}

.process-card p{
  font-size:14px;
  color:#666;
  line-height:1.7;
}

/* BENEFITS */
.tech-benefits{
  padding:90px 8%;
  background:#fffaf0;
}

.benefits-container{
  max-width:1250px;
  margin:auto;
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:35px;
  align-items:start;
}

.benefits-left h2{
  font-size:40px;
  color:#1f1f1f;
  margin-bottom:20px;
  line-height:1.3;
}

.benefits-left p{
  font-size:16px;
  color:#555;
  line-height:1.9;
}

.benefits-right{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:22px;
}

.benefit-card{
  background:white;
  padding:28px 22px;
  border-radius:18px;
  border:1px solid rgba(201,162,39,0.14);
  box-shadow:0 8px 22px rgba(0,0,0,0.05);
  transition:0.35s;
}

.benefit-card:hover{
  transform:translateY(-7px) scale(1.02);
  box-shadow:0 15px 30px rgba(201,162,39,0.14);
}

.benefit-card i{
  font-size:28px;
  color:#c9a227;
  margin-bottom:14px;
}

.benefit-card h3{
  font-size:21px;
  color:#222;
  margin-bottom:10px;
}

.benefit-card p{
  font-size:15px;
  color:#666;
  line-height:1.7;
}

/* CTA */
.tech-cta{
  padding:90px 8%;
}

.tech-cta-box{
  max-width:1100px;
  margin:auto;
  background:linear-gradient(135deg, #fff7e0, #fff2c4);
  padding:50px 30px;
  border-radius:24px;
  text-align:center;
  border:1px solid rgba(201, 162, 39, 0.2);
  box-shadow:0 12px 30px rgba(201, 162, 39, 0.12);
}

.tech-cta-box h3{
  font-size:34px;
  color:#1f1f1f;
  margin-bottom:15px;
}

.tech-cta-box p{
  color:#555;
  font-size:16px;
  margin-bottom:25px;
}

.cta-btn{
  display:inline-block;
  padding:14px 34px;
  background:#c9a227;
  color:white;
  text-decoration:none;
  border-radius:8px;
  font-weight:600;
  transition:0.3s;
  box-shadow:0 6px 16px rgba(201, 162, 39, 0.3);
}

.cta-btn:hover{
  background:#b8921d;
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 10px 22px rgba(201, 162, 39, 0.4);
}

/* EBOOK */
/* HERO */
.ebook-hero{
    position:relative;
    min-height:70vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px 20px;
     background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.55)),
    url("../image/download (20).jpg") center/cover no-repeat;
    overflow:hidden;
}

.ebook-hero::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(201,162,39,0.12);
    top:-80px;
    left:-80px;
    filter:blur(10px);
}

.ebook-hero::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(201,162,39,0.10);
    bottom:-60px;
    right:-60px;
    filter:blur(10px);
}

.ebook-overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right, rgba(201,162,39,0.20), transparent 40%);
    z-index:1;
}

.ebook-hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
    animation:fadeUp 1s ease;
}

.ebook-badge{
    display:inline-block;
    background:#c9a227;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
    box-shadow:0 6px 15px rgba(201,162,39,0.3);
}

.ebook-hero-content h1{
    font-size:52px;
    color: white;
    margin-bottom:18px;
    font-weight:700;
}

.ebook-hero-content p{
    font-size:18px;
    max-width:720px;
    margin:auto;
    color: white;
}

/* MAIN */
.ebook-main{
    padding:90px 8%;
}

.ebook-intro{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:40px;
    align-items:start;
    margin-bottom:80px;
}

.ebook-left{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border:1px solid rgba(201,162,39,0.15);
    animation:fadeUp 1s ease;
}

.icon-box{
    width:80px;
    height:80px;
    border-radius:20px;
    background:linear-gradient(135deg, #c9a227, #e0bf53);
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:22px;
    box-shadow:0 10px 25px rgba(201,162,39,0.25);
}

.icon-box i{
    font-size:34px;
    color:#fff;
}

.ebook-left h2{
    font-size:34px;
    margin-bottom:18px;
    color:#1f1f1f;
}

.ebook-left p{
    color:#555;
    margin-bottom:16px;
    font-size:16px;
}

.ebook-right{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.feature-card{
    background:#fff;
    padding:28px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,0.07);
    border-left:5px solid #c9a227;
    transition:0.4s ease;
    animation:fadeUp 1.1s ease;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(201,162,39,0.18);
}

.feature-card i{
    font-size:28px;
    color:#c9a227;
    margin-bottom:14px;
}

.feature-card h3{
    font-size:22px;
    margin-bottom:10px;
    color:#222;
}

.feature-card p{
    color:#666;
    font-size:15px;
}

/* HIGHLIGHTS */
.ebook-highlights{
    margin-bottom:80px;
    text-align:center;
}

.ebook-highlights h2{
    font-size:38px;
    margin-bottom:40px;
    color:#1f1f1f;
}

.highlight-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:22px;
}

.highlight-box{
    background:#fff;
    padding:22px 24px;
    border-radius:16px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    display:flex;
    align-items:center;
    gap:14px;
    justify-content:flex-start;
    transition:0.35s ease;
    border:1px solid rgba(201,162,39,0.12);
}

.highlight-box:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 28px rgba(201,162,39,0.16);
}

.highlight-box i{
    color:#c9a227;
    font-size:18px;
}

.highlight-box span{
    font-weight:500;
    color:#333;
}

/* CTA */
.ebook-cta{
    text-align:center;
    background:linear-gradient(135deg, #fff9e8, #ffffff);
    padding:60px 30px;
    border-radius:24px;
    box-shadow:0 12px 35px rgba(0,0,0,0.07);
    border:1px solid rgba(201,162,39,0.15);
    animation:fadeUp 1.2s ease;
}

.ebook-cta h2{
    font-size:38px;
    margin-bottom:16px;
    color:#1d1d1d;
}

.ebook-cta p{
    max-width:720px;
    margin:0 auto 28px;
    color:#555;
    font-size:16px;
}

.ebook-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    background:linear-gradient(135deg, #c9a227, #b88f16);
    color:#fff;
    padding:15px 34px;
    border-radius:50px;
    font-weight:600;
    font-size:16px;
    transition:0.35s ease;
    box-shadow:0 10px 25px rgba(201,162,39,0.28);
}

.ebook-btn:hover{
    transform:translateY(-4px) scale(1.03);
    box-shadow:0 16px 35px rgba(201,162,39,0.35);
}

/* =========================================
   ALL 8 SERVICE PAGES - TABLET RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {

  /* Global header */
  header{
    padding:16px 5%;
    gap:15px;
    flex-wrap:wrap;
  }

  nav{
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .logo img{
    width:120px;
  }

  /* Common hero sections */
  .service-hero,
  .dev-hero,
  .seo-hero,
  .app-hero,
  .smm-hero,
  .erp-hero,
  .tech-hero,
  .graphic-hero,
  .marketing-hero{
    height:50vh;
    padding:20px;
  }

  .hero-content h1,
  .dev-hero-content h1,
  .seo-hero-content h1,
  .app-hero-content h1,
  .smm-hero-content h1,
  .erp-hero-content h1,
  .tech-hero-content h1,
  .graphic-hero-content h1,
  .marketing-hero-content h1{
    font-size:40px;
  }

  .hero-content p,
  .dev-hero-content p,
  .seo-hero-content p,
  .app-hero-content p,
  .smm-hero-content p,
  .erp-hero-content p,
  .tech-hero-content p,
  .graphic-hero-content p,
  .marketing-hero-content p{
    font-size:16px;
  }

  /* Common section padding */
  .service-detail,
  .dev-intro,
  .dev-process,
  .why-dev,
  .dev-cta,
  .seo-intro,
  .seo-services,
  .seo-benefits,
  .seo-cta,
  .app-showcase,
  .app-features,
  .app-process,
  .app-cta,
  .smm-intro,
  .smm-strategy,
  .smm-benefits,
  .smm-cta,
  .erp-intro,
  .erp-modules,
  .erp-solutions,
  .erp-why,
  .erp-cta,
  .tech-intro,
  .tech-services,
  .tech-process,
  .tech-benefits,
  .tech-cta,
  .graphic-intro,
  .graphic-services,
  .graphic-process,
  .graphic-portfolio,
  .graphic-cta,
  .marketing-intro,
  .marketing-services,
  .marketing-process,
  .marketing-benefits,
  .marketing-cta{
    padding-left:5%;
    padding-right:5%;
  }

  /* Common side-by-side layouts => stack */
  .intro-container,
  .seo-intro-container,
  .app-showcase-container,
  .smm-intro-container,
  .erp-intro-container,
  .erp-solutions-container,
  .benefits-container,
  .tech-intro-container,
  .graphic-intro-container,
  .marketing-intro-container{
    grid-template-columns:1fr !important;
    gap:30px;
  }

  /* Common grids reduce columns */
  .feature-boxes,
  .social-platforms{
    grid-template-columns:1fr 1fr;
  }

  .why-grid,
  .benefits-grid,
  .tech-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .process-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  /* Service containers */
  .service-container,
  .intro-left,
  .seo-intro-text,
  .cta-box,
  .seo-cta-box,
  .erp-cta-box{
    padding:35px 25px;
  }

  /* Common headings */
  .service-container h2,
  .intro-left h2,
  .seo-intro-text h2,
  .why-container h2,
  .process-container h2,
  .benefits-container h2,
  .solutions-left h2,
  .tech-services-container h2,
  .cta-box h3,
  .seo-cta-box h3,
  .erp-cta-box h3{
    font-size:30px;
  }

  /* App phone mockups */
  .phone-mockups{
    min-height:auto;
    flex-wrap:wrap;
    gap:20px;
  }

  .phone{
    width:190px;
    height:380px;
  }

  /* Timeline */
  .timeline{
    max-width:100%;
  }

  .timeline-content{
    padding:20px;
  }
}


/* =========================================
   ALL 8 SERVICE PAGES - MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 768px) {

  /* Header */
  header{
    flex-direction:column;
    align-items:center;
    padding:15px 5%;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
  }

  nav a{
    font-size:14px;
  }

  .btn{
    padding:10px 22px;
    font-size:14px;
  }

  /* Hero sections */
  .service-hero,
  .dev-hero,
  .seo-hero,
  .app-hero,
  .smm-hero,
  .erp-hero,
  .tech-hero,
  .graphic-hero,
  .marketing-hero{
    height:auto;
    min-height:42vh;
    padding:50px 15px;
  }

  .hero-content,
  .dev-hero-content,
  .seo-hero-content,
  .app-hero-content,
  .smm-hero-content,
  .erp-hero-content,
  .tech-hero-content,
  .graphic-hero-content,
  .marketing-hero-content{
    max-width:100%;
  }

  .hero-content h1,
  .dev-hero-content h1,
  .seo-hero-content h1,
  .app-hero-content h1,
  .smm-hero-content h1,
  .erp-hero-content h1,
  .tech-hero-content h1,
  .graphic-hero-content h1,
  .marketing-hero-content h1{
    font-size:28px;
    line-height:1.3;
  }

  .hero-content p,
  .dev-hero-content p,
  .seo-hero-content p,
  .app-hero-content p,
  .smm-hero-content p,
  .erp-hero-content p,
  .tech-hero-content p,
  .graphic-hero-content p,
  .marketing-hero-content p{
    font-size:14px;
    line-height:1.7;
  }

  .hero-tag,
  .small-tag,
  .seo-tag,
  .section-tag{
    font-size:11px;
    padding:7px 14px;
  }

  /* Common sections */
  .service-detail,
  .dev-intro,
  .dev-process,
  .why-dev,
  .dev-cta,
  .seo-intro,
  .seo-services,
  .seo-benefits,
  .seo-cta,
  .app-showcase,
  .app-features,
  .app-process,
  .app-cta,
  .smm-intro,
  .smm-strategy,
  .smm-benefits,
  .smm-cta,
  .erp-intro,
  .erp-modules,
  .erp-solutions,
  .erp-why,
  .erp-cta,
  .tech-intro,
  .tech-services,
  .tech-process,
  .tech-benefits,
  .tech-cta,
  .graphic-intro,
  .graphic-services,
  .graphic-process,
  .graphic-portfolio,
  .graphic-cta,
  .marketing-intro,
  .marketing-services,
  .marketing-process,
  .marketing-benefits,
  .marketing-cta{
    padding-top:60px;
    padding-bottom:60px;
    padding-left:5%;
    padding-right:5%;
  }

  /* Cards & boxes */
  .service-container,
  .intro-left,
  .seo-intro-text,
  .highlight-box,
  .stat-box,
  .platform-card,
  .module-card,
  .solution-box,
  .why-card,
  .benefit-card,
  .tech-box,
  .process-card,
  .timeline-content,
  .cta-box,
  .seo-cta-box,
  .erp-cta-box,
  .service-cta{
    padding:22px 18px;
    border-radius:16px;
  }

  /* All grids single column */
  .feature-boxes,
  .social-platforms,
  .why-grid,
  .benefits-grid,
  .tech-grid,
  .process-grid{
    grid-template-columns:1fr !important;
    gap:18px;
  }

  /* Common text sizes */
  .service-container h2,
  .intro-left h2,
  .seo-intro-text h2,
  .solutions-left h2,
  .why-container h2,
  .benefits-container h2,
  .process-container h2,
  .tech-services-container h2{
    font-size:24px;
    line-height:1.35;
  }

  .service-container p,
  .intro-left p,
  .seo-intro-text p,
  .solutions-left p,
  .tech-subtitle,
  .process-subtitle,
  .process-sub,
  .seo-subtitle{
    font-size:14px;
    line-height:1.8;
  }

  /* Icons smaller */
  .service-icon{
    width:75px;
    height:75px;
    margin-bottom:18px;
  }

  .service-icon i{
    font-size:28px;
  }

  .feature-card i,
  .highlight-box i,
  .stat-box i,
  .platform-card i,
  .module-card i,
  .why-card i,
  .benefit-card i,
  .process-card i,
  .tech-icon{
    font-size:24px;
  }

  /* Buttons */
  .cta-btn,
  .seo-btn,
  .smm-btn,
  .btn{
    padding:12px 24px;
    font-size:14px;
  }

  /* App mockups */
 .phone-1,
.phone-2{
position:relative;
left:0;
right:0;
top:0;
}

  /* Timeline mobile */
  .timeline::before{
    left:20px;
  }

  .timeline-item{
    gap:14px;
    margin-bottom:22px;
  }

  .timeline-icon{
    min-width:42px;
    width:42px;
    height:42px;
    font-size:16px;
  }

  .timeline-content h3{
    font-size:18px;
  }

  .timeline-content p{
    font-size:14px;
  }

  /* Footer */
  .footer{
    padding-top:40px;
  }

  .footer-container{
    width:90%;
    grid-template-columns:1fr;
    gap:20px;
  }

  .footer-box h3{
    font-size:18px;
  }

  .footer-box p,
  .footer-box a{
    font-size:14px;
  }

  .footer-bottom{
    font-size:13px;
  }

  /* hero text */
.hero-content h1,
.dev-hero-content h1,
.seo-hero-content h1,
.smm-hero-content h1,
.erp-hero-content h1,
.app-hero-content h1,
.tech-hero-content h1{
font-size:32px;
}

.hero-content p{
font-size:15px;
}

/* two column layouts */
.intro-container,
.seo-intro-container,
.smm-intro-container,
.erp-intro-container,
.results-container,
.erp-solutions-container,
.benefits-container,
.tech-intro-container{
grid-template-columns:1fr;
}

/* cards grids */
.strategy-grid,
.modules-grid,
.tech-grid{
grid-template-columns:1fr;
}

/* 4 column grids */
.why-grid,
.benefits-grid{
grid-template-columns:1fr;
}

/* 2 column grids */
.social-platforms,
.results-right,
.benefits-right,
.tech-cards
{
grid-template-columns:1fr;
}

/* process steps */
.process-grid,
.process-timeline{
grid-template-columns:1fr;
}

/* dashboard preview */
.small-cards{
grid-template-columns:1fr;
}

/* phone mockups */
.phone-mockups{
display:flex;
flex-direction:column;
align-items:center;
gap:25px;
}

.phone{
width:200px;
height:400px;
}

/* highlight boxes */
.app-highlights{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

/* button center */
.app-btn{
display:inline-block;
margin-top:20px;
}

.app-showcase-container{
display:grid;
grid-template-columns:1fr;
gap:40px;
text-align:center;
}


}


/* =========================================
   EXTRA SMALL MOBILE
   ========================================= */
@media (max-width: 480px) {

  .hero-content h1,
  .dev-hero-content h1,
  .seo-hero-content h1,
  .app-hero-content h1,
  .smm-hero-content h1,
  .erp-hero-content h1,
  .tech-hero-content h1,
  .graphic-hero-content h1,
  .marketing-hero-content h1{
    font-size:24px;
  }

  .service-container h2,
  .intro-left h2,
  .seo-intro-text h2,
  .solutions-left h2,
  .why-container h2,
  .benefits-container h2,
  .process-container h2,
  .tech-services-container h2{
    font-size:21px;
  }

  .service-container,
  .intro-left,
  .seo-intro-text,
  .highlight-box,
  .stat-box,
  .platform-card,
  .module-card,
  .solution-box,
  .why-card,
  .benefit-card,
  .tech-box,
  .process-card,
  .timeline-content,
  .cta-box,
  .seo-cta-box,
  .erp-cta-box,
  .service-cta{
    padding:18px 14px;
  }

  .phone{
    width:150px;
    height:300px;
  }
}
