<style>

/* =========================================
1. DESKTOP NAVIGATION
========================================= */

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-left: auto;
}


/* Navigation links */

.desktop-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #333333;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
    padding: 8px 0px;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
  
}


/* Hover */

.desktop-nav a:hover {
    color: green;
}


/* Animated underline */

.desktop-nav a:not(.nav-cta)::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    background: gre;

    border-radius: 5px;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}


.desktop-nav a:not(.nav-cta):hover::after {
    width: 100%;
}


/* =========================================
2. GET STARTED BUTTON
========================================= */

.desktop-nav .nav-cta {
    padding: 11px 20px;

    color: #ffffff !important;

    background: #0066ff;

    border-radius: 8px;

    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.20);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.desktop-nav .nav-cta:hover {
    background: #0052cc;

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 8px 22px rgba(0, 102, 255, 0.28);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 18px;
    }

    .desktop-nav a {
        font-size: 13px;
    }

    .desktop-nav .nav-cta {
        padding: 10px 16px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .desktop-nav {
        display: none;
    }

}
/* ==========================================
3. GLOBAL STYLES & VARIABLES
========================================== */

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
font-family: 'Sora', 'Poppins', sans-serif;
background-color: var(--bg-light);
color: var(--text-dark);
overflow-x: hidden;
line-height: 1.6;
}
/* Container */
.container {
    width: min(100% - 1.3rem, 1100px);
    margin-inline: auto;

}
/* Typography & Buttons */
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
letter-spacing: -0.03em;
}
p {
font-family: 'Poppins', sans-serif;
color: var(--text-muted);
}
a {
text-decoration: none;
color: inherit;
}
/* ==========================================
4. REUSABLE PREMIUM SHINE BUTTONS
========================================== */
.btn {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 1rem 2rem;
font-family: 'Sora', sans-serif;
font-size: 0.95rem;
font-weight: 600;
border-radius: 50px;
border: none;
cursor: pointer;
overflow: hidden;
transition: var(--transition-smooth);
gap: 0.5rem;
white-space: nowrap;
}
.btn-primary {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
margin-bottom: 10px;
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.5);
}
.btn-outline {
background: transparent;
color: var(--primary);
border: 2px solid rgba(37, 99, 235, 0.2);
margin-bottom: 10px;
}
.btn-outline:hover {
border-color: var(--primary);
background: rgba(37, 99, 235, 0.05);
transform: translateY(-3px);
}
.btn-light {
background: var(--white);
color: var(--bg-dark);
box-shadow: var(--card-shadow);
}
.btn-light:hover {
transform: translateY(-3px);
box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
}
/* Shine effect */
.btn::after {
content: '';
position: absolute;
top: -50%;
left: -60%;
width: 30%;
height: 200%;
background: rgba(255, 255, 255, 0.25);
transform: rotate(30deg);
transition: none;
}
.btn:hover::after {
left: 120%;
transition: all 0.75s ease;
}
/* Section Headings */
.section-header {
text-align: center;
max-width: 700px;
margin-top: 30px;
margin-bottom: 10px
}
.badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1.25rem;
border-radius: 50px;
background: rgba(37, 99, 235, 0.08);
color: var(--primary);
font-size: 0.8rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 1.5rem;
border: 1px solid rgba(37, 99, 235, 0.15);
}
.section-title {
font-size: 2.75rem;
color: var(--bg-dark);
margin-bottom: 1.25rem;
line-height: 1.2;
}
.section-subtitle {
font-size: 1.125rem;
}
/* ==========================================
5. BACKGROUND PARTICLES & BLOB SYSTEM
========================================== */
.canvas-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
pointer-events: none;
overflow: hidden;
}
#particles-canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.blob {
position: absolute;
border-radius: 50%;
filter: blur(100px);
z-index: 1;
opacity: 0.4;
pointer-events: none;
animation: float-blob 20s infinite alternate ease-in-out;
}
.blob-1 {
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, rgba(59, 130, 246, 0.1) 70%);
top: -10%;
right: -5%;
}
.blob-2 {
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(37, 99, 235, 0.05) 70%);
bottom: 10%;
left: -10%;
animation-delay: -5s;
}
@keyframes float-blob {
0% { transform: translate(0, 0) scale(1); }
50% { transform: translate(50px, -30px) scale(1.1); }
100% { transform: translate(-30px, 40px) scale(0.9); }
}
/* ==========================================
6. STICKY NAVBAR
========================================== */
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
transition: var(--transition-smooth);
padding: 1.5rem 0;
}
header.scrolled {
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
padding: 1rem 0;
box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.nav-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 0.75rem;
font-size: 1.5rem;
font-weight: 800;
color: var(--primary);
position: relative;
z-index: 1001;
}
.logo-mark {
width: 0px;
height: 40px;
background: linear-gradient(135deg, var(--primary), var(--accent));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
box-shadow: 0 8px 16px -4px rgba(37, 99, 235, 0.4);
}
.nav-links {
display: flex;
align-items: center;
gap: 2.25rem;
list-style: none;
}
.nav-links a {
font-size: 0.95rem;
font-weight: 600;
color: var(--text-dark);
transition: var(--transition-smooth);
position: relative;
padding: 0.5rem 0;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--primary);
transition: var(--transition-smooth);
}
.nav-links a:hover::after {
width: 100%;
}
.nav-links a:hover {
color: var(--primary);
}
.nav-actions {
display: flex;
align-items: center;
gap: 1.25rem;
}
/* ==========================================
7. FIRST HEADER SECTION
========================================== */
.hero {
position: relative;
padding: 12rem 0 8rem 0;
min-height: 100vh;
display: flex;
align-items: center;
overflow: hidden;
margin-top: -75px;
    background:
        linear-gradient(
            150deg,
            rgba(241, 245, 239, 0.9),
            rgba(250, 245, 255, 0.7)
        ),
        url("/assetsLP/unique-photo.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-grid {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 4rem;
align-items: center;
position: relative;
z-index: 2;
margin-bottom: -100px;
}
.hero-content {
max-width: 620px;
}
.hero-title {
font-size: 4.25rem;
line-height: 1.1;
color: #07;
margin-bottom: 1.5rem;
}
.hero-title span {
background: linear-gradient(135deg, var(--primary), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-desc {
font-size: 1.15rem;
margin-bottom: 2.5rem;
line-height: 1.7;
color: rgb(7, 154, 7);
font-weight: 600;
}
.hero-actions {
display: block;
gap: 1.25rem;

}
/* Hero Dashboard Mockup */
.hero-mockup-wrapper {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.mockup-main {
width: 100%;
max-width: 460px;
background: var(--white);
border-radius: var(--radius-lg);
padding: 2rem;
box-shadow: var(--premium-shadow);
border: 1px solid rgba(255, 255, 255, 0.8);
position: relative;
z-index: 5;
animation: float-hero 6s infinite alternate ease-in-out;
}
@keyframes float-hero {
0% { transform: translateY(0); }
100% { transform: translateY(-15px); }
}
/* Mockup Interior */
.mockup-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
}
.mockup-user {
display: flex;
align-items: center;
gap: 0.75rem;
}
.mockup-avatar {
width: 42px;
height: 42px;
background: var(--accent);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
font-weight: 700;
}
.mockup-username h4 {
font-size: 0.95rem;
color: var(--bg-dark);
}
.mockup-username p {
font-size: 0.75rem;
}
.mockup-wallet {
background: linear-gradient(135deg, var(--bg-dark), green);
border-radius: var(--radius-md);
padding: 1.5rem;
color: var(--white);
margin-bottom: 2rem;
position: relative;
overflow: hidden;
}
.mockup-wallet::after {
content: '';
position: absolute;
width: 100px;
height: 100px;
background: rgba(37, 99, 235, 0.2);
border-radius: 50%;
filter: blur(20px);
top: -20px;
right: -20px;
}
.mockup-wallet p {
color: rgba(255, 255, 255, 0.7);
font-size: 0.8rem;
margin-bottom: 0.5rem;
}
.mockup-balance {
font-size: 2rem;
font-weight: 800;
letter-spacing: -0.02em;
}
.mockup-actions-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1rem;
margin-bottom: 2rem;
}
.mockup-action-btn {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
background: transparent;
border: none;
cursor: pointer;
}
.mockup-action-icon {
width: 48px;
height: 48px;
border-radius: 16px;
background: rgba(37, 99, 235, 0.08);
color: var(--primary);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
transition: var(--transition-smooth);
}
.mockup-action-btn:hover .mockup-action-icon {
background: var(--primary);
color: var(--white);
transform: translateY(-4px);
}
.mockup-action-btn span {
font-size: 0.7rem;
font-weight: 600;
color: var(--text-dark);
}
.mockup-transactions h4 {
font-size: 0.95rem;
color: var(--bg-dark);
margin-bottom: 1rem;
}
.mockup-tx-list {
display: flex;
flex-direction: column;
gap: 1rem;
}
.mockup-tx-item {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 0.75rem;
border-bottom: 1px solid rgba(0,0,0,0.03);
}
.mockup-tx-info {
display: flex;
align-items: center;
gap: 0.75rem;
}
.mockup-tx-img {
width: 36px;
height: 36px;
border-radius: 10px;
background: #FFEBEE;
color: #E53935;
display: flex;
align-items: center;
justify-content: center;
font-size: 1rem;
}
.mockup-tx-details h5 {
font-size: 0.85rem;
color: var(--bg-dark);
}
.mockup-tx-details p {
font-size: 0.7rem;
}
.mockup-tx-amount {
text-align: right;
}
.mockup-tx-amount h5 {
font-size: 0.85rem;
color: var(--bg-dark);
}
.mockup-tx-amount p {
font-size: 0.7rem;
color: var(--success);
}
/* Decorative Floating Badges around mockup */
.floating-badge {
position: absolute;
background: rgba(9, 222, 94, 0.9);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
padding: 0.75rem 1.25rem;
border-radius: var(--radius-md);
box-shadow: var(--premium-shadow);
display: flex;
align-items: center;
gap: 0.75rem;
border: 1px solid rgba(255,255,255,0.6);
z-index: 10;
animation: float-badge 4s infinite alternate ease-in-out;
}
.fb-1 {
top: 15%;
left: -15%;
}
.fb-2 {
bottom: 20%;
right: -10%;
animation-delay: -2s;
}
.fb-new {
bottom: 0%;
right: 1-0%;
animation-delay: -2s;
}


@keyframes float-badge {
0% { transform: translateY(0) rotate(-2deg); }
100% { transform: translateY(-10px) rotate(2deg); }
}
.fb-icon {
width: 32px;
height: 32px;
border-radius: 50%;
background: white;
color: var(--success);
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
}
.fb-details h5 {
font-size: 0.8rem;
color: white;
}
.fb-details p {
font-size: 0.65rem;
}



/* ==========================================
9. STATISTICS SECTION
========================================== */
.stats-section {
    padding: 60px 20px;
    width: 100%;
    overflow: hidden;
    background-image:
        linear-gradient(
            rgba(0, 80, 30, 0.75),
            rgba(0, 80, 30, 0.75)
        ),
        url("/assetsLP/counters.jpg");  background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--body-text);

    padding: 80px 0;
}

.stats-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: 30px 15px;
    background: none;
    border-radius: 15px;
    box-sizing: border-box;
    min-width: 0;
}

