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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#060816;
    color:#fff;
    overflow-x:hidden;
    line-height:1.6;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   HEADER
========================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    transition:.3s;
    padding:20px 0;
}

.header.scrolled{
    background:rgba(6,8,22,.92);
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:28px;
    font-weight:800;
    color:#fff;
}

.nav{
    display:flex;
    gap:35px;
}

.nav a{
    color:#d5d8f0;
    transition:.3s;
}

.nav a:hover{
    color:#7c5cff;
}

.header-buttons{
    display:flex;
    gap:15px;
}

/* =========================
   BUTTONS
========================= */

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
    color:#fff;

    background:
    linear-gradient(
    135deg,
    #7c5cff,
    #4f8cff
    );

    transition:.35s;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 28px;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    transition:.35s;
}

.btn-outline:hover{
    background:rgba(255,255,255,.08);
}

/* =========================
   MOBILE MENU
========================= */

.mobile-toggle{
    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

.mobile-menu{
    position:fixed;
    top:80px;
    left:-100%;
    width:100%;
    background:#0d1128;
    transition:.4s;
    z-index:998;

    display:flex;
    flex-direction:column;
}

.mobile-menu.active{
    left:0;
}

.mobile-menu a{
    padding:20px;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:white;
}

/* =========================
   HERO
========================= */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:120px;
}

.hero-bg{
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at top left,
    rgba(124,92,255,.35),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(79,140,255,.25),
    transparent 35%);
}

.hero-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.tag{
    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(124,92,255,.12);

    border:1px solid rgba(124,92,255,.35);

    color:#bdaeff;

    margin-bottom:25px;

    font-size:14px;
}

.hero h1{
    font-size:68px;
    line-height:1.05;
    font-weight:900;
    margin-bottom:25px;
}

.hero p{
    color:#b9bfd8;
    font-size:18px;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-top:35px;
}

.hero-features{
    display:flex;
    gap:25px;
    margin-top:35px;
    flex-wrap:wrap;
    color:#d0d5ef;
}

/* =========================
   DASHBOARD CARD
========================= */

.hero-card{
    display:flex;
    justify-content:center;
}

.dashboard{
    width:100%;
    max-width:450px;

    background:
    rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:25px;

    padding:30px;

    box-shadow:
    0 20px 80px rgba(0,0,0,.4);
}

.dashboard-header{
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
}

.dashboard-stat{
    display:flex;
    justify-content:space-between;

    padding:18px 0;

    border-bottom:
    1px solid rgba(255,255,255,.08);
}

.dashboard-stat:last-child{
    border:none;
}

.dashboard-stat span{
    color:#aab1d4;
}

.dashboard-stat strong{
    font-size:22px;
}

/* =========================
   STATS
========================= */

.stats{
    padding:100px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    text-align:center;

    padding:35px;

    border-radius:18px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.06);
}

.stat-card h3{
    font-size:50px;
    color:#7c5cff;
}

.stat-card p{
    color:#b9bfd8;
}

/* =========================
   SECTION HEADER
========================= */

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-header span{
    color:#7c5cff;
    font-weight:700;
    letter-spacing:2px;
}

.section-header h2{
    margin-top:15px;
    font-size:48px;
    max-width:800px;
    margin-left:auto;
    margin-right:auto;
}

/* =========================
   SERVICES
========================= */

.services{
    padding:120px 0;
}

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

.service-card{
    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:35px;

    transition:.35s;
}

.service-card:hover{
    transform:translateY(-8px);

    border-color:
    rgba(124,92,255,.45);
}

.service-icon{
    font-size:42px;
    margin-bottom:20px;
}

.service-card h3{
    font-size:28px;
    margin-bottom:20px;
}

.service-card ul li{
    padding:8px 0;
    color:#c4cae3;
}

.service-card a{
    display:inline-block;
    margin-top:20px;
    color:#7c5cff;
    font-weight:700;
}

/* =========================
   CTA
========================= */

.cta{
    padding:120px 0;
    text-align:center;
}

.cta h2{
    font-size:56px;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    color:#b9bfd8;
    margin-bottom:35px;
}

/* =========================
   ANIMATION
========================= */