.stat-item h2 {
    margin: 0 0 10px;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    word-break: break-word;
    color: white;
}

.stat-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    white-space: normal;
    overflow-wrap: break-word;
    color: white;
}

/* Tablet */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item h2 {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .stats-section {
        padding: 40px 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        width: 100%;
        padding: 25px 15px;
    }

    .stat-item h2 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 14px;
    }
}


/* ==========================================
10. WHY CHOOSE UNIQUETELLER
========================================== */
.why-choose {
padding: 10rem px;
position: relative;
text-align: center;
display: block;
margin: 10px;

}
.why-grid {
display: block;
grid-template-columns: 1fr 1fr;
gap: 6rem;
align-items: center;
}
.why-features {
display: block;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
margin-top: 20px;
align-items: center;
}
.feature-item {
background: var(--white);
padding: 2rem;
border-radius: var(--radius-md);
box-shadow: var(--card-shadow);
border: 1px solid rgba(255,255,255,0.7);
transition: var(--transition-smooth);
}
.feature-item:hover {
transform: translateY(-5px);
box-shadow: var(--premium-shadow);
}
.feature-icon {
width: 48px;
height: 48px;
border-radius: 12px;
background: rgba(16, 185, 129, 0.08);
color: var(--success);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
margin-bottom: 1.5rem;
}
.feature-item h4 {
font-size: 1.1rem;
color: var(--bg-dark);
margin-bottom: 0.75rem;
}
.feature-item p {
font-size: 0.875rem;
}

/* =========================================
11.  AUDIENCE SECTION
========================================= */

.audience-section {
  width: 100%;
  min-height: 100vh;

  padding: 48px 42px 32px;

  background:
    radial-gradient(
      circle at 50% 100%,
      #f5dfff 0%,
      #fff8ff 45%,
      #ffffff 100%
    );
}


/* =========================================
12. CARD HEADING
========================================= */

.audience-card h2 {
  margin-bottom: 9px;

  font-family: "Plus Jakarta Sans", sans-serif;

  color: green;

  font-size: 14px;
  line-height: 1.3;

  font-weight: 800;

  letter-spacing: -0.3px;
}


/* =========================================
   CARD TEXT
========================================= */

.audience-card p {
  color: var(--body-text);

  font-size: 11.3px;
  line-height: 1.5;

  font-weight: 400;
}


/* ==========================================
13. MEET THE TEAM
========================================== */
.team-section {
padding: 1rem 0;
background: var(--white);
position: relative;
    display: block;
    margin:  auto;
}
.team-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    

        display: block;
    margin:  auto;
    gap: 2.5rem;

    justify-items: center;
    align-items: start;

}
.team-card {
 width: 100%;
    max-width: 350px;
    margin: 0 auto;

    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;

    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.team-card:hover {
transform: translateY(-8px);
box-shadow: var(--premium-shadow);
}
.team-img-wrapper {
height: 280px;
position: relative;
overflow: hidden;
align-self: center;
}
.team-img-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition-smooth);
align-self: center;
}
.team-card:hover .team-img-wrapper img {
transform: scale(1.05);
}
.team-socials {
position: absolute;
bottom: 1.5rem;
left: 50%;
transform: translate(-50%, 20px);
display: flex;
gap: 1rem;
opacity: 0;
transition: var(--transition-smooth);
}
.team-card:hover .team-socials {
opacity: 1;
transform: translate(-50%, 0);
}
.team-social-btn {
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--white);
color: var(--primary);
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--premium-shadow);
transition: var(--transition-smooth);
}
.team-social-btn:hover {
background: var(--primary);
color: var(--white);
}
.team-info {
padding: 1.5rem;
text-align: center;
}
.team-info h4 {
font-size: 1.1rem;
color: var(--bg-dark);
margin-bottom: 0.25rem;
}
.team-info p {
font-size: 0.8rem;
}



14 /* =========================================
   TESTIMONIALS SECTION
========================================= */

.testimonials-section {
    width: 100%;
    padding: 80px 20px;

    box-sizing: border-box;

    overflow: hidden;
}


/* =========================================
   CAROUSEL WRAPPER
========================================= */

.testimonials-carousel {
    position: relative;

    width: 100%;
    max-width: 900px;

    margin: 40px auto 0;

    padding: 10px 20px 90px;

    box-sizing: border-box;

    overflow: hidden;
}


/* =========================================
   SLIDING TRACK
========================================= */

.testimonials-track {
    display: flex;

    width: 100%;

    transition: transform 0.5s ease-in-out;

    will-change: transform;
}


/* =========================================
   EACH SLIDE
========================================= */

.testimonial-slide {
    flex: 0 0 100%;

    width: 100%;

    display: flex;

    justify-content: center;
    align-items: center;

    box-sizing: border-box;

    padding: 0 10px;
}


/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {
    width: 100%;
    max-width: 700px;

    min-height: 380px;

    padding: 40px 35px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.07);

    border-radius: 20px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}


/* =========================================
   CLIENT IMAGE
========================================= */

.testimonial-avatar {
    width: 85px;
    height: 85px;

    display: block;

    margin: 0 auto 18px;

    object-fit: cover;

    object-position: center;

    border-radius: 50%;

    border: 4px solid #ffffff;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


/* =========================================
   STARS
========================================= */

.testimonial-stars {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 4px;

    margin-bottom: 18px;
}

.testimonial-stars i {
    font-size: 16px;

    color: #ffc107;
}


/* =========================================
   TESTIMONIAL TEXT
========================================= */

.testimonial-text {
    width: 100%;
    max-width: 600px;

    margin: 0 auto 25px;

    font-size: 16px;

    line-height: 1.8;

    color: #555555;
}


/* =========================================
   AUTHOR
========================================= */

.testimonial-author {
    text-align: center;
}

.testimonial-author h4 {
    margin: 0 0 6px;

    font-size: 18px;

    font-weight: 700;

    color: #222222;
}

.testimonial-author p {
    margin: 0;

    font-size: 14px;

    line-height: 1.5;

    color: #888888;
}


/* =========================================
   CAROUSEL CONTROLS
========================================= */

.carousel-controls {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 20px;

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 15px;

    z-index: 20;
}


/* =========================================
   CAROUSEL BUTTONS
========================================= */

.carousel-btn {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #0066ff;

    color: #ffffff;

    font-size: 16px;

    cursor: pointer;

    box-shadow: 0 7px 20px rgba(0, 102, 255, 0.25);

    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #0052cc;

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.35);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn i {
    pointer-events: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .testimonials-section {
        padding: 60px 15px;
    }

    .testimonials-carousel {
        padding: 10px 5px 85px;

        margin-top: 30px;
    }

    .testimonial-slide {
        padding: 0 5px;
    }

    .testimonial-card {
        min-height: 360px;

        padding: 30px 22px;

        border-radius: 16px;
    }

    .testimonial-avatar {
        width: 75px;
        height: 75px;
    }

    .testimonial-text {
        font-size: 15px;

        line-height: 1.7;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {

    .testimonials-section {
        padding: 50px 10px;
    }

    .testimonials-carousel {
        padding: 5px 0 80px;

        margin-top: 25px;
    }

    .testimonial-slide {
        padding: 0;
    }

    .testimonial-card {
        min-height: 350px;

        padding: 28px 18px;

        border-radius: 15px;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;

        margin-bottom: 15px;
    }

    .testimonial-stars i {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 14px;

        line-height: 1.7;
    }

    .testimonial-author h4 {
        font-size: 16px;
    }

    .testimonial-author p {
        font-size: 13px;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;

        font-size: 14px;
    }
}
/* ==========================================
15. LATEST NEWS
========================================== */
.news-section {
padding: 1rem 0;
position: relative;
}
.news-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 3rem;
}
.news-card {
background: var(--white);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--card-shadow);
transition: var(--transition-smooth);
border: 1px solid rgba(255,255,255,0.8);
}
.news-card:hover {
transform: translateY(-8px);
box-shadow: var(--premium-shadow);
}
.news-img {
height: 220px;
background-size: cover;
background-position: center;
}
.news-content {
padding: 2rem;
}
.news-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1rem;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
color: var(--primary);
}
.news-card h3 {
font-size: 1.25rem;
color: var(--bg-dark);
margin-bottom: 1rem;
}
.news-card p {
font-size: 0.9rem;
margin-bottom: 1.5rem;
}
.news-link {
font-size: 0.9rem;
font-weight: 700;
color: var(--primary);
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.news-link i {
transition: var(--transition-smooth);
}
.news-card:hover .news-link i {
transform: translateX(5px);
}
/* ==========================================
16. FAQ SECTION (Accordion)
========================================== */
.faq-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 20px;

    transition: max-height 0.4s ease,
                opacity 0.3s ease,
                padding 0.4s ease;
}