@keyframes float{
    0%{
        transform:translateY(0);
    }

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

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

.dashboard{
    animation:float 5s ease-in-out infinite;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

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

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

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

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

    .hero h1{
        font-size:48px;
    }

    .section-header h2{
        font-size:38px;
    }

    .cta h2{
        font-size:42px;
    }

    .nav,
    .header-buttons{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }
}

@media(max-width:600px){

    .hero h1{
        font-size:38px;
    }

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

    .section-header h2{
        font-size:32px;
    }

    .cta h2{
        font-size:34px;
    }

    .btn-primary,
    .btn-outline{
        width:100%;
    }

    .hero-buttons{
        flex-direction:column;
    }
}
s
# Add These Sections To index.php (Below CTA Section, Above Closing Body Tag)

```html id="n8q5p1"

<!-- =========================================
PORTFOLIO
========================================= -->

<section class="portfolio" id="portfolio">

<div class="container">

<div class="section-header">

<span>CASE STUDIES</span>

<h2>
Recent Projects & Growth Systems
</h2>

</div>

<div class="portfolio-grid">

<div class="portfolio-card">

<div class="portfolio-image">
<img src="assets/images/project1.jpg" alt="">
</div>

<div class="portfolio-content">
<h3>WooCommerce Store</h3>
<p>
Custom eCommerce platform with automation and email funnels.
</p>
</div>

</div>

<div class="portfolio-card">

<div class="portfolio-image">
<img src="assets/images/project2.jpg" alt="">
</div>

<div class="portfolio-content">
<h3>Affiliate Platform</h3>
<p>
Affiliate recruitment, management and tracking system.
</p>
</div>

</div>

<div class="portfolio-card">

<div class="portfolio-image">
<img src="assets/images/project3.jpg" alt="">
</div>

<div class="portfolio-content">
<h3>Kajabi LMS</h3>
<p>
Membership platform with automated onboarding workflows.
</p>
</div>

</div>

</div>

</div>

</section>

<!-- =========================================
CLIENT LOGOS
========================================= -->

<section class="clients">

<div class="container">

<div class="logo-slider">

<div class="logo-track">

<div class="logo-item">SHOPIFY</div>
<div class="logo-item">WORDPRESS</div>
<div class="logo-item">KAJABI</div>
<div class="logo-item">WIX</div>
<div class="logo-item">MAILCHIMP</div>
<div class="logo-item">KLAVIYO</div>

<div class="logo-item">SHOPIFY</div>
<div class="logo-item">WORDPRESS</div>
<div class="logo-item">KAJABI</div>
<div class="logo-item">WIX</div>
<div class="logo-item">MAILCHIMP</div>
<div class="logo-item">KLAVIYO</div>

</div>

</div>

</div>

</section>

<!-- =========================================
TESTIMONIALS
========================================= -->

<section class="testimonials">

<div class="container">

<div class="section-header">

<span>CLIENT RESULTS</span>

<h2>
What Our Clients Say
</h2>

</div>

<div class="testimonial-slider">

<div class="testimonial active">

<p>
"The automation system alone saved our team over
20 hours every week."
</p>

<h4>Sarah Johnson</h4>
<span>Ecommerce Founder</span>

</div>

<div class="testimonial">

<p>
"Our affiliate revenue increased by over 300%
within six months."
</p>

<h4>Michael Brown</h4>
<span>Marketing Director</span>

</div>

<div class="testimonial">

<p>
"The WooCommerce redesign doubled our conversion rate."
</p>

<h4>David Smith</h4>
<span>Business Owner</span>

</div>

</div>

</div>

</section>

<!-- =========================================
FAQ
========================================= -->

<section class="faq" id="faq">

<div class="container">

<div class="section-header">

<span>FAQ</span>

<h2>
Frequently Asked Questions
</h2>

</div>

<div class="faq-wrapper">

<div class="faq-item">

<button class="faq-question">
How long does a website project take?
</button>

<div class="faq-answer">
Most projects are completed within 2–6 weeks depending on complexity.
</div>

</div>

<div class="faq-item">

<button class="faq-question">
Do you provide ongoing support?
</button>

<div class="faq-answer">
Yes. Maintenance, updates, optimization and marketing support are available.
</div>

</div>

<div class="faq-item">

<button class="faq-question">
Can you automate our existing systems?
</button>

<div class="faq-answer">
Absolutely. We integrate CRMs, forms, email platforms and business workflows.
</div>

</div>

</div>

</div>

</section>

<!-- =========================================
CONTACT
========================================= -->

<section class="contact" id="contact">

<div class="container">

<div class="contact-grid">

<div class="contact-content">

<span>LET'S TALK</span>

<h2>
Ready To Grow Faster?
</h2>

<p>
Tell us about your project and goals.
We'll create a custom growth strategy.
</p>

</div>

<div class="contact-form">

<form>

<input type="text" placeholder="Your Name">

<input type="email" placeholder="Email Address">

<input type="text" placeholder="Business Website">

<textarea rows="6"
placeholder="Tell us about your project"></textarea>

<button type="submit" class="btn-primary">
Send Message
</button>

</form>

</div>

</div>

</div>

</section>

<!-- =========================================
FOOTER
========================================= -->

<footer class="footer">

<div class="container">

<div class="footer-grid">

<div>

<h3>GrowthForge</h3>

<p>
Web Development, Automation,
Affiliate Marketing &
Email Marketing Systems.
</p>

</div>

<div>

<h4>Services</h4>

<ul>
<li>Web Development</li>
<li>Automation</li>
<li>Affiliate Marketing</li>
<li>Email Marketing</li>
</ul>

</div>

<div>

<h4>Company</h4>

<ul>
<li>About</li>
<li>Portfolio</li>
<li>Contact</li>
<li>FAQ</li>
</ul>

</div>

</div>

<div class="footer-bottom">

© 2026 GrowthForge Agency.
All Rights Reserved.

</div>

</div>

</footer>

<!-- =========================================
WHATSAPP BUTTON
========================================= -->

<a href="https://wa.me/8801000000000"
class="whatsapp-btn"
target="_blank">

💬

</a>

<!-- =========================================
BACK TO TOP
========================================= -->

<button id="backToTop">

↑

</button>

```

---

# Add To style.css

```css id="d4m7x9"

/* PORTFOLIO */

.portfolio{
padding:120px 0;
}

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

.portfolio-card{
overflow:hidden;
border-radius:20px;
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.08);
}

.portfolio-image img{
width:100%;
display:block;
}

.portfolio-content{
padding:25px;
}

/* CLIENT LOGOS */

.clients{
padding:80px 0;
overflow:hidden;
}

.logo-track{
display:flex;
gap:80px;
animation:scrollLogos 20s linear infinite;
}

.logo-item{
font-weight:800;
font-size:28px;
opacity:.5;
}

@keyframes scrollLogos{
from{transform:translateX(0);}
to{transform:translateX(-50%);}
}

/* TESTIMONIALS */

.testimonials{
padding:120px 0;
}

.testimonial{
display:none;
text-align:center;
max-width:800px;
margin:auto;
}

.testimonial.active{
display:block;
}

.testimonial p{
font-size:28px;
margin-bottom:25px;
}

.testimonial span{
opacity:.7;
}

/* FAQ */

.faq{
padding:120px 0;
}

.faq-item{
margin-bottom:15px;
border:1px solid rgba(255,255,255,.08);
border-radius:12px;
overflow:hidden;
}

.faq-question{
width:100%;
background:none;
border:none;
padding:25px;
text-align:left;
color:white;
cursor:pointer;
font-size:18px;
}

.faq-answer{
display:none;
padding:0 25px 25px;
color:#b9bfd8;
}

.faq-item.active .faq-answer{
display:block;
}

/* CONTACT */

.contact{
padding:120px 0;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:18px;
margin-bottom:15px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
border-radius:10px;
color:white;
}

/* FOOTER */

.footer{
padding:80px 0 30px;
border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:50px;
}

.footer ul li{
margin-bottom:10px;
color:#b9bfd8;
}

.footer-bottom{
margin-top:50px;
padding-top:25px;
border-top:1px solid rgba(255,255,255,.08);
text-align:center;
opacity:.6;
}

/* WHATSAPP */

.whatsapp-btn{
position:fixed;
right:25px;
bottom:25px;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
background:#25D366;
z-index:999;
}

/* BACK TO TOP */

#backToTop{
position:fixed;
left:25px;
bottom:25px;
width:50px;
height:50px;
border:none;
border-radius:50%;
cursor:pointer;
display:none;
font-size:20px;
}

/* RESPONSIVE */

@media(max-width:992px){

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

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

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

}
```

---

# Add To main.js

```javascript id="p6r8w3"

/* FAQ */

document.querySelectorAll(".faq-question")
.forEach(item=>{

item.addEventListener("click",()=>{

item.parentElement.classList.toggle("active");

});

});

/* TESTIMONIAL SLIDER */

const testimonials =
document.querySelectorAll(".testimonial");

let testimonialIndex = 0;

setInterval(()=>{

testimonials[testimonialIndex]
.classList.remove("active");

testimonialIndex++;

if(testimonialIndex >= testimonials.length){

testimonialIndex = 0;

}

testimonials[testimonialIndex]
.classList.add("active");

},5000);

/* BACK TO TOP */

const backToTop =
document.getElementById("backToTop");

window.addEventListener("scroll",()=>{

if(window.scrollY > 500){

backToTop.style.display="block";

}else{

backToTop.style.display="none";

}

});

backToTop.addEventListener("click",()=>{

window.scrollTo({
top:0,
behavior:"smooth"
});

});


/* Global Reset Configuration */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0ea5e9; /* Deep Sky Blue */
  --dark: #0f172a;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --text: #334155;
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  font-family: var(--font-family);
  background-color: var(--light-bg);
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: background-color 0.4s ease;
}

/* Structural Header Navigation layout */
header {
  background-color: var(--card-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}

.badge {
  background-color: #4f5b93; /* Classic PHP Color */
  color: #ffffff;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Page Core Layout Wrapper */
main {
  flex: 1;
  max-width: 750px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

.alert-box {
  background-color: #e0f2fe;
  color: #0369a1;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-weight: 500;
  border: 1px solid #bae6fd;
}

.card {
  background-color: var(--card-bg);
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-top: 2rem;
}

/* Interactive Component elements */
.btn {
  padding: 0.7rem 1.5rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.1s ease, opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  transform: scale(0.98);
}

footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  background-color: var(--card-bg);
  border-top: 1px solid #f1f5f9;
}