.faq-item.active .faq-panel {
    max-height: 300px;
    opacity: 1;
    padding: 0 20px 20px;
}


/* Make the button look clickable */
.faq-trigger {
    width: 100%;
    border: none;
    background: transparent;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px;
    text-align: left;
}


/* Plus icon animation */
.faq-icon-box {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-box {
    transform: rotate(45deg);
}


/* Make sure the FAQ item doesn't hide the panel */
.faq-item {
    overflow: hidden;
}
/* ==========================================
17. CALL TO ACTION (CTA) BANNER & SUPPORT
========================================== */
.cta-section {
padding: 2rem 0;
position: relative;
}
.cta-banner {
background: linear-gradient(135deg, var(--bg-dark), green);
border-radius: var(--radius-lg);
padding: 6rem 4rem;
text-align: center;
position: relative;
overflow: hidden;
box-shadow: var(--premium-shadow);
}
.cta-banner::before {
content: '';
position: absolute;
top: -100px;
right: -100px;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
border-radius: 50%;
}
.cta-content {
position: relative;
z-index: 2;
max-width: 800px;
margin: 0 auto;
}
.cta-content h2 {
font-size: 3.25rem;
color: var(--white);
margin-bottom: 1.5rem;
line-height: 1.2;
}
.cta-content p {
color: rgba(255,255,255,0.8);
font-size: 1.15rem;
margin-bottom: 3rem;
}
.cta-actions {
display: flex;
justify-content: center;
gap: 1.5rem;
}

/* =========================================================
18  FOOTER
========================================================= */

.footer {

  border-top: 1px solid #eeeaf2;

  background: #fbfafc;

}

.footer-container {

  width: min(
    calc(100% - 48px),
    var(--container)
  );

  margin: 0 auto;

  padding: 70px 0 55px;

  display: grid;

  grid-template-columns:
    1.7fr
    1fr
    1fr
    1fr;

  gap: 50px;

}


/* Footer brand */

.footer-brand {

  max-width: 310px;

}

.footer-logo {

  margin-bottom: 17px;

}

.footer-brand > p {

  color: var(--text-soft);

  font-size: 12px;

  line-height: 1.7;

}

.contact-info {

  margin-top: 22px;

  display: flex;
  flex-direction: column;

  gap: 7px;

}

.contact-info a,
.contact-info span {

  color: #686274;

  font-size: 11px;

}


/* Footer columns */

.footer-column {

  display: flex;
  flex-direction: column;

  gap: 11px;

}

.footer-column h3 {

  margin-bottom: 7px;

  color: var(--text);

  font-size: 12px;

  font-weight: 800;

}

.footer-column a {

  color: #6c6875;

  font-size: 11px;

  transition:
    color 0.2s ease;

}

.footer-column a:hover {

  color: var(--purple);

}


/* =========================================================
   FOOTER COMPLIANCE
========================================================= */

.footer-bottom {

  width: min(
    calc(100% - 48px),
    var(--container)
  );

  margin: 0 auto;

  padding:
    28px 0
    35px;

  border-top: 1px solid #e8e4ec;

}

.compliance {

  display: flex;

  gap: 12px;

  margin-bottom: 15px;

}

.compliance-icon {

  width: 31px;
  height: 31px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #e8faf3;

  color: #12a976;

  font-size: 13px;

  font-weight: 800;

}

.compliance strong {

  display: block;

  margin-bottom: 4px;

  color: var(--text);

  font-size: 11px;

}

.compliance p {

  max-width: 750px;

  color: #77727e;

  font-size: 10px;

  line-height: 1.6;

}

.legal-text {

  max-width: 900px;

  margin-bottom: 22px;

  color: #77727e;

  font-size: 10px;

  line-height: 1.7;

}

.copyright {

  padding-top: 20px;

  border-top: 1px solid #e9e5ed;

  color: #88838e;

  font-size: 10px;

}

.copyright span {

  margin-left: 7px;

}


/*19  IMAGES STYLE*/

 .vtu-portal-img {
    width: 70%%;
    max-width: 300px;
    height: auto;
    display: flex;
    margin: 0 auto;

    /* Prevents the image from looking cramped */
    object-fit: contain;

    /* Clean landing-page look */
    border-radius: 20px;

    /* Subtle depth */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

    /* Smooth animation */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Gentle hover effect */
.vtu-portal-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.unique-photo1 {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    margin: 0 auto;

    /* Prevents the image from looking cramped */
    object-fit: contain;

    /* Clean landing-page look */
    border-radius: 20px;

    /* Subtle depth */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

    /* Smooth animation */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.unique-photo2 {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    margin:  auto;
  margin-top: 20px;

    /* Prevents the image from looking cramped */
    object-fit: contain;

    /* Clean landing-page look */
    border-radius: 20px;

    /* Subtle depth */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

    /* Smooth animation */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


/* ==========================================
21. RESPONSIVENESS
========================================== */
@media (max-width: 1200px) {
.hero-title { font-size: 3.5rem; }
.footer-grid { grid-template-columns: repeat(3, 1fr); }
.pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.team-grid { grid-template-columns: repeat(2, 1fr); }
.menu-btn {display: none; }

}
@media (max-width: 991px) {
.hero-grid { grid-template-columns: 1fr; gap: 5rem; text-align: center; }
.hero-content { max-width: 100%; }
.hero-actions { justify-content: center; }
.why-grid { grid-template-columns: 1fr; gap: 4rem; }
.api-grid { grid-template-columns: 1fr; gap: 4rem; }
.app-preview-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
.app-visuals { order: 2; }
.security-grid { grid-template-columns: 1fr; gap: 4rem; }
.steps-grid { grid-template-columns: 1fr; gap: 4rem; }
.steps-grid::after { display: none; }
.stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.menu-btn { display: block; }
.nav-links {
position: fixed;
top: 0;
right: -100%;
width: 100%;
max-width: 320px;
height: 100vh;
background: var(--white);
flex-direction: column;
justify-content: center;
padding: 4rem;
box-shadow: -10px 0 30px rgba(0,0,0,0.05);
transition: var(--transition-smooth);
z-index: 1000;
}
header.nav-open .nav-links { right: 0; }
.nav-actions { display: none; }
}
@media (max-width: 768px) {
.hero-title { font-size: 2.75rem; }
.section-title { font-size: 2rem; }
.pricing-grid { grid-template-columns: 1fr; }
.news-grid { grid-template-columns: 1fr; }
.team-grid { grid-template-columns: 1fr; }
.cta-banner { padding: 4rem 2rem; }
.cta-content h2 { font-size: 2.25rem; }
.footer-grid { grid-template-columns: 1fr; }
.support-banner { flex-direction: column; gap: 2rem; text-align: center; }
.support-info { flex-direction: column; }
.menu-btn { display: block; }

}


/* Gentle hover effect */
.unique-photo1:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  background-color: black;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Hamburger button */
.menu-btn {
    position: fixed;
    top: 25px;
    right: 15px;
    z-index: 2000;

    width: 40px;
    height: 50px;

    border: none;
    border-radius: 15px;

    background: #0d8200;
    color: white;

    font-size: 20px;
    cursor: pointer;
}


/* Side menu */
.side-menu {
    position: fixed;

    top: 0;
    left: 0;

    width: 80%;
    max-width: 560px;
    height: 100vh;

    background: white;

    z-index: 1500;

    transform: translateX(-100%);
    transition: transform 0.4s ease;

    padding: 80px 30px 30px;

    box-sizing: border-box;
}


/* Open menu */
.side-menu.show {
    transform: translateX(0);
}


/* Dark background */
.overlay {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: rgba(0, 0, 0, 0.45);

    z-index: 1000;

    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;
}


/* Show overlay */
.overlay.show {
    opacity: 1;
    visibility: visible;
}


/* Logo */
.menu-logo {
    margin-bottom: 6px;
    margin-top: -60px;
}

.menu-logo img {
    width: 150px;
    height: auto;
}


/* Menu links */
.side-menu a {
    display: block;

    padding: 20px 0;

    border-bottom: 2px solid #ddd;

    color: #222;

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;
}


/* Hover */
.side-menu a:hover {
    color: #4b00d1;
}

.logo-beside {
  width: auto;
  height: 45px;
  overflow: hidden;
  margin-left: 15px;
}
.logo-beside img {
 width: 100%;
  height: 100%;
  object-fit: contain;
  }

  /* ==========================================
   MOBILE / UNIVERSAL OVERFLOW FIX
========================================== */

.hero-grid > *,
.why-grid > *,
.app-preview-grid > *,
.security-grid > *,
.services-grid > *,
.pricing-grid > *,
.team-grid > *,
.news-grid > *,
.footer-grid > * {
    min-width: 0;
}

@media (max-width: 768px) {

    .fb-1 {
        left: 0;
    }

    .fb-2 {
        right: 0;
    }

    .ac-1 {
        left: 5%;
        transform: translateX(0);
    }

    .ac-2 {
        right: 5%;
        transform: translateX(0);
    }

}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple: green;
  --purple-dark: green;
  --purple-light: #faf4ff;

  --text: #191438;
  --body-text: #626276;

  --border: green;
  --box-border: #dfe3eb;

  --green: #16b980;
}

body {
  min-height: 100vh;
  padding: 10px 22px;

  background: #ffffff;

  color: var(--text);

  font-family: "DM Sans", sans-serif;
}


/* =========================================
   MAIN GRID
========================================= */

.services-grid {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  grid-template-rows:
    378px 372px;

  gap: 18px 23px;
}


/* =========================================
   IMAGE
========================================= */

.image-card {
  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 9px;
}

.image-card img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* =========================================
   SERVICE CARDS
========================================= */

.service-card {
  position: relative;
  padding: 29px 21px 20px;

  border: 1px solid var(--border);
  border-radius: 13px;

  background: #ffffff;

  overflow: hidden;
}


/* =========================================
   ICON
========================================= */

.icon {
  width: 43px;
  height: 43px;

  margin-bottom: 17px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #faf1ff;

  color: #7d22df;

  font-size: 20px;
  font-weight: 700;
}

.icon span {
  line-height: 1;
}


/* =========================================
   HEADINGS
========================================= */

.service-card h2 {
  margin-bottom: 9px;

  font-family: "Plus Jakarta Sans", sans-serif;

  color: #181336;

  font-size: 16px;
  line-height: 1.25;

  font-weight: 800;

  letter-spacing: -0.35px;
}


/* =========================================
   DESCRIPTION
========================================= */

.service-card > p {
  color: #5e5e70;

  font-size: 11.3px;
  line-height: 1.48;

  font-weight: 400;
}


/* =========================================
   AIRTIME BOX
========================================= */

.airtime-box {
  position: absolute;

  left: 21px;
  right: 21px;
  bottom: 29px;

  padding: 12px;

  border: 1px solid var(--box-border);
  border-radius: 11px;

  background: #f8fafc;
}


/* Network tabs */

.network-tabs {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 5px;
}

.network {
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #dfe2e9;
  border-radius: 5px;

  background: #ffffff;

  color: #535464;

  font-size: 7px;
  font-weight: 700;
}

.network.active {
  border-color: #a832ff;

  background: #fff6ff;

  color: #a000ff;
}


/* Purchase */

.purchase-row {
  margin-top: 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 5px;

  color: #646575;

  font-size: 7px;
}

.purchase-row strong {
  color: #00a978;

  font-size: 7px;
}


/* Progress */

.progress {
  width: 100%;
  height: 4px;

  margin-top: 8px;

  overflow: hidden;

  border-radius: 10px;

  background: #e2e5ec;
}

.progress-fill {
  width: 70%;
  height: 100%;

  border-radius: inherit;

  background: #8e39d8;
}


/* Delivery */

.delivery {
  margin-top: 6px;

  display: flex;
  justify-content: flex-end;
  align-items: center;

  gap: 3px;

  color: #777987;

  font-size: 5.5px;
}

.green-dot {
  width: 8px;
  height: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #16b979;

  color: white;

  font-size: 5px;
}


/* =========================================
   BILL PAYMENTS
========================================= */

.bill-box {
  position: absolute;

  left: 21px;
  right: 21px;
  bottom: 29px;

  padding: 10px 12px;

  border: 1px solid var(--box-border);
  border-radius: 11px;

  background: #f8fafc;
}

.bill-item {
  min-height: 29px;

  padding: 5px 7px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 1px solid #dfe3eb;
  border-radius: 5px;

  background: white;

  color: #464756;

  font-size: 7px;
}

.bill-item + .bill-item {
  margin-top: 5px;
}

.bill-left {
  display: flex;
  align-items: center;

  gap: 5px;
}

.tiny-icon {
  color: #1477d2;
}

.yellow-icon {
  color: #e4a400;
}

.renewed {
  padding: 3px 5px;

  border-radius: 3px;

  background: #0db26e;

  color: white;

  font-size: 5px;
  font-weight: 700;
}

.bill-item strong {
  color: #333444;

  font-size: 6px;

  text-align: right;
}


/* =========================================
   VIRTUAL CARD
========================================= */

.virtual-card-box {
  position: absolute;

  left: 21px;
  right: 21px;
  bottom: 29px;

  padding: 12px;

  border: 1px solid var(--box-border);
  border-radius: 11px;

  background: #f8fafc;
}

.virtual-card {
  height: 80px;

  padding: 11px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-radius: 8px;

  background:
    linear-gradient(
      135deg,
      #18243a,
      #101827
    );

  color: white;

  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.15);
}

.card-top {
  display: flex;
  justify-content: space-between;

  font-size: 6px;
}

.chip {
  width: 13px;
  height: 9px;

  margin-top: 2px;

  border-radius: 2px;

  background: #dbe4ed;
}

.card-number {
  margin-top: 3px;

  font-family: monospace;

  font-size: 7px;

  letter-spacing: 1px;
}

.card-bottom {
  display: flex;
  justify-content: space-between;

  font-size: 4.5px;
}


/* =========================================
   GIFT CARD
========================================= */

.gift-box {
  position: absolute;

  left: 21px;
  right: 21px;
  bottom: 29px;

  padding: 11px 12px;

  border: 1px solid var(--box-border);
  border-radius: 11px;

  background: #f8fafc;
}

.gift-row {
  height: 25px;

  padding: 0 8px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 1px solid #dfe3eb;
  border-radius: 5px;

  background: white;

  color: #636575;

  font-size: 7px;
}

.gift-row strong {
  color: #7936d8;

  font-size: 6px;
}

.credited {
  height: 25px;

  margin-top: 5px;

  padding: 0 8px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 1px solid #8be0c4;
  border-radius: 5px;

  background: #f0fffa;

  color: #00a97b;

  font-size: 7px;
  font-weight: 700;
}

.credited strong {
  font-size: 7px;
}


/* =========================================
   TECH STORE
========================================= */

.store-box {
  position: absolute;

  left: 21px;
  right: 21px;
  bottom: 29px;

  min-height: 61px;

  padding: 10px;

  display: flex;
  align-items: center;

  gap: 8px;

  border: 1px solid var(--box-border);
  border-radius: 11px;

  background: #f8fafc;
}

.store-icon {
  width: 35px;
  height: 35px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #dce0e8;
  border-radius: 5px;

  background: white;

  color: #a42ee9;

  font-size: 16px;
}

.product-name {
  flex: 1;

  display: flex;
  flex-direction: column;

  gap: 3px;
}

.product-name strong {
  color: #39384b;

  font-size: 7px;
}

.product-name span {
  color: #b000d7;

  font-size: 6px;
  font-weight: 700;
}

.store-box button {
  padding: 4px 8px;

  border: none;
  border-radius: 4px;

  background: #1769ff;

  color: white;

  font-family: inherit;

  font-size: 5px;
  font-weight: 700;

  cursor: pointer;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        margin-top: 30px;
    }

    .image-card {
        min-height: 380px;
    }

    .service-card {
        min-height: 380px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 540px) {

  body {
    padding: 12px;
  }

  .services-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .image-card {
    height: 400px;
    min-height: 0;
  }

  .service-card {
    min-height: 390px;

    padding: 28px 20px;
  }

  .service-card h2 {
    font-size: 18px;
  }

  .service-card > p {
    font-size: 12px;
  }

  .airtime-box,
  .bill-box,
  .virtual-card-box,
  .gift-box,
  .store-box {
    left: 20px;
    right: 20px;
    bottom: 25px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple: green;
  --purple-light: #a735ff;
  --card-border: green;

  --heading: #17113d;
  --body-text: #5d6071;

  --background: #fff6ff;
  --icon-background: #f8efff;
}

body {
  min-height: 100vh;

  font-family: "DM Sans", sans-serif;

  color: var(--heading);

  background: var(--background);
}



/* =========================================
   HEADER
========================================= */

.section-header {
  text-align: center;
  margin-bottom: 46px;
  display: block;
}

.section-header h1 {
  margin-bottom: 13px;

  font-family: "Plus Jakarta Sans", sans-serif;

  color: black;

  font-size: 29px;
  line-height: 1.2;

  font-weight: 800;

  letter-spacing: -1px;
}

.section-header p {
  color: #5c6070;

  font-size: 13px;
  line-height: 1.55;

  font-weight: 400;
}


/* =========================================
   GRID
========================================= */

.audience-grid {
  width: 100%;
  max-width: 880px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px 23px;
}


/* =========================================
   CARD
========================================= */

.audience-grid {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    justify-items: center;

    align-items: stretch;


    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

    transition: all 0.3s ease;
}


/* =========================================
   ICON
========================================= */

.icon {
  width: 43px;
  height: 43px;

  margin-bottom: 17px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--icon-background);

  color: green;

  font-size: 19px;
  font-weight: 700;

  line-height: 1;
}







/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

  .nav-links {

    gap: 17px;

  }

  .nav-links a {

    font-size: 12px;

  }

  .nav-actions {

    display: none;

  }

  .menu-button {

    display: flex;

  }

  .service-grid {

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

  }

  .cta-content {

    flex-wrap: wrap;

  }

  .cta-buttons {

    margin-left: 72px;

  }

  .footer-container {

    grid-template-columns:
      repeat(2, 1fr);

  }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

  .hero h1 {

    font-size: 33px;

  }

  .hero-badge {

    font-size: 10px;

  }

  .section-heading h2 {

    font-size: 19px;

  }

  .cta-buttons {

    flex-direction: column;

    align-items: stretch;

  }

  .cta-primary,
  .cta-secondary {

    text-align: center;

  }

}


/* Feature section */
.features-item {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-item li {
    margin-bottom: 25px;
}

/* Feature Box */
.feature-box {
    display: flex;
    align-items: center;
    padding: 25px 20px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #eee;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

/* Hover effect */
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: green;
}

/* Icon */
.box-icon {
    min-width: 60px;
    height: 60px;
    margin-right: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, green, green);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Font Awesome icon */
.box-icon .icon {
    font-size: 25px;
    color: green;
    margin-left: 10px;
}

/* Text */
.box-text h4 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.5px;
}

.box-text p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 767px) {
    .feature-box {
        padding: 20px 15px;
    }

    .box-icon {
        min-width: 50px;
        height: 50px;
        margin-right: 12px;
    }

    .box-icon .icon {
        font-size: 20px;
    }

    .box-text h4 {
        font-size: 15px;
    }

    .box-text p {
        font-size: 13px;
    }
}


/* =========================================================
   UNIQUE TELLER - FINAL RESPONSIVE FIX
   Put this at the VERY END of your CSS
========================================================= */


/* =========================================================
   1. GLOBAL RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;

    margin: 0;
    padding: 0;

    overflow-x: hidden;

    font-family: "Sora", "Poppins", "DM Sans", sans-serif;

    line-height: 1.6;

    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

a {
    text-decoration: none;
}

.container {
    width: min(100% - 32px, 1200px);
    margin-inline: auto;
}


/* =========================================================
   2. DESKTOP NAVIGATION
========================================================= */

#main-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 18px 0;

    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


/* Logo */

.logo {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;

    color: #111827;

    font-size: 1.35rem;

    font-weight: 800;
}

.logo-beside {
    width: 44px;
    height: 44px;

    margin: 0;

    overflow: hidden;

    flex-shrink: 0;
}

.logo-beside img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


/* Desktop links */

.desktop-nav {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: clamp(14px, 2vw, 28px);

    margin-left: auto;
}

.desktop-nav a {
    position: relative;

    display: inline-flex;

    align-items: center;

    white-space: nowrap;

    padding: 8px 0;

    color: #333333;

    font-size: 14px;

    font-weight: 600;

    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: #008f00;
}

.desktop-nav a:not(.nav-cta)::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #008f00;

    border-radius: 5px;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

.desktop-nav a:not(.nav-cta):hover::after {
    width: 100%;
}


/* Get Started */

.desktop-nav .nav-cta {
    padding: 11px 20px;

    color: #ffffff !important;

    background: #008f00;

    border-radius: 8px;

    box-shadow: 0 6px 18px rgba(0, 143, 0, 0.2);

    transition: all 0.3s ease;
}

.desktop-nav .nav-cta:hover {
    color: #ffffff !important;

    background: #007300;

    transform: translateY(-2px);
}


/* =========================================================
   3. MOBILE MENU
========================================================= */

/* Hidden on desktop */

.menu-btn,
.side-menu,
.overlay {
    display: none;
}


/* =========================================================
   4. HERO
========================================================= */

.hero {
    width: 100%;

    min-height: 100vh;

    padding: 140px 0 90px;

    margin: 0;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            150deg,
            rgba(241, 245, 239, 0.9),
            rgba(250, 245, 255, 0.7)
        ),
        url("/assetsLP/unique-photo.jpeg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}

.hero-grid {
    width: 100%;

    display: grid;

    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);

    gap: 50px;

    align-items: center;

    margin: 0;
}

.hero-content {
    width: 100%;

    max-width: 650px;
}

.hero-title {
    margin: 0 0 22px;

    font-size: clamp(2.5rem, 5vw, 4.25rem);

    line-height: 1.08;

    color: #172033;

    overflow-wrap: break-word;
}

.hero-title span {
    background: linear-gradient(
        135deg,
        #008f00,
        #16b979
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.hero-desc {
    max-width: 600px;

    margin: 0 0 30px;

    font-size: clamp(1rem, 1.5vw, 1.15rem);

    line-height: 1.7;

    color: #167a16;

    font-weight: 600;
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 15px;
}

.hero-mockup-wrapper {
    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    min-width: 0;
}

.mockup-main {
    width: 100%;

    max-width: 460px;
}


/* =========================================================
   5. STATS
========================================================= */

.stats-section {
    width: 100%;

    padding: 70px 20px;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(0, 80, 30, 0.75),
            rgba(0, 80, 30, 0.75)
        ),
        url("/assetsLP/counters.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}

.stats-section .container {
    width: min(100%, 1200px);

    margin: 0 auto;
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;

    width: 100%;
}

.stat-item {
    min-width: 0;

    text-align: center;

    padding: 25px 15px;
}

.stat-item h2 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: clamp(1.8rem, 3vw, 2.3rem);

    line-height: 1.2;

    overflow-wrap: anywhere;
}

.stat-item p {
    margin: 0;

    color: #ffffff;

    font-size: 14px;

    line-height: 1.5;

    overflow-wrap: break-word;
}

/* =========================================================
   8. VTU / LANDING PAGE IMAGES
========================================================= */

.vtu-portal-img,
.unique-photo1,
.unique-photo2 {
    width: 100%;

    max-width: 550px;

    height: auto;

    display: block;

    margin-left: auto;
    margin-right: auto;

    object-fit: contain;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* IMPORTANT:
   Remove the huge negative margins from the old CSS.
*/

.vtu-portal-img {
    margin-top: 30px;
    margin-bottom: 40px;
}

.unique-photo1 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.unique-photo2 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.vtu-portal-img:hover,
.unique-photo1:hover,
.unique-photo2:hover {
    transform: translateY(-5px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}


/* =========================================================
   16. FEATURE BOX
========================================================= */

.features-item {
    width: 100%;

    list-style: none;

    padding: 0;

    margin: 0;
}

.features-item li {
    margin-bottom: 20px;
}

.feature-box {
    width: 100%;

    display: flex;

    align-items: center;

    padding: 22px 20px;

    background: #ffffff;

    border-radius: 15px;

    border: 1px solid #eeeeee;

    box-shadow: 0 8px 25px rgba(0,0,0,0.06);

    transition: all 0.3s ease;
}

.box-icon {
    width: 55px;
    height: 55px;

    flex: 0 0 55px;

    margin-right: 16px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf8ea;
}

.box-icon .icon {
    margin: 0;

    color: #008f00;

    font-size: 22px;
}

.box-text {
    min-width: 0;
}

.box-text h4 {
    margin: 0 0 7px;

    color: #222222;

    font-size: 16px;

    line-height: 1.3;
}

.box-text p {
    margin: 0;

    color: #777777;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   17. UNIVERSAL GRID OVERFLOW PROTECTION
========================================================= */

.hero-grid > *,
.why-grid > *,
.why-features > *,
.services-grid > *,
.audience-grid > *,
.team-grid > *,
.news-grid > *,
.stats-grid > *,
.footer-container > * {
    min-width: 0;
}


/* =========================================================
   18. TABLET - 991px
========================================================= */

@media (max-width: 991px) {

    .container {
        width: min(100% - 30px, 900px);
    }

    .desktop-nav {
        gap: 16px;
    }

    .desktop-nav a {
        font-size: 13px;
    }

    .desktop-nav .nav-cta {
        padding: 9px 14px;
    }

    .hero {
        padding: 130px 0 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 40px;

        text-align: center;
    }

    .hero-content {
        max-width: 700px;

        margin: 0 auto;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   19. MOBILE - 768px
========================================================= */

@media (max-width: 768px) {

    .container {
        width: min(100% - 28px, 650px);
    }


    /* Hide desktop nav */

    .desktop-nav {
        display: none;
    }


    /* Show mobile button */

    .menu-btn {
        position: fixed;

        top: 18px;
        right: 15px;

        z-index: 2000;

        width: 44px;
        height: 44px;

        display: flex;

        align-items: center;
        justify-content: center;

        border: none;

        border-radius: 12px;

        background: #008f00;

        color: #ffffff;

        font-size: 21px;

        cursor: pointer;

        box-shadow: 0 6px 18px rgba(0,143,0,0.25);
    }


    /* Side menu */

    .side-menu {
        position: fixed;

        top: 0;
        left: 0;

        width: min(85%, 360px);

        height: 100dvh;

        display: block;

        padding: 85px 25px 30px;

        background: #ffffff;

        z-index: 1500;

        overflow-y: auto;

        transform: translateX(-100%);

        transition: transform 0.35s ease;

        box-shadow: 10px 0 30px rgba(0,0,0,0.12);
    }

    .side-menu.show {
        transform: translateX(0);
    }


    /* Overlay */

    .overlay {
        position: fixed;

        inset: 0;

        display: block;

        background: rgba(0,0,0,0.45);

        z-index: 1400;

        opacity: 0;

        visibility: hidden;

        transition: all 0.3s ease;
    }

    .overlay.show {
        opacity: 1;

        visibility: visible;
    }


    /* Mobile logo */

    .menu-logo {
        margin: 0 0 25px;
    }

    .menu-logo img {
        width: 135px;

        height: auto;

        display: block;
    }


    /* Mobile links */

    .side-menu a {
        display: block;

        padding: 16px 0;

        border-bottom: 1px solid #eeeeee;

        color: #222222;

        font-size: 14px;

        font-weight: 600;
    }


    /* Hero */

    .hero {
        min-height: auto;

        padding: 120px 0 60px;
    }

    .hero-grid {
        gap: 35px;
    }

    .hero-title {
        font-size: clamp(2.1rem, 10vw, 3rem);
    }

    .hero-desc {
        font-size: 0.95rem;
    }


    /* Stats */

    .stats-section {
        padding: 50px 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-item h2 {
        font-size: 25px;
    }

    .stat-item p {
        font-size: 13px;
    }


    /* Services */

    .services-section {
        padding: 60px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 25px;
    }

    .service-card {
        min-height: 390px;

        padding: 28px 20px;
    }


    /* Audience */

    .audience-section {
        min-height: auto;

        padding: 60px 15px;
    }

    .audience-grid {
        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 25px;
    }

    .audience-card {
        min-height: 220px;
    }


    /* Image */

    .vtu-portal-img {
        width: 100%;

        max-width: 550px;

        margin: 25px auto 35px;
    }

    .unique-photo1,
    .unique-photo2 {
        width: 100%;

        margin: 25px auto;
    }


    /* Team */

    .team-section {
        padding: 60px 15px;
    }

    .team-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .team-card {
        max-width: 420px;

        margin: 0 auto;
    }


    /* Testimonials */

    .testimonials-section {
        padding: 60px 15px;
    }

    .testimonials-carousel {
        padding: 10px 0 85px;

        margin-top: 30px;
    }

    .testimonial-slide {
        padding: 0;
    }

    .testimonial-card {
        min-height: 360px;

        padding: 30px 22px;

        border-radius: 16px;
    }

    .testimonial-text {
        font-size: 15px;

        line-height: 1.7;
    }


    /* News */

    .news-section {
        padding: 60px 15px;
    }

    .news-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    /* FAQ */

    .faq-section {
        padding: 60px 15px;
    }

    .faq-trigger {
        padding: 17px 15px;
    }

    .faq-trigger h4 {
        font-size: 14px;
    }


    /* CTA */

    .cta-section {
        padding: 50px 15px;
    }

    .cta-banner {
        padding: 50px 22px;

        border-radius: 18px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .cta-actions .btn {
        width: 100%;
    }


    /* Footer */

    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 50px 0 35px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        padding-bottom: 25px;
    }


    /* Features */

    .feature-box {
        padding: 20px 15px;
    }

    .box-icon {
        width: 50px;
        height: 50px;

        flex-basis: 50px;

        margin-right: 12px;
    }

    .box-text h4 {
        font-size: 15px;
    }

    .box-text p {
        font-size: 13px;
    }

}


/* =========================================================
   20. SMALL MOBILE - 480px
========================================================= */

@media (max-width: 480px) {

    .container {
        width: min(100% - 22px, 450px);
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-beside {
        width: 38px;
        height: 38px;
    }


    /* Stats */

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item h2 {
        font-size: 27px;
    }


    /* Hero */

    .hero {
        padding-top: 105px;
    }

    .hero-title {
        font-size: 2.15rem;
    }

    .hero-actions {
        flex-direction: column;

        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }


    /* Services */

    .service-card {
        min-height: 380px;

        padding: 25px 18px;
    }


    /* Images */

    .vtu-portal-img,
    .unique-photo1,
    .unique-photo2 {
        width: 100%;

        border-radius: 14px;
    }


    /* Testimonials */

    .testimonial-card {
        min-height: 350px;

        padding: 28px 18px;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;
    }


    /* FAQ */

    .faq-trigger {
        gap: 10px;
    }

    .faq-trigger h4 {
        font-size: 13px;
    }

    .faq-panel p {
        font-size: 13px;
    }


    /* Footer */

    .footer-container {
        width: min(100% - 30px, 450px);
    }

}

/* FIX UNWANTED SPACE BETWEEN SECTIONS */

section {
    height: auto;
    min-height: auto;
}

.services-section,
.audience-section,
.team-section,
.testimonials-section,
.news-section,
.faq-section,
.cta-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.services-section,
.audience-section,
.team-section,
.testimonials-section,
.news-section,
.faq-section,
.cta-section {
    padding-top: 70px;
    padding-bottom: 70px;
}


/* Prevent elements from creating extra bottom space */

.services-grid,
.audience-grid,
.team-grid,
.news-grid,
.testimonials-carousel,
.faq-wrapper {
    margin-bottom: 0 !important;
}


/* Images */

.vtu-portal-img,
.unique-photo1,
.unique-photo2 {
    margin-bottom: 30px !important;
}


/* Remove common spacing problems */

.row,
.container,
.row > div {
    margin-bottom: 0;
}



/* New css from counter*/
.service2-icon {

}

</style>



