/* ==========================
DESIGN TOKENS - COLORS & TYPOGRAPHY
Change site-wide colors and fonts here.
========================== */
:root{
    /* Brand colors */
    --color-primary:#17854a;
    --color-primary-dark:#0e6f3d;
    --color-primary-soft:#edf8f1;
    --color-primary-pale:#f8fbf9;

    /* Neutrals */
    --color-heading:#061D43;
    --color-text:#43536f;
    --color-text-muted:#667085;
    --color-border:#eef2ef;
    --color-border-soft:#edf2ef;
    --color-white:#ffffff;
    --color-warning:#ffb400;

    /* Typography */
    --font-family-base:'Inter', sans-serif;
    --font-family-heading:'Inter', sans-serif;
    --font-size-hero:72px;
    --font-size-hero-lg:84px;
    --font-size-section:56px;
    --font-size-section-sm:52px;
    --font-size-card-title:24px;
    --font-size-body-lg:18px;
    --font-size-body:16px;
    --font-size-body-sm:14px;
    --line-height-tight:1;
    --line-height-heading:1.1;
    --line-height-body:1.8;
    --line-height-body-loose:1.9;
    --font-weight-medium:500;
    --font-weight-semibold:600;
    --font-weight-bold:700;
    --font-weight-extrabold:800;
    --font-weight-black:900;

    /* Effects */
    --shadow-soft:0 20px 60px rgba(7,20,39,0.08);

    /* Backward-compatible aliases for existing CSS */
    --primary-green:var(--color-primary);
    --primary-green-dark:var(--color-primary-dark);
    --primary-green-light:#9be8c1;
    --dark-navy:var(--color-heading);
    --dark-navy-2:#092b57;
    --ivory:#f7fbf8;
    --soft-white:var(--color-white);
    --mouse-grey:#7b8494;
    --accent-red:var(--color-primary);
    --accent-red-dark:var(--color-primary-dark);
    --soft-red:#ecf8f2;
    --heading:var(--color-heading);
    --text:var(--color-text);
    --shadow:var(--shadow-soft);
	
	/* Background Gradients */

	--gradient-light:
    linear-gradient(
    135deg,
    rgba(23,133,74,.12) 0%,
    rgba(23,133,74,.06) 40%,
    rgba(6,29,67,.08) 100%
);

	--gradient-light-soft:
	linear-gradient(
		180deg,
		#fbfdfc 0%,
		#f8fbf9 100%
	);

	--gradient-light-green:
	linear-gradient(
		135deg,
		#f8fbf9 0%,
		#eef8f2 100%
	);

	--gradient-dark:
	linear-gradient(
		135deg,
		#061D43 0%,
		#0D2C5E 100%
	);

	--gradient-dark-green:
	linear-gradient(
		135deg,
		#061D43 0%,
		#0D2C5E 50%,
		#17854A 100%
	);

	--gradient-card-light:
	linear-gradient(
		180deg,
		#ffffff 0%,
		#fdfefe 100%
	);

	--gradient-card-dark:
	linear-gradient(
		180deg,
		#0D2C5E 0%,
		#14396F 100%
	);
}

body{
    font-family:var(--font-family-base);
    color:var(--color-text);
}

h1, h2, h3, h4, h5, h6,
.heading-font{
    font-family:var(--font-family-heading);
    color:var(--color-heading);
}

.body-font{
    font-family:var(--font-family-base);
}

.text-primary{ color:var(--color-primary) !important; }
.text-heading{ color:var(--color-heading) !important; }
.text-muted{ color:var(--color-text-muted) !important; }
.bg-primary{ background:var(--color-primary) !important; }
.bg-soft{ background:var(--color-primary-soft) !important; }
.bg-pale{ background:var(--color-primary-pale) !important; }
.border-soft{ border-color:var(--color-border) !important; }
/* ==========================
ABOUT HERO
========================== */

.about-hero{
    padding:120px 0 80px;
    background:var(--color-primary-pale);
}

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

.about-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:var(--color-primary-soft);
    color:var(--color-primary);
    border-radius:50px;
    font-weight:var(--font-weight-bold);
    margin-bottom:20px;
}

.about-content h1{
    font-size:var(--font-size-hero);
    line-height:var(--line-height-tight);
    color:var(--color-heading);
    font-weight:var(--font-weight-extrabold);
    margin-bottom:25px;
}

.about-content h1 span{
    display:block;
    color:var(--color-primary);
}

.about-content p{
    font-size:var(--font-size-body-lg);
    line-height:var(--line-height-body-loose);
    color:var(--color-text-muted);
    margin-bottom:35px;
    max-width:650px;
}

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

.about-images{
    position:relative;
    min-height:620px;
}

.about-img{
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 25px 50px rgba(6,29,67,.10);
}

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

.about-img.large{
    width:420px;
}

.about-img.small{
    width:260px;
    position:absolute;
}

.about-img.top{
    right:0;
    top:0;
}

.about-img.bottom{
    right:0;
    bottom:0;
}

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

.about-stats{
    margin-top:70px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-card{
    background:var(--color-white);
    border-radius:24px;
    padding:30px;
    text-align:center;
    border:1px solid var(--color-border);
}

.stat-card strong{
    display:block;
    font-size:42px;
    color:var(--color-primary);
    margin-bottom:8px;
}

.stat-card span{
    color:var(--color-text-muted);
}

/* ==========================
TIMELINE
========================== */

.journey-section{
    padding:100px 0;
    background:var(--color-white);
}

.timeline{
    margin-top:60px;

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;

    position:relative;
}

.timeline::before{
    content:'';
    position:absolute;
    top:40px;
    left:0;
    width:100%;
    height:3px;
    background:var(--color-border-soft);
}

.timeline-item{
    position:relative;
    z-index:2;
}

.year{
    width:80px;
    height:80px;

    background:var(--color-primary);
    color:var(--color-white);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:var(--font-weight-bold);

    margin:auto auto 25px;
}

.timeline-content{
    background:var(--color-white);

    border:1px solid var(--color-border);

    border-radius:25px;

    padding:25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(6,29,67,.05);
}

.timeline-content i{
    font-size:34px;
    color:var(--color-primary);
    margin-bottom:15px;
}

.timeline-content h4{
    color:var(--color-heading);
    margin-bottom:10px;
}

.timeline-content p{
    color:var(--color-text-muted);
    font-size:var(--font-size-body-sm);
    line-height:1.7;
}

/* ==========================
SECTION HEADING
========================== */

.section-heading{
    text-align:center;
}

.section-badge{
    display:inline-flex;
    gap:8px;
    align-items:center;

    background:var(--color-primary-soft);

    color:var(--color-primary);

    padding:10px 18px;

    border-radius:50px;

    font-weight:var(--font-weight-bold);

    margin-bottom:18px;
}

.section-heading h2{
    font-size:var(--font-size-section);
    color:var(--color-heading);
}

.section-heading h2 span{
    color:var(--color-primary);
}

/* ==========================
1366px Optimization
========================== */

@media (max-width:1366px){

    .about-content h1{
        font-size:62px;
    }

    .about-img.large{
        width:380px;
    }

    .about-img.small{
        width:220px;
    }

    .timeline{
        gap:15px;
    }

}

/* ==========================
Tablet
========================== */

@media(max-width:991px){

    .about-hero-grid{
        grid-template-columns:1fr;
    }

    .about-content{
        text-align:center;
    }

    .about-content h1{
        font-size:var(--font-size-section-sm);
    }

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

    .about-images{
        min-height:auto;
        display:flex;
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .about-img.large,
    .about-img.small{
        position:relative;
        width:300px;
    }

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

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

    .timeline::before{
        display:none;
    }

}/* ==========================
ABOUT HERO
========================== */

.about-hero{
    padding:120px 0 80px;
    background:var(--color-primary-pale);
}

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

.about-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:var(--color-primary-soft);
    color:var(--color-primary);
    border-radius:50px;
    font-weight:var(--font-weight-bold);
    margin-bottom:20px;
}

.about-content h1{
    font-size:var(--font-size-hero);
    line-height:var(--line-height-tight);
    color:var(--color-heading);
    font-weight:var(--font-weight-extrabold);
    margin-bottom:25px;
}

.about-content h1 span{
    display:block;
    color:var(--color-primary);
}

.about-content p{
    font-size:var(--font-size-body-lg);
    line-height:var(--line-height-body-loose);
    color:var(--color-text-muted);
    margin-bottom:35px;
    max-width:650px;
}

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

.about-images{
    position:relative;
    min-height:620px;
}

.about-img{
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 25px 50px rgba(6,29,67,.10);
}

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

.about-img.large{
    width:420px;
}

.about-img.small{
    width:260px;
    position:absolute;
}

.about-img.top{
    right:0;
    top:0;
}

.about-img.bottom{
    right:0;
    bottom:0;
}

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

.about-stats{
    margin-top:70px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-card{
    background:var(--color-white);
    border-radius:24px;
    padding:30px;
    text-align:center;
    border:1px solid var(--color-border);
}

.stat-card strong{
    display:block;
    font-size:42px;
    color:var(--color-primary);
    margin-bottom:8px;
}

.stat-card span{
    color:var(--color-text-muted);
}

/* ==========================
TIMELINE
========================== */

.journey-section{
    padding:100px 0;
    background:var(--color-white);
}

.timeline{
    margin-top:60px;

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;

    position:relative;
}

.timeline::before{
    content:'';
    position:absolute;
    top:40px;
    left:0;
    width:100%;
    height:3px;
    background:var(--color-border-soft);
}

.timeline-item{
    position:relative;
    z-index:2;
}

.year{
    width:80px;
    height:80px;

    background:var(--color-primary);
    color:var(--color-white);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:var(--font-weight-bold);

    margin:auto auto 25px;
}

.timeline-content{
    background:var(--color-white);

    border:1px solid var(--color-border);

    border-radius:25px;

    padding:25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(6,29,67,.05);
}

.timeline-content i{
    font-size:34px;
    color:var(--color-primary);
    margin-bottom:15px;
}

.timeline-content h4{
    color:var(--color-heading);
    margin-bottom:10px;
}

.timeline-content p{
    color:var(--color-text-muted);
    font-size:var(--font-size-body-sm);
    line-height:1.7;
}

/* ==========================
SECTION HEADING
========================== */

.section-heading{
    text-align:center;
}

.section-badge{
    display:inline-flex;
    gap:8px;
    align-items:center;

    background:var(--color-primary-soft);

    color:var(--color-primary);

    padding:10px 18px;

    border-radius:50px;

    font-weight:var(--font-weight-bold);

    margin-bottom:18px;
}

.section-heading h2{
    font-size:var(--font-size-section);
    color:var(--color-heading);
}

.section-heading h2 span{
    color:var(--color-primary);
}

/* ==========================
1366px Optimization
========================== */

@media (max-width:1366px){

    .about-content h1{
        font-size:62px;
    }

    .about-img.large{
        width:380px;
    }

    .about-img.small{
        width:220px;
    }

    .timeline{
        gap:15px;
    }

}

/* ==========================
Tablet
========================== */

@media(max-width:991px){

    .about-hero-grid{
        grid-template-columns:1fr;
    }

    .about-content{
        text-align:center;
    }

    .about-content h1{
        font-size:var(--font-size-section-sm);
    }

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

    .about-images{
        min-height:auto;
        display:flex;
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .about-img.large,
    .about-img.small{
        position:relative;
        width:300px;
    }

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

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

    .timeline::before{
        display:none;
    }

}/* ==========================
ABOUT HERO
========================== */

.about-hero{
    padding:120px 0 80px;
    background:var(--color-primary-pale);
}

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

.about-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:var(--color-primary-soft);
    color:var(--color-primary);
    border-radius:50px;
    font-weight:var(--font-weight-bold);
    margin-bottom:20px;
}

.about-content h1{
    font-size:var(--font-size-hero);
    line-height:var(--line-height-tight);
    color:var(--color-heading);
    font-weight:var(--font-weight-extrabold);
    margin-bottom:25px;
}

.about-content h1 span{
    display:block;
    color:var(--color-primary);
}

.about-content p{
    font-size:var(--font-size-body-lg);
    line-height:var(--line-height-body-loose);
    color:var(--color-text-muted);
    margin-bottom:35px;
    max-width:650px;
}

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

.about-images{
    position:relative;
    min-height:620px;
}

.about-img{
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 25px 50px rgba(6,29,67,.10);
}

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

.about-img.large{
    width:420px;
}

.about-img.small{
    width:260px;
    position:absolute;
}

.about-img.top{
    right:0;
    top:0;
}

.about-img.bottom{
    right:0;
    bottom:0;
}

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

.about-stats{
    margin-top:70px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-card{
    background:var(--color-white);
    border-radius:24px;
    padding:30px;
    text-align:center;
    border:1px solid var(--color-border);
}

.stat-card strong{
    display:block;
    font-size:42px;
    color:var(--color-primary);
    margin-bottom:8px;
}

.stat-card span{
    color:var(--color-text-muted);
}

/* ==========================
TIMELINE
========================== */

.journey-section{
    padding:100px 0;
    background:var(--color-white);
}

.timeline{
    margin-top:60px;

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;

    position:relative;
}

.timeline::before{
    content:'';
    position:absolute;
    top:40px;
    left:0;
    width:100%;
    height:3px;
    background:var(--color-border-soft);
}

.timeline-item{
    position:relative;
    z-index:2;
}

.year{
    width:80px;
    height:80px;

    background:var(--color-primary);
    color:var(--color-white);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:var(--font-weight-bold);

    margin:auto auto 25px;
}

.timeline-content{
    background:var(--color-white);

    border:1px solid var(--color-border);

    border-radius:25px;

    padding:25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(6,29,67,.05);
}

.timeline-content i{
    font-size:34px;
    color:var(--color-primary);
    margin-bottom:15px;
}

.timeline-content h4{
    color:var(--color-heading);
    margin-bottom:10px;
}

.timeline-content p{
    color:var(--color-text-muted);
    font-size:var(--font-size-body-sm);
    line-height:1.7;
}

/* ==========================
SECTION HEADING
========================== */

.section-heading{
    text-align:center;
}

.section-badge{
    display:inline-flex;
    gap:8px;
    align-items:center;

    background:var(--color-primary-soft);

    color:var(--color-primary);

    padding:10px 18px;

    border-radius:50px;

    font-weight:var(--font-weight-bold);

    margin-bottom:18px;
}

.section-heading h2{
    font-size:var(--font-size-section);
    color:var(--color-heading);
}

.section-heading h2 span{
    color:var(--color-primary);
}

/* ==========================
1366px Optimization
========================== */

@media (max-width:1366px){

    .about-content h1{
        font-size:62px;
    }

    .about-img.large{
        width:380px;
    }

    .about-img.small{
        width:220px;
    }

    .timeline{
        gap:15px;
    }

}

/* ==========================
Tablet
========================== */

@media(max-width:991px){

    .about-hero-grid{
        grid-template-columns:1fr;
    }

    .about-content{
        text-align:center;
    }

    .about-content h1{
        font-size:var(--font-size-section-sm);
    }

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

    .about-images{
        min-height:auto;
        display:flex;
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .about-img.large,
    .about-img.small{
        position:relative;
        width:300px;
    }

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

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

    .timeline::before{
        display:none;
    }

}/* ==========================
ABOUT HERO
========================== */

.about-hero{
    padding:120px 0 80px;
    background:var(--color-primary-pale);
}

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

.about-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:var(--color-primary-soft);
    color:var(--color-primary);
    border-radius:50px;
    font-weight:var(--font-weight-bold);
    margin-bottom:20px;
}

.about-content h1{
    font-size:var(--font-size-hero);
    line-height:var(--line-height-tight);
    color:var(--color-heading);
    font-weight:var(--font-weight-extrabold);
    margin-bottom:25px;
}

.about-content h1 span{
    display:block;
    color:var(--color-primary);
}

.about-content p{
    font-size:var(--font-size-body-lg);
    line-height:var(--line-height-body-loose);
    color:var(--color-text-muted);
    margin-bottom:35px;
    max-width:650px;
}

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

.about-images{
    position:relative;
    min-height:620px;
}

.about-img{
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 25px 50px rgba(6,29,67,.10);
}

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

.about-img.large{
    width:420px;
}

.about-img.small{
    width:260px;
    position:absolute;
}

.about-img.top{
    right:0;
    top:0;
}

.about-img.bottom{
    right:0;
    bottom:0;
}

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

.about-stats{
    margin-top:70px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-card{
    background:var(--color-white);
    border-radius:24px;
    padding:30px;
    text-align:center;
    border:1px solid var(--color-border);
}

.stat-card strong{
    display:block;
    font-size:42px;
    color:var(--color-primary);
    margin-bottom:8px;
}

.stat-card span{
    color:var(--color-text-muted);
}

/* ==========================
TIMELINE
========================== */

.journey-section{
    padding:100px 0;
    background:var(--color-white);
}

.timeline{
    margin-top:60px;

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;

    position:relative;
}

.timeline::before{
    content:'';
    position:absolute;
    top:40px;
    left:0;
    width:100%;
    height:3px;
    background:var(--color-border-soft);
}

.timeline-item{
    position:relative;
    z-index:2;
}

.year{
    width:80px;
    height:80px;

    background:var(--color-primary);
    color:var(--color-white);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:var(--font-weight-bold);

    margin:auto auto 25px;
}

.timeline-content{
    background:var(--color-white);

    border:1px solid var(--color-border);

    border-radius:25px;

    padding:25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(6,29,67,.05);
}

.timeline-content i{
    font-size:34px;
    color:var(--color-primary);
    margin-bottom:15px;
}

.timeline-content h4{
    color:var(--color-heading);
    margin-bottom:10px;
}

.timeline-content p{
    color:var(--color-text-muted);
    font-size:var(--font-size-body-sm);
    line-height:1.7;
}

/* ==========================
SECTION HEADING
========================== */

.section-heading{
    text-align:center;
}

.section-badge{
    display:inline-flex;
    gap:8px;
    align-items:center;

    background:var(--color-primary-soft);

    color:var(--color-primary);

    padding:10px 18px;

    border-radius:50px;

    font-weight:var(--font-weight-bold);

    margin-bottom:18px;
}

.section-heading h2{
    font-size:var(--font-size-section);
    color:var(--color-heading);
}

.section-heading h2 span{
    color:var(--color-primary);
}

/* ==========================
1366px Optimization
========================== */

@media (max-width:1366px){

    .about-content h1{
        font-size:62px;
    }

    .about-img.large{
        width:380px;
    }

    .about-img.small{
        width:220px;
    }

    .timeline{
        gap:15px;
    }

}

/* ==========================
Tablet
========================== */

@media(max-width:991px){

    .about-hero-grid{
        grid-template-columns:1fr;
    }

    .about-content{
        text-align:center;
    }

    .about-content h1{
        font-size:var(--font-size-section-sm);
    }

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

    .about-images{
        min-height:auto;
        display:flex;
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .about-img.large,
    .about-img.small{
        position:relative;
        width:300px;
    }

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

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

    .timeline::before{
        display:none;
    }

}/* ==========================
ABOUT HERO
========================== */

.about-hero{
    padding:120px 0 80px;
    background:var(--color-primary-pale);
}

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

.about-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:var(--color-primary-soft);
    color:var(--color-primary);
    border-radius:50px;
    font-weight:var(--font-weight-bold);
    margin-bottom:20px;
}

.about-content h1{
    font-size:var(--font-size-hero);
    line-height:var(--line-height-tight);
    color:var(--color-heading);
    font-weight:var(--font-weight-extrabold);
    margin-bottom:25px;
}

.about-content h1 span{
    display:block;
    color:var(--color-primary);
}

.about-content p{
    font-size:var(--font-size-body-lg);
    line-height:var(--line-height-body-loose);
    color:var(--color-text-muted);
    margin-bottom:35px;
    max-width:650px;
}

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

.about-images{
    position:relative;
    min-height:620px;
}

.about-img{
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 25px 50px rgba(6,29,67,.10);
}

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

.about-img.large{
    width:420px;
}

.about-img.small{
    width:260px;
    position:absolute;
}

.about-img.top{
    right:0;
    top:0;
}

.about-img.bottom{
    right:0;
    bottom:0;
}

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

.about-stats{
    margin-top:70px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-card{
    background:var(--color-white);
    border-radius:24px;
    padding:30px;
    text-align:center;
    border:1px solid var(--color-border);
}

.stat-card strong{
    display:block;
    font-size:42px;
    color:var(--color-primary);
    margin-bottom:8px;
}

.stat-card span{
    color:var(--color-text-muted);
}

/* ==========================
TIMELINE
========================== */

.journey-section{
    padding:100px 0;
    background:var(--color-white);
}

.timeline{
    margin-top:60px;

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;

    position:relative;
}

.timeline::before{
    content:'';
    position:absolute;
    top:40px;
    left:0;
    width:100%;
    height:3px;
    background:var(--color-border-soft);
}

.timeline-item{
    position:relative;
    z-index:2;
}

.year{
    width:80px;
    height:80px;

    background:var(--color-primary);
    color:var(--color-white);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:var(--font-weight-bold);

    margin:auto auto 25px;
}

.timeline-content{
    background:var(--color-white);

    border:1px solid var(--color-border);

    border-radius:25px;

    padding:25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(6,29,67,.05);
}

.timeline-content i{
    font-size:34px;
    color:var(--color-primary);
    margin-bottom:15px;
}

.timeline-content h4{
    color:var(--color-heading);
    margin-bottom:10px;
}

.timeline-content p{
    color:var(--color-text-muted);
    font-size:var(--font-size-body-sm);
    line-height:1.7;
}

/* ==========================
SECTION HEADING
========================== */

.section-heading{
    text-align:center;
}

.section-badge{
    display:inline-flex;
    gap:8px;
    align-items:center;

    background:var(--color-primary-soft);

    color:var(--color-primary);

    padding:10px 18px;

    border-radius:50px;

    font-weight:var(--font-weight-bold);

    margin-bottom:18px;
}

.section-heading h2{
    font-size:var(--font-size-section);
    color:var(--color-heading);
}

.section-heading h2 span{
    color:var(--color-primary);
}

/* ==========================
1366px Optimization
========================== */

@media (max-width:1366px){

    .about-content h1{
        font-size:62px;
    }

    .about-img.large{
        width:380px;
    }

    .about-img.small{
        width:220px;
    }

    .timeline{
        gap:15px;
    }

}

/* ==========================
Tablet
========================== */

@media(max-width:991px){

    .about-hero-grid{
        grid-template-columns:1fr;
    }

    .about-content{
        text-align:center;
    }

    .about-content h1{
        font-size:var(--font-size-section-sm);
    }

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

    .about-images{
        min-height:auto;
        display:flex;
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .about-img.large,
    .about-img.small{
        position:relative;
        width:300px;
    }

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

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

    .timeline::before{
        display:none;
    }

}@charset "utf-8";
/* CSS Document */
:root{

    /* PRIMARY BRAND */

    --primary-green:var(--color-primary);
    --primary-green-dark:var(--color-primary-dark);
    --primary-green-light:#9be8c1;

    /* PREMIUM DARK */

    --dark-navy:var(--color-heading);
    --dark-navy-2:#092b57;

    /* LIGHTS */

    --ivory:#f7fbf8;
    --soft-white:var(--color-white);
    --mouse-grey:#7b8494;

    /* ACCENT */

    --accent-red:var(--color-primary);
    --accent-red-dark:var(--color-primary-dark);
    --soft-red:#ecf8f2;

    /* TEXT */

    --heading:var(--color-heading);
    --text:var(--color-text);

    /* SHADOW */

    --shadow:var(--shadow-soft);

}



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



body{
    font-family:var(--font-family-base);
    background:
    linear-gradient(
        180deg,
        #f8faf8 0%,
        #f4f7f5 100%
    );

    color:var(--text);
}

.container{
    width:92%;
    max-width:1320px;
    margin:auto;
}

a{
    text-decoration:none;
}

.study-card,
.dictionary-course-card,
.process-card,
.footer-card,
.dictionary-testimonial-card{

    background:rgba(255,255,255,0.88);

    border:
    1px solid rgba(23,133,74,0.08);

    box-shadow:var(--shadow);

    backdrop-filter:blur(12px);
}

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

.header{
    position:fixed;
    top:18px;
    left:0;
    width:100%;
    z-index:999;
}

.navbar{
    background:rgba(255,255,255,0.82);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.7);
    border-radius:24px;
    padding:14px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:
    0 10px 40px rgba(0,0,0,0.06);
}

.logo img{
    height:56px;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:24px;
}

.nav-menu a{
    font-size:15px;
    font-weight:var(--font-weight-bold);
    color:var(--heading);
    position:relative;
    transition:0.3s;
}

.nav-menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-7px;
    width:0;
    height:2px;
    background:var(--primary-green);
    transition:0.3s;
}

.nav-menu a:hover::after{
    width:100%;
}

.nav-menu a:hover{
    color:var(--primary-green);
}

.login-links{
    display:flex;
    align-items:center;
    gap:10px;
}

.login-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 13px;
    border-radius:60px;
    background:#f3fbf6;
    border:1px solid rgba(23,133,74,0.14);
    color:var(--heading);
    font-size:12px;
    font-weight:var(--font-weight-extrabold);
    white-space:nowrap;
    transition:0.3s;
}

.login-link i{
    color:var(--primary-green);
}

.login-link:hover{
    background:var(--primary-green);
    color:var(--color-white);
    transform:translateY(-2px);
}

.login-link:hover i{
    color:var(--color-white);
}

.admin-login{
    background:var(--soft-red);
    border-color:rgba(0,143,76,0.18);
    color:var(--accent-red-dark);
}

.admin-login i{
    color:var(--accent-red);
}

.header-btn{
    padding:14px 24px;
    border-radius:60px;
    background:
linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--dark-navy-2) 100%
);
    color:var(--color-white);
    font-weight:var(--font-weight-bold);
    white-space:nowrap;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    line-height:var(--line-height-tight);
    box-shadow:0 14px 35px rgba(23,133,74,0.28);
    transition:0.3s;
}

.header-btn:hover{
    transform:translateY(-3px);
	box-shadow:
0 18px 35px rgba(23,133,74,0.25);
}

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

.hero{
    position:relative;
    overflow:hidden;
    padding:170px 0 110px;
    background:
    radial-gradient(circle at top left,rgba(23,133,74,0.15),transparent 30%),
    radial-gradient(circle at 78% 22%,rgba(6,29,67,0.08),transparent 26%),
    radial-gradient(circle at bottom right,rgba(23,133,74,0.12),transparent 30%),
    linear-gradient(180deg,#f7fbf8 0%,var(--color-white) 100%);
}

.hero::before{
    content:'';
    position:absolute;
    width:650px;
    height:650px;
    border-radius:50%;
    background:rgba(23,133,74,0.05);
    right:-250px;
    top:-250px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    align-items:center;
    gap:70px;
}

/* LEFT */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 24px;
    border-radius:60px;
    background:var(--color-white);
    border:1px solid rgba(23,133,74,0.12);
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    margin-bottom:28px;
    color:var(--primary-green);
    font-weight:var(--font-weight-bold);
}

.hero-badge i{
    font-size:var(--font-size-body-lg);
}

.hero h1{
    font-size:var(--font-size-hero-lg);
    line-height:var(--line-height-tight);
    font-weight:var(--font-weight-black);
    letter-spacing:-3px;
    color:var(--heading);
    margin-bottom:28px;
}

.hero h1 span{
    color:var(--primary-green);
    text-decoration:underline;
    text-decoration-color:rgba(0,143,76,0.28);
    text-decoration-thickness:8px;
    text-underline-offset:8px;
}

.hero p{
    font-size:var(--font-size-body-lg);
    line-height:var(--line-height-body-loose);
    color:#5d6774;
    max-width:640px;
    margin-bottom:40px;
}

.hero-text-highlight{
    color:var(--primary-green);
    font-weight:var(--font-weight-extrabold);
    background:linear-gradient(180deg, transparent 58%, rgba(0,143,76,0.14) 58%);
    padding:0 2px;
}

.hero-btns{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.hero-primary-btn{
    padding:19px 36px;
    border-radius:60px;
    background:linear-gradient(135deg,var(--primary-green),var(--primary-green-dark));
    color:var(--color-white);
    font-weight:var(--font-weight-bold);
    white-space:nowrap;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    line-height:var(--line-height-tight);
    box-shadow:0 18px 40px rgba(23,133,74,0.25);
}

.hero-secondary-btn{
    padding:19px 34px;
    border-radius:60px;
    background:var(--soft-red);
    border:1px solid rgba(6,29,67,0.20);
    color:var(--accent-red-dark);
    font-weight:var(--font-weight-bold);
}

.result-marquee{
    width:100%;
    max-width:650px;
    margin-top:28px;
    overflow:hidden;
    border-radius:22px;
    background:var(--color-white);
    border:1px solid rgba(23,133,74,0.12);
    box-shadow:0 14px 35px rgba(0,0,0,0.05);
}

.result-marquee-track{
    display:flex;
    gap:14px;
    width:max-content;
    padding:12px 14px;
    animation:resultRay 24s linear infinite;
}

.result-marquee-track span{
    display:inline-flex;
    align-items:center;
    white-space:nowrap;
    padding:8px 13px;
    border-radius:999px;
    background:#f3fbf6;
    color:var(--heading);
    font-size:var(--font-size-body-sm);
    font-weight:var(--font-weight-extrabold);
}

.result-marquee-track span:nth-child(even){
    background:var(--soft-red);
    color:var(--accent-red-dark);
}

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

.hero-stats{
    margin-top:45px;
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.hero-stat{
    display:flex;
    align-items:center;
    gap:15px;
}

.hero-stat-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#eaf8f0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary-green);
    box-shadow:inset 0 0 0 1px rgba(0,143,76,0.10);
}

.hero-stat strong{
    display:block;
    font-size:var(--font-size-body-lg);
    color:var(--heading);
}

.hero-stat span{
    font-size:var(--font-size-body-sm);
    color:var(--color-text-muted);
}

/* RIGHT */

.hero-image-wrap{
    position:relative;
}

.hero-main-image{
    border-radius:40px;
    overflow:hidden;
    box-shadow:
    0 40px 90px rgba(0,0,0,0.12);
    position:relative;
}

.hero-main-image img{
    width:100%;
    height:700px;
    object-fit:cover;
    display:block;
}

.hero-main-image::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,0.35),transparent 40%);
}

.hero-floating-card{
    position:absolute;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);
    border-radius:28px;
    padding:24px;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.hero-card-top{
    top:50px;
    left:-40px;
    display:flex;
    align-items:center;
    gap:18px;
}

.hero-card-top i{
    width:60px;
    height:60px;
    border-radius:18px;
    background:#eaf8f0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary-green);
    font-size:var(--font-size-card-title);
}

.hero-card-top strong{
    display:block;
    font-size:var(--font-size-card-title);
    color:var(--heading);
}

.hero-card-top span{
    color:var(--color-text-muted);
}

.hero-card-bottom{
    bottom:-59px;
    right:-30px;
    width:320px;
}

.hero-stars{
    display:flex;
    gap:6px;
    color:#ffb400;
    margin-bottom:14px;
}

.hero-card-bottom h3{
    font-size:28px;
    line-height:1.2;
    margin-bottom:14px;
    color:var(--heading);
}

.hero-card-bottom p{
    margin:0;
    font-size:15px;
    line-height:var(--line-height-body);
}

.hero-experience{
    position:absolute;
    top:38px;
    right:-49px;
    background:linear-gradient(135deg,var(--primary-green),var(--primary-green-dark));
    color:var(--color-white);
    padding:28px 30px;
    border-radius:28px;
    box-shadow:0 20px 50px rgba(23,133,74,0.3);
}

.hero-experience strong{
    display:block;
    font-size:42px;
    line-height:var(--line-height-tight);
}

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

@media(max-width:1100px){

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

.hero h1{
    font-size:var(--font-size-section);
}

.hero-main-image img{
    height:600px;
}

}

@media(max-width:768px){

.header{
    top:10px;
}

.nav-menu{
    display:none;
}

.login-links{
    display:none;
}

.navbar{
    padding:12px 16px;
}

.header-btn{
    padding:11px 18px;
    font-size:13px;
    min-height:44px;
    white-space:nowrap;
}

.logo img{
    height:44px;
}

.hero{
    padding:140px 0 80px;
}

.hero h1{
    font-size:42px;
    letter-spacing:-1px;
}

.hero-main-image img{
    height:500px;
}

.hero-card-top{
    left:10px;
    top:10px;
}

.hero-card-bottom{
    width:90%;
    right:5%;
}

.hero-experience{
    display:none;
}

}


/* =========================
AUTHORIZED STRIP - PREMIUM NAVY
========================= */

.authorized-strip{
    margin-top:-40px;
    position:relative;
    z-index:5;
}

.authorized-wrapper{
     background:
    radial-gradient(circle at left center,
    rgba(1,143,65,.12),
    transparent 30%),
    linear-gradient(
        90deg,
        #031c46 0%,
        #04275c 50%,
        #031c46 100%
    );

    border-radius:24px;
    padding:32px 40px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:40px;
    overflow:hidden;
    position:relative;

    box-shadow:
    0 25px 60px rgba(3,28,70,.25);
	transition:all .35s ease;
	
}

/* subtle glow */
.authorized-wrapper::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at left center,
    rgba(0,143,76,.15),
    transparent 35%);
    pointer-events:none;
}

.authorized-wrapper:hover{
    transform:translateY(-2px);
    box-shadow:
        0 30px 70px rgba(3,28,70,.28);
}

/* LEFT CONTENT */

.authorized-text{
    flex:0 0 340px;
    display:flex;
    align-items:center;
    gap:22px;
    padding-right:35px;
    border-right:1px solid rgba(255,255,255,.15);
}

.authorized-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    /*background:rgba(1,143,65,.18);
	box-shadow:
        0 0 25px rgba(1,143,65,.25);*/
	box-shadow:
        0 0 0 1px rgba(0,201,107,.15),
        0 0 25px rgba(0,201,107,.18);
    color:#00c96b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
}

.authorized-icon i,
.authorized-icon svg{
    font-size:34px;
}

.authorized-text span{
    display:block;
    color:var(--color-white);
    font-size:32px;
    font-weight:var(--font-weight-extrabold);
    line-height:1.2;
    margin-bottom:8px;
}

.authorized-text p{
    font-size:var(--font-size-body-sm);
    line-height:1.6;
    color:rgba(255,255,255,.82);
    margin:0;
}

.authorized-text h3{
    font-size:var(--font-size-body-lg);
    line-height:1.3;
    color:var(--color-white);
    font-weight:var(--font-weight-extrabold);
    margin:0 0 8px;
}

/* LOGOS */

/*.authorized-logos{
    flex:1;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    align-items:center;
}*/

.authorized-logos{
    display:flex;
    align-items:center;
    justify-content:space-around;
    flex:1;
}

.authorized-logo-card{
    background:none;
    border:none;
    box-shadow:none;
    padding:0 40px;
    min-height:auto;
	display:flex;
    align-items:center;
    justify-content:center;
    min-height:80px;
}

.authorized-logo-card img{
    height:48px;
    width:auto;
    filter:brightness(0) invert(1);
}

.authorized-logo-card p,
.authorized-logo-card span{
    display:none;
}

.pte-logo{
    filter: brightness(0) invert(1);
}

/* vertical separators */

.authorized-logo-card{
    position:relative;
    padding-left:40px;
}

.authorized-logo-card:first-child{
    padding-left:0;
}

.authorized-logo-card:not(:first-child)::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:70px;
    background:rgba(255,255,255,.15);
}

.trusted-badge{
    text-align:center;
}

.trusted-badge span{
    display:block;
    font-size:var(--font-size-body-sm);
    font-weight:var(--font-weight-bold);
    letter-spacing:.8px;
    line-height:1.4;
    color:var(--color-white);
}


/*couses section css start*/


/* ==========================
GOOGLE REVIEWS
========================== */

.google-reviews-section{

    padding:110px 0;
    position:relative;
}

.reviews-header{

    text-align:center;
    max-width:800px;
    margin:auto;
}

.reviews-header h2{

    font-size:var(--font-size-section);
    font-weight:var(--font-weight-extrabold);
    color:var(--color-heading);
    margin:20px 0;
}

.reviews-header h2 span{
    color:var(--color-primary);
}

.reviews-header p{

    font-size:20px;
    color:var(--color-text-muted);
    line-height:var(--line-height-body);
}

.reviews-summary{

    margin:60px auto;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.rating-box{

    background:var(--color-white);

    border:1px solid rgba(23,133,74,.1);

    border-radius:24px;

    padding:25px 35px;

    display:flex;
    align-items:center;
    gap:20px;

    box-shadow:
    0 20px 50px rgba(6,29,67,.08);
}

.rating-score{

    font-size:var(--font-size-section);
    font-weight:var(--font-weight-extrabold);

    color:var(--color-primary);
}

.rating-content .stars{

    color:#ffb400;
    font-size:22px;
    margin-bottom:6px;
}

.rating-content p{

    color:var(--color-text-muted);
    font-size:15px;
}

.google-btn{

    display:flex;
    align-items:center;
    gap:10px;

    background:var(--color-primary);
    color:var(--color-white);

    padding:18px 30px;

    border-radius:60px;

    font-weight:var(--font-weight-bold);

    transition:.35s;
}

.google-btn:hover{

    transform:translateY(-4px);
}

.reviews-grid{

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

.review-card{

    background:var(--color-white);

    border-radius:30px;

    padding:30px;

    border:1px solid rgba(23,133,74,.08);

    box-shadow:
    0 20px 50px rgba(6,29,67,.06);

    transition:.35s;
}

.review-card:hover{

    transform:translateY(-8px);
}

.review-top{

    display:flex;
    align-items:center;
    gap:15px;

    margin-bottom:18px;
}

.review-top img{

    width:60px;
    height:60px;

    border-radius:50%;
    object-fit:cover;
}

.review-top h4{

    font-size:var(--font-size-body-lg);
    color:var(--color-heading);
}

.review-top span{

    color:var(--color-primary);
    font-size:var(--font-size-body-sm);
}

.review-card .stars{

    color:#ffb400;
    margin-bottom:15px;
}

.review-card p{

    color:var(--color-text-muted);
    line-height:var(--line-height-body-loose);
}

/* Responsive */

@media(max-width:991px){

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

.reviews-header h2{
    font-size:42px;
}

}



/* ===== REVIEWS SECTION â€” PASTE THIS CSS INTO YOUR SITE ===== */
    .gr-section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    .gr-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .gr-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #4285f4;
      margin-bottom: 12px;
    }

    .gr-eyebrow svg { width: 16px; height: 16px; }

    .gr-title {
      font-size: clamp(26px, 4vw, 38px);
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 8px;
    }

    .gr-subtitle {
      font-size: 16px;
      color: #666;
    }

    /* Summary bar */
    .gr-summary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      background: var(--color-white);
      border: 1px solid #e8eaf0;
      border-radius: 16px;
      padding: 24px 32px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }

    .gr-rating-big {
      font-size: 52px;
      font-weight: 700;
      color: #1a1a2e;
      line-height: 1;
    }

    .gr-rating-right { text-align: left; }

    .gr-stars-row {
      display: flex;
      gap: 3px;
      margin-bottom: 4px;
    }

    .gr-star {
      color: #fbbc04;
      font-size: 22px;
    }

    .gr-review-count {
      font-size: 14px;
      color: #777;
    }

    .gr-divider {
      width: 1px;
      height: 56px;
      background: #e8eaf0;
    }

    .gr-powered {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: #999;
    }

    .gr-google-logo {
      display: flex;
      gap: 1px;
      font-size: 18px;
      font-weight: 700;
    }

    .gr-google-logo span:nth-child(1) { color: #4285f4; }
    .gr-google-logo span:nth-child(2) { color: #ea4335; }
    .gr-google-logo span:nth-child(3) { color: #fbbc05; }
    .gr-google-logo span:nth-child(4) { color: #4285f4; }
    .gr-google-logo span:nth-child(5) { color: #34a853; }
    .gr-google-logo span:nth-child(6) { color: #ea4335; }

    /* Cards grid */
    .gr-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
      margin-bottom: 32px;
    }

    .gr-card {
      background: var(--color-white);
      border: 1px solid #e8eaf0;
      border-radius: 16px;
      padding: 24px;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .gr-card:hover {
      box-shadow: 0 8px 32px rgba(66, 133, 244, 0.12);
      transform: translateY(-2px);
    }

    .gr-card-top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .gr-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      background: #4285f4;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 700;
      color: var(--color-white);
      flex-shrink: 0;
      overflow: hidden;
    }

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

    .gr-author-name {
      font-weight: 600;
      font-size: 15px;
      color: #1a1a2e;
    }

    .gr-time {
      font-size: 12px;
      color: #aaa;
      margin-top: 2px;
    }

    .gr-card-stars {
      display: flex;
      gap: 2px;
      margin-bottom: 10px;
    }

    .gr-card-star { color: #fbbc04; font-size: 15px; }

    .gr-text {
      font-size: 14px;
      color: #444;
      line-height: 1.65;
    }

    .gr-text.collapsed {
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .gr-readmore {
      font-size: 13px;
      color: #4285f4;
      cursor: pointer;
      margin-top: 6px;
      background: none;
      border: none;
      padding: 0;
      font-family: inherit;
    }

    /* CTA */
    .gr-cta {
      text-align: center;
    }

    .gr-cta a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--color-white);
      border: 2px solid #4285f4;
      color: #4285f4;
      font-weight: 600;
      font-size: 15px;
      padding: 12px 28px;
      border-radius: 100px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }

    .gr-cta a:hover {
      background: #4285f4;
      color: var(--color-white);
    }

    /* Loading & error states */
    .gr-loading {
      text-align: center;
      padding: 40px;
      color: #999;
      font-size: 15px;
    }

    .gr-error {
      background: #fff8f0;
      border: 1px solid #f5c6a0;
      border-radius: 12px;
      padding: 20px 24px;
      font-size: 14px;
      color: #c05000;
      margin-bottom: 20px;
    }

    @media (max-width: 600px) {
      .gr-divider { display: none; }
      .gr-summary { gap: 16px; padding: 20px; }
    }
    /* ===== END OF CSS ===== */

/* =========================
DICTIONARY COURSES SECTION
========================= */

.dictionary-courses-section{
    position:relative;
    padding:88px 0;
    overflow:hidden;
    background:
    linear-gradient(180deg,var(--color-white) 0%,#f7fbf8 100%);
}

.dictionary-courses-bg-shape{
    position:absolute;
    width:650px;
    height:650px;
    border-radius:50%;
    background:rgba(23,133,74,0.05);
    top:-250px;
    left:-250px;
}

.dictionary-section-heading{
    text-align:center;
    max-width:820px;
    margin:auto auto 70px;
    position:relative;
    z-index:2;
}

.dictionary-subtitle{
    display:inline-block;
    padding:12px 24px;
    border-radius:60px;
    background:#eaf8f0;
    color:var(--primary-green);
    font-size:var(--font-size-body-sm);
    font-weight:var(--font-weight-extrabold);
    letter-spacing:1px;
    margin-bottom:24px;
}

.dictionary-section-heading h2{
    font-size:var(--font-size-section);
    line-height:var(--line-height-heading);
    letter-spacing:-2px;
    color:var(--heading);
    margin-bottom:22px;
    font-weight:var(--font-weight-extrabold);
}

.dictionary-section-heading h2 span{
    color:var(--primary-green);
}

.dictionary-section-heading p{
    font-size:var(--font-size-body-lg);
    line-height:var(--line-height-body-loose);
    color:var(--color-text-muted);
}



.dictionary-courses-section .dictionary-section-heading{
    margin-bottom:46px;
}

.dictionary-courses-section .dictionary-subtitle{
    padding:9px 18px;
    margin-bottom:16px;
}

.dictionary-courses-section .dictionary-section-heading h2{
    margin-bottom:14px;
}

.dictionary-courses-section .dictionary-section-heading p{
    max-width:760px;
    margin:0 auto;
    line-height:1.65;
}
.dictionary-courses-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    position:relative;
    z-index:2;
	align-items:stretch;
}

.dictionary-course-card{
    position:relative;
    background:linear-gradient(180deg,#ffffff 0%,#fbfffd 55%,#f3fbf7 100%);
    border-radius:18px;
    padding:22px;
    border:1px solid rgba(23,133,74,0.12);
    transition:0.35s;
    overflow:hidden;
    box-shadow:0 16px 46px rgba(7,20,39,0.055);
	display:flex;
    flex-direction:column;
    height:100%;
}

/* DESCRIPTION SPACING */


.dictionary-course-card:hover{
    transform:translateY(-10px);
    box-shadow:0 24px 58px rgba(23,133,74,0.14);
}

/* FEATURED CARD */

.featured-course{
    background:linear-gradient(180deg,var(--dark-navy) 0%,var(--dark-navy-2) 58%,var(--primary-green-dark) 100%);
    color:var(--color-white);
}

.featured-course h3,
.featured-course p,
.featured-course li,
.featured-course .course-duration{
    color:var(--color-white) !important;
}

.featured-course .course-icon{
    background:rgba(255,255,255,0.14);
    color:var(--color-white);
}

.featured-course .course-btn{
    background:var(--color-white);
    color:var(--primary-green);
    box-shadow:none;
}

/* =========================
FEATURED IELTS LIST ICON
========================= */

.featured-course .course-features i{
    color:var(--color-white) !important;
    background:rgba(255,255,255,0.12);
    width:22px;
    height:22px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    flex-shrink:0;
}

/* BADGE */

.course-badge{
    position:absolute;
    top:18px;
    right:18px;
    background:var(--color-white);
    color:var(--accent-red);
    padding:8px 13px;
    border-radius:60px;
    font-size:12px;
    font-weight:var(--font-weight-extrabold);
}

/* ICON */

.course-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    background:linear-gradient(135deg,#eaf8f0 0%,#f7fffb 100%);
    color:var(--primary-green);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    margin-bottom:22px;
}

/* TITLE */

.dictionary-course-card h3{
    font-size:22px;
    line-height:1.18;
    color:var(--heading);
    margin-bottom:14px;
    min-height:52px;
}

/* DESCRIPTION */

.dictionary-course-card p{
    color:var(--color-text-muted);
    line-height:1.58;
    margin-bottom:14px;
    min-height:96px;
	text-align: justify;
    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.dictionary-course-card.is-expanded p{
    min-height:auto;
    display:block;
    -webkit-line-clamp:unset;
    overflow:visible;
}

.course-read-more{
    display:inline-flex;
    align-items:center;
    gap:8px;
    width:max-content;
    margin-bottom:20px;
    color:var(--primary-green);
    font-size:15px;
    font-weight:var(--font-weight-extrabold);
}

.course-read-more i{
    font-size:12px;
    transition:0.3s;
}

.course-read-more:hover i{
    transform:translateX(4px);
}

.dictionary-course-card.is-expanded .course-read-more i{
    transform:rotate(90deg);
}

.featured-course .course-read-more{
    color:var(--color-white);
}

/* FEATURES */

.course-features{
    list-style:none;
    display:grid;
    gap:10px;
    margin-bottom:24px;
    min-height:112px;
    align-content:start;
}

.course-features li{
    display:flex;
    align-items:flex-start;
    gap:9px;
    color:#344054;
    line-height:1.32;
    font-weight:var(--font-weight-medium);
}

.course-features i{
    color:var(--primary-green);
    margin-top:3px;
}

/* =========================
COURSE FOOTER IMPROVED
========================= */

.course-footer{
    padding-top:18px;
    border-top:1px solid rgba(0,0,0,0.08);
    margin-top:auto;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
}

/* FEATURED CARD BORDER */

.featured-course .course-footer{
    border-top:1px solid rgba(255,255,255,0.14);
}


/* DURATION */

.course-duration{
    display:flex;
    align-items:center;
    gap:14px;
}

.featured-course .course-duration i{
    width:44px;
    height:44px;
    border-radius:14px;
    background:rgba(255,255,255,0.12);
    color:var(--color-white);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:15px;
    flex-shrink:0;
}

/* DURATION TEXT */

.course-duration-text{
    display:flex;
    flex-direction:column;
    line-height:1.15;
}

.course-duration-text span{
    font-size:12px;
    color:#98a2b3;
    font-weight:var(--font-weight-bold);
    letter-spacing:0.7px;
    text-transform:uppercase;
    margin-bottom:4px;
}

.course-duration-text strong{
    font-size:26px;
    line-height:var(--line-height-tight);
    color:var(--heading);
    font-weight:var(--font-weight-extrabold);
}

.course-duration-text small{
    font-size:15px;
    color:#475467;
    font-weight:var(--font-weight-semibold);
}


.featured-course .course-duration-text span,
.featured-course .course-duration-text strong,
.featured-course .course-duration-text small{
    color:var(--color-white);
}
/* =========================
MODERN EXPLORE BUTTON
========================= */

/* BUTTON */

/* BUTTON */

.course-btn{
    width:100%;
    height:48px;
    border-radius:14px;

    background:linear-gradient(135deg,var(--primary-green),var(--primary-green-dark) 62%,var(--dark-navy-2));
    color:var(--color-white);

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    font-size:15px;
    font-weight:var(--font-weight-bold);

    transition:0.35s;

    box-shadow:
    0 12px 28px rgba(23,133,74,0.22);
	margin-top: auto;
}

.course-btn i{
    font-size:var(--font-size-body-sm);
    transition:0.3s;
}

.course-btn:hover{
    transform:translateY(-4px);
    box-shadow:
    0 18px 40px rgba(23,133,74,0.32);
}

.course-btn:hover i{
    transform:translateX(5px);
}
/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){


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

}

@media(max-width:768px){

.dictionary-courses-section{
    padding:80px 0;
}

.dictionary-section-heading h2{
    font-size:40px;

}


.dictionary-courses-grid{
    grid-template-columns:1fr;
}

.dictionary-course-card{
    padding:24px;
}

.dictionary-course-card h3{
    min-height:auto;
}

.dictionary-course-card p{
    min-height:auto;
}

.course-features{
    min-height:auto;
}
	
.course-footer{
    flex-direction:column;
    align-items:flex-start;
}

.course-btn{
    width:100%;
}

}


/* WHY CHOOSE US*/

.dictionary-why-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    box-shadow:0 16px 46px rgba(7,20,39,0.055);
    background:linear-gradient(180deg,#ffffff 0%,#fbfffd 55%,#f3fbf7 100%);
}

.dictionary-why-glow{
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:rgba(23,133,74,0.06);
    right:-250px;
    top:-200px;
}

.dictionary-why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    position:relative;
    z-index:2;
}

/* LEFT */

.dictionary-why-tag{
    display:inline-block;
    padding:12px 24px;
    border-radius:60px;
    background:#eaf8f0;
    color:var(--primary-green);
    font-size:var(--font-size-body-sm);
    font-weight:var(--font-weight-extrabold);
    letter-spacing:1px;
    margin-bottom:26px;
}

.dictionary-why-content h2{
    font-size:var(--font-size-section);
    line-height:var(--line-height-heading);
    letter-spacing:0;
    color:var(--heading);
    margin-bottom:26px;
    font-weight:var(--font-weight-extrabold);
}

.dictionary-why-content h2 span{
    color:var(--primary-green);
}

.dictionary-why-content > p{
    font-size:var(--font-size-body-lg);
    line-height:var(--line-height-body-loose);
    color:var(--color-text-muted);
    margin-bottom:0;
}

.dictionary-why-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-top:58px;
    position:relative;
    z-index:2;
}

.dictionary-why-feature{
    display:flex;
    align-items:flex-start;
    gap:18px;
    min-height:100%;
    padding:24px;
    border-radius:22px;
    background:var(--color-white);
    border:1px solid rgba(23,133,74,0.12);
    transition:0.35s;
    box-shadow:0 12px 34px rgba(7,20,39,0.04);
}

.dictionary-why-feature:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,0.06);
}

.dictionary-why-icon{
    width:58px;
    height:48px;
    border-radius:14px;
    background:#eaf8f0;
    color:var(--primary-green);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:23px;
    flex-shrink:0;
}

.dictionary-why-feature h4{
    font-size:20px;
    line-height:1.35;
    color:var(--heading);
    margin-bottom:8px;
}

.dictionary-why-feature p{
    color:var(--color-text-muted);
    line-height:1.7;
    font-size:15px;
}

/* RIGHT */

.dictionary-why-visual{
    position:relative;
}

.dictionary-why-main-image{
    border-radius:40px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(0,0,0,0.12);
}

.dictionary-why-main-image img{
    width:100%;
    height:760px;
    object-fit:cover;
    display:block;
}

/* FLOATING CARD */

.dictionary-floating-result-card{
    position:absolute;
    left:-40px;
    bottom:46px;
    width:340px;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(10px);
    border-radius:32px;
    padding:30px;
    box-shadow:0 25px 60px rgba(0,0,0,0.14);
}

.dictionary-result-top{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
}

.dictionary-result-icon{
    width:62px;
    height:62px;
    border-radius:20px;
    background:#eaf8f0;
    color:var(--primary-green);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:var(--font-size-card-title);
}

.dictionary-result-top strong{
    display:block;
    font-size:28px;
    color:var(--heading);
}

.dictionary-result-top span{
    color:var(--color-text-muted);
}

.dictionary-progress-list{
    display:grid;
    gap:22px;
}

.dictionary-progress-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:10px;
    color:#344054;
    font-weight:var(--font-weight-semibold);
}

.dictionary-progress-bar{
    width:100%;
    height:10px;
    border-radius:60px;
    background:#edf2f7;
    overflow:hidden;
}

.dictionary-progress-fill{
    height:100%;
    border-radius:60px;
    background:linear-gradient(135deg,var(--primary-green),#0f6a39);
}

/* STATS */

.dictionary-why-stats{
    position:absolute;
    right:-20px;
    bottom:40px;

    display:flex;
    flex-direction:column;
    gap:18px;
}

.dictionary-stat-box{
    width:180px;
    padding:24px;
    border-radius:24px;
    background:var(--primary-green);
    color:var(--color-white);
    box-shadow:0 20px 45px rgba(23,133,74,0.24);
}

.dictionary-stat-box strong{
    display:block;
    font-size:34px;
    margin-bottom:8px;
}

.dictionary-stat-box span{
    font-size:15px;
    opacity:0.9;
}

/* RESPONSIVE */

@media(max-width:1100px){

.dictionary-why-grid{
    grid-template-columns:1fr;
}

.dictionary-why-content h2{
    font-size:46px;
}

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

}

@media(max-width:768px){

.dictionary-why-section{
    padding:80px 0;
}

.dictionary-why-content h2{
    font-size:38px;
}

.dictionary-why-features{
    grid-template-columns:1fr;
    margin-top:38px;
}

.dictionary-why-feature{
    padding:22px;
}

.dictionary-why-main-image img{
    height:520px;
}

.dictionary-floating-result-card{
    position:relative;
    width:100%;
    left:0;
    bottom:0;
    margin-top:-80px;
}

.dictionary-why-stats{
    position:relative;
    right:0;
    bottom:0;
    margin-top:25px;
    flex-direction:row;
    overflow:auto;
}

.dictionary-stat-box{
    min-width:180px;
}

}

/*testimonial css start*/
.dictionary-testimonials-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:
    linear-gradient(180deg,#f7fbf8 0%,var(--color-white) 100%);
}

.dictionary-testimonials-shape{
    position:absolute;
    width:650px;
    height:650px;
    border-radius:50%;
    background:rgba(23,133,74,0.05);
    left:-250px;
    bottom:-250px;
}

.dictionary-testimonials-heading{
    text-align:center;
    max-width:820px;
    margin:auto auto 70px;
    position:relative;
    z-index:2;
}

.dictionary-testimonials-tag{
    display:inline-block;
    padding:12px 24px;
    border-radius:60px;
    background:#eaf8f0;
    color:var(--primary-green);
    font-size:var(--font-size-body-sm);
    font-weight:var(--font-weight-extrabold);
    letter-spacing:1px;
    margin-bottom:24px;
}

.dictionary-testimonials-heading h2{
    font-size:var(--font-size-section);
    line-height:var(--line-height-heading);
    letter-spacing:-2px;
    color:var(--heading);
    margin-bottom:22px;
    font-weight:var(--font-weight-extrabold);
}

.dictionary-testimonials-heading h2 span{
    color:var(--primary-green);
}

.dictionary-testimonials-heading p{
    font-size:var(--font-size-body-lg);
    line-height:var(--line-height-body-loose);
    color:var(--color-text-muted);
}

/* =========================
TESTIMONIAL SLIDER
========================= */

.dictionary-testimonial-slider{
    display:flex;
    gap:28px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding-bottom:10px;

    scrollbar-width:none;
}

.dictionary-testimonial-slider::-webkit-scrollbar{
    display:none;
}

/* CARD */

.dictionary-testimonial-card{
    min-width:420px;
    max-width:420px;

    position:relative;
    background:var(--color-white);
    border-radius:34px;
    padding:38px;
    border:1px solid rgba(0,0,0,0.06);

    transition:0.35s;
    overflow:hidden;

    flex-shrink:0;
}

.dictionary-testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

/* FEATURED */

.featured-testimonial{
    background:linear-gradient(180deg,var(--primary-green) 0%,#0f6a39 100%);
}

.featured-testimonial p,
.featured-testimonial h4,
.featured-testimonial span{
    color:var(--color-white) !important;
}

/* MOBILE */

@media(max-width:768px){

.dictionary-testimonial-card{
    min-width:90%;
    max-width:90%;
}


}

.dictionary-review-stars{
    display:flex;
    gap:6px;
    color:#ffb400;
    margin-bottom:28px;
    font-size:var(--font-size-body-lg);
}

.dictionary-testimonial-card p{
    font-size:var(--font-size-body-lg);
    line-height:var(--line-height-body-loose);
    color:#475467;
    margin-bottom:34px;
}

/* STUDENT */

.dictionary-student-info{
    display:flex;
    align-items:center;
    gap:16px;
}

.dictionary-student-info img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.dictionary-student-info h4{
    font-size:22px;
    color:var(--heading);
    margin-bottom:6px;
}

.dictionary-student-info span{
    color:var(--color-text-muted);
}

/* BADGE */

.dictionary-score-badge{
    position:absolute;
    top:28px;
    right:28px;

    padding:12px 18px;
    border-radius:60px;

    background:var(--color-white);
    color:var(--primary-green);

    font-size:var(--font-size-body-sm);
    font-weight:var(--font-weight-extrabold);
}

.light-badge{
    background:#eaf8f0;
}

/* STATS */

.dictionary-testimonials-stats{
    margin-top:70px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.dictionary-testimonial-stat{
    background:var(--color-white);
    border-radius:30px;
    padding:38px;
    text-align:center;
    border:1px solid rgba(0,0,0,0.06);
    box-shadow:0 15px 40px rgba(0,0,0,0.04);
}

.dictionary-testimonial-stat strong{
    display:block;
    font-size:48px;

    color:var(--primary-green);
    margin-bottom:12px;
    font-weight:var(--font-weight-extrabold);
}

.dictionary-testimonial-stat span{
    color:var(--color-text-muted);
    font-size:var(--font-size-body);
    font-weight:var(--font-weight-semibold);
}


/* =========================
TESTIMONIAL CONTROLS
========================= */

.dictionary-testimonial-controls{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:16px;

    margin-bottom:35px;
}

/* ARROWS */

.testimonial-arrow{
    width:62px;
    height:62px;
    border:none;
    border-radius:20px;

    background:var(--color-white);
    color:var(--primary-green);

    font-size:var(--font-size-body-lg);
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.06);

    transition:0.35s;
}

.testimonial-arrow:hover{
    background:var(--primary-green);
    color:var(--color-white);
    transform:translateY(-4px);
}

/* ACTIVE */

.testimonial-arrow:active{
    transform:scale(0.96);
}

/* MOBILE */

@media(max-width:768px){

.dictionary-testimonial-controls{
    justify-content:center;
}

.testimonial-arrow{
    width:54px;
    height:54px;
    border-radius:16px;
}

}
/* RESPONSIVE */

@media(max-width:1100px){

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

.dictionary-testimonials-heading h2{
    font-size:46px;
}

}

@media(max-width:768px){

.dictionary-testimonials-section{
    padding:80px 0;
}

.dictionary-testimonials-heading h2{
    font-size:38px;
}

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

.dictionary-testimonial-card,
.dictionary-testimonial-stat{
    padding:30px;
}

}

/* ==========================
STUDY ABROAD PARTNER
========================== */

/* =========================
STUDY ABROAD PARTNER
========================= */

.study-abroad-partner{

    padding:70px 0;
}

.study-partner-card{

    position:relative;
    overflow:hidden;

    max-width:1200px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;

    padding:50px 60px;

    border-radius:32px;

    background:
    linear-gradient(
        135deg,
        var(--color-white) 0%,
        #f5faf7 100%
    );

    border:1px solid rgba(23,133,74,.12);

    box-shadow:
    0 20px 50px rgba(6,29,67,.05);
}

.study-partner-card::before{

    content:'';

    position:absolute;

    width:380px;
    height:380px;

    right:-140px;
    top:-140px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(23,133,74,.08),
        transparent 70%
    );
}

.study-partner-content{

    max-width:820px;

    position:relative;
    z-index:2;
}

/* Badge */

.study-partner-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    background:var(--color-primary-soft);

    color:var(--color-primary);

    border-radius:50px;

    font-size:13px;
    font-weight:var(--font-weight-bold);

    margin-bottom:20px;
}

.study-partner-badge i{

    font-size:12px;
}

/* Heading */

.study-partner-content h2{

    font-size:var(--font-size-hero);

    line-height:1.05;

    font-weight:var(--font-weight-extrabold);

    color:var(--color-heading);

    margin-bottom:20px;
	max-width: 900px;
}

.study-partner-content h2 span{

    color:var(--color-primary);
}

/* Description */

.study-partner-content p{

    font-size:var(--font-size-body-lg);

    line-height:var(--line-height-body);

    color:var(--color-text-muted);

    margin-bottom:20px;
}

/* Trust Note */

.partner-note{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    background:var(--color-white);

    border:none;

    border-radius:50px;

    color:var(--color-text-muted);

    font-size:var(--font-size-body-sm);
    font-weight:var(--font-weight-semibold);

    margin-bottom:25px;

    box-shadow:
    0 10px 20px rgba(6,29,67,.06);
}

.partner-note i{

    color:var(--color-primary);
}

/* Countries */

.destination-tags{

    display:flex;
    flex-wrap:wrap;
    gap:10px;

    margin-bottom:30px;
}

.destination-tags span{

    display:flex;
    align-items:center;
    gap:8px;

    padding:8px 14px;
    font-size:13px;

    background:var(--color-white);

    border:1px solid #dce6df;

    border-radius:50px;

    

    color:#475467;

    transition:.35s;

    box-shadow:
    0 4px 12px rgba(6,29,67,.03);
}

.destination-tags span:hover{

    transform:translateY(-3px);

    border-color:var(--color-primary);

    box-shadow:
    0 10px 25px rgba(23,133,74,.12);
}

.destination-tags img{

    width:18px;
    height:13px;

    border-radius:2px;
}

.more-country{

    color:var(--color-primary) !important;
    font-weight:var(--font-weight-bold);
}

/* Buttons */

.study-partner-buttons{

    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.primary-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;

    text-decoration:none;

    padding:15px 28px;

    border-radius:14px;

    color:var(--color-white);

    font-weight:var(--font-weight-bold);

    background:
    linear-gradient(
        135deg,
        var(--color-primary),
        #0f6e3d
    );

    transition:.35s;
}

.primary-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 15px 30px rgba(23,133,74,.25);
}

.secondary-btn{

    display:inline-flex;
    align-items:center;

    text-decoration:none;

    padding:15px 28px;

    border-radius:14px;

    background:var(--color-white);

    border:1px solid #dfe5e2;

    color:var(--color-heading);

    font-weight:var(--font-weight-bold);

    transition:.35s;
}

.secondary-btn:hover{

    color:var(--color-primary);

    border-color:var(--color-primary);

    transform:translateY(-3px);
}

/* Stats */

.partner-badge-box{

    display:flex;
    flex-direction:column;
    gap:18px;

    position:relative;
    z-index:2;
}

.partner-stat{

    width:130px;

    background:var(--color-white);

    border-radius:24px;

    padding:20px 15px;

    text-align:center;

    border:1px solid var(--color-border);

    box-shadow:
    0 10px 25px rgba(6,29,67,.04);

    transition:.35s;
}

.partner-stat:hover{

    transform:
    translateY(-6px)
    scale(1.03);
	border-color:var(--color-primary);
    box-shadow:
    0 20px 35px rgba(6,29,67,.08);
}

.partner-stat strong{

    display:block;

    font-size:34px;

    line-height:var(--line-height-tight);

    margin-bottom:8px;

    color:var(--color-primary);
}

.partner-stat span{

    color:var(--color-text-muted);

    font-size:15px;
}

/*.partner-powered{

    font-size:13px;
    font-weight:var(--font-weight-bold);

    color:var(--color-primary);

    margin-bottom:20px;

    letter-spacing:.5px;

    text-transform:uppercase;
}*/

/* Responsive */

@media(max-width:991px){

.study-partner-card{

    flex-direction:column;
    text-align:center;

    padding:40px 30px;
}

.study-partner-content h2{

    font-size:42px;
}

.destination-tags{

    justify-content:center;
}

.study-partner-buttons{

    justify-content:center;
}

.partner-badge-box{

    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
}
}

@media(max-width:767px){

.study-partner-content h2{

    font-size:34px;
}

.study-partner-content p{

    font-size:var(--font-size-body);
}

.partner-stat{

    width:130px;
}

.partner-stat strong{

    font-size:32px;
}
}


/* =========================
PROCESS SECTION
========================= */

.dictionary-process-section{
    position:relative;
    padding:120px 0;
    background:
    linear-gradient(
        180deg,
        var(--color-white) 0%,
        #f7fbf8 100%
    );

    overflow:hidden;
}

/* =========================
HEADING
========================= */

.process-heading{
    text-align:center;
    max-width:850px;
    margin:auto auto 70px;
}

.process-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 24px;

    border-radius:60px;

    background:var(--color-primary-soft);

    color:var(--primary-green);

    font-size:var(--font-size-body-sm);
    font-weight:var(--font-weight-extrabold);

    margin-bottom:24px;
}

.process-heading h2{
    font-size:68px;
    line-height:1.08;

    color:var(--heading);

    letter-spacing:-3px;

    margin-bottom:20px;

    font-weight:var(--font-weight-extrabold);
}

.process-heading h2 span{
    color:var(--primary-green);
}

.process-heading p{
    font-size:20px;
    line-height:var(--line-height-body);

    color:var(--color-text-muted);
}

/* =========================
PROCESS GRID
========================= */

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

    position:relative;
	background:
linear-gradient(
    180deg,
    var(--color-white) 0%,
    #f7fbf8 45%,
    #f3f8f5 100%
);
}

.process-grid::before{

    content:'';

    position:absolute;

    top:110px;
    left:12%;

    width:76%;
    height:2px;

    background:
    linear-gradient(
        90deg,
        rgba(23,133,74,0.15),
        rgba(23,133,74,0.05)
    );

    z-index:0;
}


/* =========================
MODERN PROCESS CARD
========================= */

.process-card{
    position:relative;
	margin-bottom: 75px;
    padding:42px 34px;
	display:flex;
    flex-direction:column;
    border-radius:34px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.96),
        rgba(255,255,255,1)
    );

    backdrop-filter:blur(12px);

    border:1px solid rgba(0,0,0,0.06);

    overflow:hidden;

    transition:0.45s cubic-bezier(.17,.67,.32,1.35);

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);

    min-height:380px;
	z-index: 2;
}

/* HOVER */

.process-card:hover{

    transform:
    translateY(-12px)
    scale(1.02);

    animation:none;

    box-shadow:
    0 28px 60px rgba(0,0,0,0.1);
}


/* =========================
TOP GLOW
========================= */

.process-card::before{

    content:'';

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(23,133,74,0.08),
        transparent 70%
    );

    top:-80px;
    right:-80px;
}

.process-card::after{

    content:'';

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        var(--primary-green),
        transparent
    );

    opacity:0;

    transition:0.4s;
}

.process-card:hover::after{
    opacity:1;
}

.process-card{
    animation:floatProcess 6s ease-in-out infinite;
}

.process-card:nth-child(2){
    animation-delay:1s;
}

.process-card:nth-child(3){
    animation-delay:2s;
}

.process-card:nth-child(4){
    animation-delay:3s;
}

@keyframes floatProcess{

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

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

}

/* =========================
ACTIVE CARD
========================= */

.active-process{

    background:
linear-gradient(
    145deg,
    var(--primary-green) 0%,
    #0f6a39 60%,
    #0a512b 100%
);

    box-shadow:0 28px 60px rgba(23,133,74,0.28),0 10px 25px rgba(23,133,74,0.18);
}

.active-process::before{

    background:
    radial-gradient(
        rgba(255,255,255,0.12),
        transparent 70%
    );
}

.active-process h3,
.active-process p,
.active-process .process-number,
.active-process .process-icon{
    color:var(--color-white);
}

.active-process::after{

    content:'';

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(255,255,255,0.08),
        transparent 70%
    );

    bottom:-80px;
    right:-80px;
}

.active-process .process-icon{
    background:rgba(255,255,255,0.12);
}

/* =========================
ICON
========================= */

.process-icon{

    width:78px;
    height:78px;

    border-radius:24px;

    background:
    linear-gradient(145deg, #f5fff8, #e8fff0);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    color:var(--primary-green);

    margin-bottom:30px;

    position:relative;

    box-shadow:
    0 10px 24px rgba(0,0,0,0.06),
    inset 0 2px 5px rgba(255,255,255,0.9);

    transition:0.4s;
}

/* ACTIVE ICON */

.active-process .process-icon{

    background:
    rgba(255,255,255,0.14);

    color:var(--color-white);

    box-shadow:
    inset 0 2px 5px rgba(255,255,255,0.12);
}


/* HOVER EFFECT */

.process-card:hover .process-icon{

    transform:
    rotate(-8deg)
    scale(1.06);
}

.process-card:hover{
    border-color:
    rgba(23,133,74,0.16);
}

/* =========================
NUMBER
========================= */

.process-number{

    position:absolute;

    top:28px;
    right:30px;

    font-size:38px;
    font-weight:var(--font-weight-black);

    line-height:var(--line-height-tight);

    color:var(--primary-green);

    opacity:0.12;
}

.active-process .process-number{
    color:var(--color-white);
    opacity:0.18;
}

/* =========================
TEXT
========================= */

.process-card h3{

    font-size:32px;
    line-height:1.08;

    margin-bottom:22px;

    color:var(--heading);

    font-weight:var(--font-weight-extrabold);

    letter-spacing:-1.5px;

    max-width:90%;
}

.active-process h3{
    color:var(--color-white);
}

.process-card p{

    font-size:17px;
    line-height:1.85;

    color:var(--color-text-muted);

    max-width:92%;
}

.active-process p{

    color:
    rgba(255,255,255,0.78);
}

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

.process-bottom-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;

    padding:50px;

    border-radius:38px;

    background:
    linear-gradient(
        135deg,
        var(--dark-navy) 0%,
        var(--dark-navy-2) 58%,
        var(--primary-green-dark) 100%
    );

    overflow:hidden;

    position:relative;
}

.process-bottom-box::before{
    content:'';

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,0.12);

    right:-120px;
    top:-120px;
}

.process-bottom-content{
    position:relative;
    z-index:2;
}

.process-bottom-content h3{
    font-size:42px;
    line-height:1.2;

    color:var(--color-white);

    margin-bottom:14px;

    font-weight:var(--font-weight-extrabold);
}

.process-bottom-content p{
    font-size:var(--font-size-body-lg);
    color:rgba(255,255,255,0.72);
}

/* =========================
BUTTON
========================= */

.process-btn{
    position:relative;
    z-index:2;

    min-width:280px;
    height:64px;

    border-radius:20px;

    background:var(--color-white);

    color:var(--accent-red-dark);

    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    font-size:17px;
    font-weight:var(--font-weight-bold);

    transition:0.35s;

    box-shadow:
    0 18px 40px rgba(3,67,34,0.22);
}

.process-btn:hover{
    transform:translateY(-4px);
    box-shadow:
    0 22px 46px rgba(3,67,34,0.28);
}

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

@media(max-width:1200px){

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

.process-bottom-box{
    flex-direction:column;
    align-items:flex-start;
}

}

@media(max-width:768px){

.dictionary-process-section{
    padding:80px 0;
}

.process-heading h2{
    font-size:42px;
}

.process-heading p{
    font-size:17px;
}

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

.process-card{
    padding:34px 28px;
	min-height:auto;
}
	
.process-card h3{
    font-size:28px;
}
	
.process-bottom-box{
    padding:40px 28px;
}

.process-bottom-content h3{
    font-size:32px;
}

.process-btn{
    width:100%;
    min-width:100%;
}

}


/* =========================
PREMIUM FINAL CTA
========================= */

.premium-final-cta{

    position:relative;

    padding:140px 0;

    overflow:hidden;

    /*background:
    linear-gradient(
        135deg,
        #f3fbf6 0%,
        #e8f7ef 45%,
        #dff4e8 100%
    );*/
	background:
    linear-gradient(135deg, rgba(7,20,39,0.9) 0%, rgba(15,47,29,0.86) 38%, rgba(23,133,74,0.82) 100%),
    linear-gradient(90deg, rgba(7,20,39,0.72), rgba(7,20,39,0.2)),
    url("../img/hero-img.webp") center/cover no-repeat;
    background-color:var(--primary-green-dark);
}

/* =========================
GLOW EFFECTS
========================= */

.cta-glow{

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(23,133,74,0.12),
        transparent 70%
    );

    top:-250px;
    right:-150px;

    pointer-events:none;
}

.premium-final-cta::before{

    content:'';

    position:absolute;

    inset:0;

    background:linear-gradient(180deg, rgba(7,20,39,0.1), rgba(7,20,39,0.34));
    backdrop-filter:saturate(112%);
    pointer-events:none;
}

/* =========================
CONTENT
========================= */

.premium-cta-content{

    position:relative;
    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;
}

.premium-cta-content::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(50,195,108,0.18),
        transparent 70%
    );

    left:50%;
    top:50%;

    transform:
    translate(-50%,-50%);

    z-index:-1;
}

/* TAG */

.premium-cta-tag{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:14px 24px;

    border-radius:60px;

    background:
    rgba(23,133,74,0.08);

    color:var(--color-white);

    font-size:var(--font-size-body-sm);
    font-weight:var(--font-weight-extrabold);

    letter-spacing:.5px;

    margin-bottom:34px;

    border:
    1px solid rgba(23,133,74,0.08);

    backdrop-filter:blur(10px);
}

.premium-cta-tag i{
    font-size:15px;
}

/* HEADING */

.premium-cta-content h2{

    font-size:var(--font-size-hero-lg);

    line-height:1.02;

    letter-spacing:-4px;

    color:var(--color-white);

    font-weight:var(--font-weight-black);

    margin-bottom:28px;
}

.premium-cta-content h2 span{

    background:
    linear-gradient(
    135deg,
    #9fffc1,
    var(--color-white)
);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* TEXT */

.premium-cta-content p{

    font-size:22px;

    line-height:var(--line-height-body-loose);

    color:var(--color-white);

    max-width:760px;

    margin:0 auto 48px;
}

/* BUTTON */

.premium-cta-btn{

    height:72px;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    padding:0 36px;

    border-radius:22px;

    background:
    linear-gradient(
        135deg,
        var(--primary-green),
        #0f6a39
    );

    color:var(--color-white);

    font-size:var(--font-size-body-lg);
    font-weight:var(--font-weight-bold);

    box-shadow:
    0 22px 45px rgba(23,133,74,0.25);

    transition:0.4s;
}

.premium-cta-btn:hover{

    transform:
    translateY(-6px)
    scale(1.03);

    box-shadow:
    0 28px 60px rgba(23,133,74,0.32);
}

.premium-cta-btn i{
    transition:0.35s;
}

.premium-cta-btn:hover i{
    transform:translateX(4px);
}

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

.premium-floating-stats{

    position:absolute;

    z-index:2;

    display:flex;
    flex-direction:column;

    gap:4px;

    padding:22px 28px;

    border-radius:24px;

    background:
    rgba(255,255,255,0.75);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,0.4);

    box-shadow:
    0 18px 45px rgba(0,0,0,0.08);

    animation:floatStats 6s ease-in-out infinite;
}

.premium-floating-stats strong{

    font-size:32px;

    line-height:var(--line-height-tight);

    color:var(--primary-green);

    font-weight:var(--font-weight-extrabold);
}

.premium-floating-stats span{

    font-size:15px;

    color:var(--color-text-muted);

    font-weight:var(--font-weight-semibold);
}

/* POSITION */

.stat-1{

    top:120px;
    left:120px;
}

.stat-2{

    right:120px;
    top:180px;

    animation-delay:2s;
}

.stat-3{

    bottom:120px;
    right:220px;

    animation-delay:4s;
}

/* FLOAT */

@keyframes floatStats{

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

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

}

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

@media(max-width:1200px){

.stat-1{
    left:20px;
}

.stat-2{
    right:20px;
}

.stat-3{
    right:100px;
}

}

@media(max-width:992px){

.premium-floating-stats{
    display:none;
}

.premium-final-cta{
    padding:110px 0;
}

.premium-cta-content h2{
    font-size:62px;
}

}

@media(max-width:768px){

.premium-final-cta{
    padding:90px 0;
}

.premium-cta-content h2{

    font-size:44px;

    letter-spacing:-2px;
}

.premium-cta-content p{

    font-size:17px;

    line-height:var(--line-height-body);
}

.premium-cta-btn{

    width:100%;

    height:62px;

    border-radius:18px;

    font-size:var(--font-size-body);
}

}


/* =========================
PREMIUM FOOTER
========================= */

.dictionary-footer{

    position:relative;
    z-index:1;

    overflow:hidden;

    padding:90px 0 35px;

    background:

    linear-gradient(
        135deg,
        var(--dark-navy) 0%,
        #08234b 38%,
        #071b3c 70%,
        #04142f 100%
    ),

    linear-gradient(
        rgba(255,255,255,0.03) 1px,
        transparent 1px
    ),

    linear-gradient(
        90deg,
        rgba(255,255,255,0.03) 1px,
        transparent 1px
    );

    background-size:
    cover,
    60px 60px,
    60px 60px;
}

/* =========================
GLOW EFFECTS
========================= */

.footer-glow{

    position:absolute;

    border-radius:50%;

    pointer-events:none;
}

.footer-glow-1{

    width:500px;
    height:500px;

    background:
    radial-gradient(
        rgba(23,133,74,0.16),
        transparent 70%
    );

    top:-220px;
    right:-120px;
}

.footer-glow-2{

    width:420px;
    height:420px;

    background:
    radial-gradient(
        rgba(50,195,108,0.08),
        transparent 70%
    );

    bottom:-180px;
    left:-120px;
}



.footer-cta{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;

    margin-bottom:45px;
    padding:42px;

    border-radius:30px;

    background:
    rgba(255,255,255,0.04);

    backdrop-filter:blur(12px);

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

.footer-cta-content h2{
    font-size:42px;
    line-height:1.2;
    color:var(--color-white);
    margin-bottom:12px;
    font-weight:var(--font-weight-extrabold);
}

.footer-cta-content p{
    color:rgba(255,255,255,0.7);
    font-size:17px;
    line-height:var(--line-height-body);
}
/* CTA BUTTON */

.footer-cta-btn{

    min-width:240px;

    height:68px;

    padding:0 32px;

    border-radius:22px;

    background:
    linear-gradient(
        135deg,
        var(--primary-green),
        #0f6a39
    );

    color:var(--color-white);

    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    font-size:17px;
    font-weight:var(--font-weight-bold);

    box-shadow:
    0 18px 40px rgba(23,133,74,0.25);

    transition:0.4s;
}

.footer-cta-btn:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 25px 55px rgba(23,133,74,0.32);
}

/* =========================
FOOTER TOP
========================= */

.footer-top{

    display:grid;

    grid-template-columns:
    1.4fr .8fr .8fr 1fr;

    gap:28px;

    margin-bottom:45px;
}

.footer-top,
.footer-bottom{
    position:relative;
    z-index:2;
}

/* =========================
FOOTER CARD
========================= */

.footer-card{

    position:relative;

    padding:38px 34px;

    border-radius:30px;

    background:
    rgba(255,255,255,0.04);

    backdrop-filter:blur(12px);

    border:
    1px solid rgba(255,255,255,0.06);

    transition:0.4s;
}

.footer-card:hover{

    transform:
    translateY(-6px);

    border-color:
    rgba(23,133,74,0.22);

    box-shadow:
    0 18px 40px rgba(0,0,0,0.18);
}

/* =========================
ABOUT
========================= */

.footer-logo{

    width:220px;

    margin-bottom:28px;
}

.footer-about p{

    color:
    rgba(255,255,255,0.7);

    line-height:var(--line-height-body-loose);

    font-size:var(--font-size-body);

    margin-bottom:28px;
}

/* MINI STATS */

.footer-mini-stats{

    display:flex;
    flex-wrap:wrap;
    gap:12px;

    margin-bottom:30px;
}

.footer-mini-stats span{

    padding:8px 13px;

    border-radius:50px;

    background:
    rgba(255,255,255,0.06);

    color:#8de2af;

    font-size:13px;
    font-weight:var(--font-weight-bold);
}

/* =========================
SOCIALS
========================= */

.footer-socials{

    display:flex;
    gap:14px;
}

.footer-socials a{

    width:50px;
    height:50px;

    border-radius:18px;

    background:
    rgba(255,255,255,0.06);

    color:var(--color-white);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:17px;

    transition:0.4s;
}

.footer-socials a:hover{

    transform:
    translateY(-6px)
    rotate(8deg);

    background:var(--primary-green);

    box-shadow:
    0 15px 30px rgba(23,133,74,0.3);
}

/* =========================
HEADINGS
========================= */

.footer-links h3,
.footer-contact h3{

    font-size:var(--font-size-card-title);

    color:var(--color-white);

    margin-bottom:28px;

    font-weight:var(--font-weight-bold);
}

/* =========================
LINKS
========================= */
.footer-links ul{

    display:flex;
    flex-direction:column;

    gap:18px;

    list-style:none;

    padding:0;
    margin:0;
}

.footer-links ul li a{

    display:flex;
    align-items:center;

    gap:12px;

    color:rgba(255,255,255,0.72);

    transition:0.35s;
}

.footer-links ul li a i{

    width:18px;

    color:var(--primary-green-light);

    font-size:var(--font-size-body-sm);
}

.footer-links ul li a:hover{

    color:var(--color-white);

    transform:translateX(6px);
}



.footer-links ul,
.footer-contact ul{

    display:flex;
    flex-direction:column;

    gap:18px;
}

.footer-links a,
.footer-contact li{

    color:
    rgba(255,255,255,0.7);

    font-size:var(--font-size-body);

    line-height:var(--line-height-body);

    transition:0.35s;
}

.footer-links a:hover{

    color:#8de2af;

    padding-left:8px;
}

.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:16px;
}

.footer-contact li div{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.footer-contact li span{

    color:var(--primary-green-light);

    font-size:var(--font-size-body-sm);
    font-weight:var(--font-weight-bold);

    letter-spacing:.4px;
}

.footer-contact li a,
.footer-contact li p{

    color:rgba(255,255,255,0.78);

    line-height:var(--line-height-body);

    transition:0.3s;
}

.footer-contact li a:hover{
    color:var(--primary-green-light);
}

.footer-contact i{

    color:var(--primary-green-light);

    margin-top:5px;
}

/* =========================
BOTTOM
========================= */

.footer-bottom{

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;

    padding-top:35px;

    border-top:
    1px solid rgba(255,255,255,0.06);
}

.footer-bottom p{

    color:
    rgba(255,255,255,0.55);

    font-size:15px;
}

.footer-bottom-links{

    display:flex;
    gap:24px;
}

.footer-bottom-links a{

    color:
    rgba(255,255,255,0.55);

    font-size:15px;

    transition:0.35s;
}

.footer-bottom-links a:hover{
    color:#8de2af;
}

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

@media(max-width:1200px){

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

.footer-cta{
    flex-direction:column;
    align-items:flex-start;
}

}

@media(max-width:768px){

.dictionary-footer{
    padding-bottom:30px;
}

.footer-cta{

    padding:40px 28px;

    border-radius:0 0 28px 28px;
}

.footer-cta-content h2{
    font-size:36px;
}

.footer-cta-btn{

    width:100%;
}

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

.footer-bottom{

    flex-direction:column;

    align-items:flex-start;
}

}

.sticky-contact-actions{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:1000;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.sticky-contact-actions a{
    min-width:150px;
    min-height:52px;
    border-radius:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:var(--color-white);
    font-weight:var(--font-weight-extrabold);
    box-shadow:0 16px 34px rgba(7,20,39,0.18);
}

.sticky-call{
    background:linear-gradient(135deg,var(--accent-red),var(--accent-red-dark));
}

.sticky-whatsapp{
    background:linear-gradient(135deg,var(--primary-green),var(--primary-green-dark));
}

@media(max-width:1200px){

.navbar{
    gap:14px;
}

.nav-menu{
    gap:22px;
}

.login-links{
    display:none;
}

}

@media(max-width:768px){

.header{
    top:10px;
}

.navbar{
    border-radius:18px;
    padding:12px 13px;
    flex-wrap:wrap;
}

.logo img{
    height:48px;
}

.nav-menu{
    display:none;
}

.header-btn{
    padding:12px 18px;
    font-size:var(--font-size-body-sm);
}

.result-marquee{
    max-width:100%;
}

.hero{
    padding:185px 0 80px;
}

.hero h1{
    font-size:36px;
    line-height:1.14;
    letter-spacing:0;
    overflow-wrap:break-word;
}

.hero h1 span{
    text-decoration:none;
}

.hero p{
    font-size:var(--font-size-body);
    line-height:var(--line-height-body);
}

.hero-badge{
    max-width:100%;
    width:100%;
    white-space:normal;
    border-radius:22px;
    align-items:flex-start;
    font-size:var(--font-size-body-sm);
}

.hero-btns{
    align-items:stretch;
}

.hero-primary-btn,
.hero-secondary-btn{
    width:100%;
    min-height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    line-height:1.2;
}

.hero-grid > div{
    min-width:0;
}

.hero-stats{
    gap:18px;
}

.sticky-contact-actions{
    left:12px;
    right:12px;
    bottom:12px;
    flex-direction:row;
}

.sticky-contact-actions a{
    min-width:0;
    width:50%;
    min-height:50px;
    font-size:var(--font-size-body-sm);
}

body{
    padding-bottom:76px;
}

}

/* =========================
COURSES OVERVIEW
========================= */

.courses-overview{

    padding:100px 0;

    background:var(--color-white);
}

/* Heading */

.section-heading{

    text-align:center;

    max-width:800px;

    margin:0 auto 70px;
}

.section-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    background:var(--color-primary-soft);

    color:var(--color-primary);

    border-radius:50px;

    font-size:13px;
    font-weight:var(--font-weight-bold);

    margin-bottom:20px;
}

.section-heading h2{

    font-size:var(--font-size-section);

    line-height:var(--line-height-heading);

    color:var(--color-heading);

    margin-bottom:20px;


    font-weight:var(--font-weight-extrabold);
}

.section-heading h2 span{

    color:var(--color-primary);
}

.section-heading p{

    font-size:var(--font-size-body-lg);

    color:var(--color-text-muted);

    line-height:var(--line-height-body);
}

/* Grid */

.courses-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

/* Card */

.course-card{

    background:var(--color-white);

    border-radius:28px;

    padding:35px;

    border:1px solid #edf1ef;

    transition:.4s;

    box-shadow:
    0 10px 30px rgba(6,29,67,.04);

    position:relative;
}

.course-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 45px rgba(6,29,67,.08);
}

/* Featured */

.course-card.featured{

    background:
    linear-gradient(
        135deg,
        var(--color-heading),
        #0a2f67
    );

    color:var(--color-white);
}

.course-card.featured p,
.course-card.featured li{

    color:
    rgba(255,255,255,.8);
}

/* Icon */

.course-icon{

    width:70px;
    height:70px;

    border-radius:22px;

    background:var(--color-primary-soft);

    color:var(--color-primary);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    margin-bottom:25px;
}

.course-card.featured .course-icon{

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

    color:var(--color-white);
}

/* Title */

.course-card h3{

    font-size:30px;

    font-weight:var(--font-weight-extrabold);

    margin-bottom:15px;
}

/* Description */

.course-card p{

    color:var(--color-text-muted);

    line-height:var(--line-height-body);

    margin-bottom:25px;
}

/* Features */

.course-card ul{

    display:flex;
    flex-wrap:wrap;

    gap:10px;

    margin-bottom:30px;
}

.course-card ul li{

    padding:8px 14px;

    background:#f7faf8;

    border-radius:50px;

    font-size:13px;

    color:#475467;
}

.course-card.featured ul li{

    background:
    rgba(255,255,255,.1);
}

/* Button */

.course-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;

    text-decoration:none;

    color:var(--color-primary);

    font-weight:var(--font-weight-bold);
}

.course-card.featured .course-btn{

    color:var(--color-white);
}

/* Responsive */

@media(max-width:1024px){

.courses-grid{

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

}

@media(max-width:768px){

.section-heading h2{

    font-size:38px;
}

.courses-grid{

    grid-template-columns:1fr;
}

.course-card{

    padding:28px;
}

}

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

/* =========================
IELTS HERO — REDESIGNED
========================= */

.ielts-hero{
    position:relative;
    padding:157px 0 0px;
    background:
        linear-gradient(135deg, #031929 0%, #042d1a 45%, var(--color-heading) 100%);
    overflow:hidden;
}

/* Animated background orbs */
.ielts-hero::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle, rgba(23,133,74,0.22) 0%, transparent 65%);
    top:-150px;
    right:-100px;
    border-radius:50%;
    pointer-events:none;
}

.ielts-hero::after{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(6,29,67,0.6) 0%, transparent 70%);
    bottom:-100px;
    left:-80px;
    border-radius:50%;
    pointer-events:none;
}

/* Subtle grid lines */
.ielts-hero .container{
    position:relative;
    z-index:2;
}

.ielts-hero-grid{
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    gap:60px;
    align-items:flex-end;
    min-height:560px;
}

/* CONTENT */

.ielts-badge{
    display:inline-flex;
    align-items:center;
    gap:9px;
    padding:9px 18px;
    background:rgba(23,133,74,0.18);
    border:1px solid rgba(23,133,74,0.4);
    color:#6ee9a8;
    border-radius:50px;
    font-size:12.5px;
    font-weight:var(--font-weight-bold);
    letter-spacing:0.04em;
    text-transform:uppercase;
    margin-bottom:28px;
    backdrop-filter:blur(8px);
    animation:fadein 0.6s ease both;
}

.ielts-badge i{
    color:#4cd88a;
    font-size:13px;
}

.ielts-hero-content{
    max-width:640px;
    align-self:center;
}

.ielts-hero-content h1{
    font-size:70px;
    line-height:1.04;
    color:#f0f7f3;
    margin-bottom:22px;
    font-weight:var(--font-weight-black);
    letter-spacing:-0.02em;
    animation:slidein 0.7s ease both;
    animation-delay:0.1s;
}

.ielts-hero-content h1 span{
    background:linear-gradient(90deg, #3de882, #17d47a, #00b85e);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    display:block;
}

.ielts-hero-content p{
    font-size:17.5px;
    line-height:var(--line-height-body);
    color:rgba(210,230,220,0.78);
    max-width:560px;
    margin-bottom:36px;
    animation:slidein 0.7s ease both;
    animation-delay:0.2s;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:38px;
    animation:slidein 0.7s ease both;
    animation-delay:0.3s;
}

.hero-primary-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 32px;
    border-radius:14px;
    background:linear-gradient(135deg, #17d47a 0%, #009f59 100%);
    color:var(--color-white);
    font-weight:var(--font-weight-extrabold);
    font-size:15px;
    min-width:195px;
    box-shadow:0 8px 32px rgba(23,212,122,0.35);
    transition:transform 0.22s ease, box-shadow 0.22s ease;
}

.hero-primary-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 44px rgba(23,212,122,0.45);
}

.hero-secondary-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 32px;
    border-radius:14px;
    background:rgba(255,255,255,0.08);
    border:1.5px solid rgba(255,255,255,0.2);
    color:#f0f7f3;
    font-weight:var(--font-weight-bold);
    font-size:15px;
    min-width:220px;
    backdrop-filter:blur(8px);
    transition:background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.hero-secondary-btn:hover{
    background:rgba(255,255,255,0.15);
    border-color:rgba(255,255,255,0.4);
    transform:translateY(-3px);
}

/* TRUST PILLS */

.hero-trust-pills{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:40px;
}

.hero-trust-pills span{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:8px 16px;
    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.14);
    border-radius:50px;
    font-size:13px;
    font-weight:var(--font-weight-semibold);
    color:rgba(220,245,232,0.88);
    backdrop-filter:blur(6px);
    transition:background 0.2s, border-color 0.2s;
}

.hero-trust-pills span:hover{
    background:rgba(23,133,74,0.25);
    border-color:rgba(23,212,122,0.4);
}

.hero-trust-pills i{
    color:#3de882;
    font-size:12px;
}

/* STATS */

.hero-stats{
    display:flex;
    gap:0;
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:30px;
    animation:slidein 0.7s ease both;
    animation-delay:0.4s;
}

.hero-stat{
    flex:1;
    padding:0 24px 0 0;
    position:relative;
}

.hero-stat + .hero-stat{
    padding-left:24px;
    border-left:1px solid rgba(255,255,255,0.1);
}

.hero-stat strong{
    display:block;
    font-size:32px;
    font-weight:var(--font-weight-black);
    color:#3de882;
    letter-spacing:-0.01em;
    line-height:var(--line-height-tight);
    margin-bottom:5px;
}

.hero-stat span{
    color:rgba(200,225,215,0.65);
    font-size:13px;
    font-weight:var(--font-weight-medium);
}

/* IMAGE SIDE */

.ielts-hero-image{
    position:relative;
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.ielts-hero-image img{
    width:100%;
    max-width:580px;
    border-radius:0;
    box-shadow:none;
    animation:heroFloat 5.5s ease-in-out infinite;
    position:relative;
    z-index:1;
    display:block;
    vertical-align:bottom;
    /* Fade left edge and bottom into the dark hero background */
    -webkit-mask-image:linear-gradient(to right, transparent 0%, black 12%),
                       linear-gradient(to top, transparent 0%, black 18%);
    mask-image:linear-gradient(to right, transparent 0%, black 12%),
               linear-gradient(to top, transparent 0%, black 18%);
    -webkit-mask-composite:source-in;
    mask-composite:intersect;
}

/* Glowing ring behind image */
.ielts-hero-image::before{
    content:'';
    position:absolute;
    width:460px;
    height:460px;
    background:radial-gradient(circle, rgba(23,212,122,0.12) 0%, transparent 68%);
    top:50%;
    right:0;
    transform:translateY(-50%);
    border-radius:50%;
    z-index:0;
    pointer-events:none;
}

@keyframes pulseGlow{
    0%,100%{ opacity:0.7; transform:translate(-50%,-50%) scale(1); }
    50%{ opacity:1; transform:translate(-50%,-50%) scale(1.07); }
}

@keyframes heroFloat{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-14px); }
}

@keyframes fadein{
    from{ opacity:0; transform:translateY(10px); }
    to{ opacity:1; transform:translateY(0); }
}

@keyframes slidein{
    from{ opacity:0; transform:translateY(20px); }
    to{ opacity:1; transform:translateY(0); }
}

/* FLOATING CARDS */

.floating-score{
    position:absolute;
    top:60px;
    right:0;
    background:rgba(255,255,255,0.97);
    padding:16px 22px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.2), 0 0 0 1px rgba(23,212,122,0.12);
    text-align:center;
    z-index:3;
    animation:heroFloat 5.5s ease-in-out infinite;
    animation-delay:0.8s;
}

.floating-score strong{
    display:block;
    font-size:36px;
    font-weight:var(--font-weight-black);
    color:var(--color-primary);
    line-height:var(--line-height-tight);
}

.floating-score span{
    font-size:12px;
    font-weight:var(--font-weight-bold);
    color:var(--color-text-muted);
    text-transform:uppercase;
    letter-spacing:0.05em;
}

.floating-rating{
    position:absolute;
    bottom:50px;
    left:-28px;
    background:rgba(255,255,255,0.97);
    padding:13px 18px;
    border-radius:16px;
    box-shadow:0 16px 40px rgba(0,0,0,0.18);
    font-weight:var(--font-weight-bold);
    font-size:var(--font-size-body-sm);
    color:var(--color-heading);
    z-index:3;
    display:flex;
    align-items:center;
    gap:8px;
    animation:heroFloat 5.5s ease-in-out infinite;
    animation-delay:1.2s;
}

.floating-rating i{
    color:#f59e0b;
}

.floating-practice{
    position:absolute;
    top:50%;
    left:-30px;
    transform:translateY(-50%);
    background:linear-gradient(135deg, var(--color-primary), #0d5e35);
    padding:13px 18px;
    border-radius:16px;
    box-shadow:0 12px 36px rgba(23,133,74,0.4);
    font-weight:var(--font-weight-bold);
    font-size:13px;
    color:var(--color-white);
    z-index:3;
    display:flex;
    align-items:center;
    gap:9px;
    animation:heroFloat 5.5s ease-in-out infinite;
    animation-delay:0.4s;
}

.floating-practice i{
    color:#6ee9a8;
}

/* =========================
IELTS HERO LIGHT VERSION
========================= */

.ielts-hero-light{
    background:
        linear-gradient(135deg, #f4fbf7 0%, #e9f7ef 48%, #edf6ff 100%);
}

.ielts-hero-light::before{
    background:radial-gradient(circle, rgba(23,133,74,0.16) 0%, transparent 65%);
}

.ielts-hero-light::after{
    background:radial-gradient(circle, rgba(6,29,67,0.09) 0%, transparent 70%);
}

.ielts-hero-light .ielts-badge{
    background:rgba(23,133,74,0.1);
    border-color:rgba(23,133,74,0.2);
    color:var(--color-primary);
}

.ielts-hero-light .ielts-badge i{
    color:var(--color-primary);
}

.ielts-hero-light .ielts-hero-content h1{
    color:#06233a;
}

.ielts-hero-light .ielts-hero-content p{
    color:#4f6570;
}

.ielts-hero-light .hero-secondary-btn{
    background:rgba(255,255,255,0.62);
    border-color:rgba(6,29,67,0.16);
    color:#06233a;
}

.ielts-hero-light .hero-secondary-btn:hover{
    background:var(--color-white);
    border-color:rgba(23,133,74,0.28);
}

.ielts-hero-light .hero-trust-pills span{
    background:rgba(255,255,255,0.7);
    border-color:rgba(23,133,74,0.16);
    color:#294650;
}

.ielts-hero-light .hero-trust-pills span:hover{
    background:var(--color-white);
    border-color:rgba(23,133,74,0.3);
}

.ielts-hero-light .hero-stats{
    border-top-color:rgba(6,29,67,0.1);
}

.ielts-hero-light .hero-stat + .hero-stat{
    border-left-color:rgba(6,29,67,0.1);
}

.ielts-hero-light .hero-stat span{
    color:#60727b;
}

.ielts-hero-light .ielts-hero-image img{
    -webkit-mask-image:linear-gradient(to right, transparent 0%, black 12%),
                       linear-gradient(to top, transparent 0%, black 12%);
    mask-image:linear-gradient(to right, transparent 0%, black 12%),
               linear-gradient(to top, transparent 0%, black 12%);
}

.ielts-hero-light .ielts-hero-image::before{
    background:radial-gradient(circle, rgba(23,212,122,0.16) 0%, transparent 68%);
}

.ielts-hero-light .floating-rating,
.ielts-hero-light .floating-score{
    box-shadow:0 16px 44px rgba(6,29,67,0.13), 0 0 0 1px rgba(23,133,74,0.1);
}

.ielts-hero-light .floating-practice{
    box-shadow:0 12px 34px rgba(23,133,74,0.24);
}

/* RESPONSIVE */

@media(max-width:991px){

.ielts-hero{
    padding:120px 0 80px;
}

.ielts-hero-grid{
    grid-template-columns:1fr;
    gap:50px;
}

.ielts-hero-content{
    text-align:center;
    max-width:100%;
}

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

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

.hero-trust-pills{
    justify-content:center;
}

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

.ielts-hero-image{
    display:none;
}

}

/* =========================
WHY CHOOSE DICTIONARY
========================= */

.ielts-trust-section{

    padding:110px 0;

    background:
    linear-gradient(
        180deg,
        var(--color-white) 0%,
        var(--color-primary-pale) 100%
    );
}

/* GRID */

.trust-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

/* CARD */

.trust-card{

    position:relative;

    padding:40px 30px;

    background:
    linear-gradient(145deg,var(--color-white) 0%,#f3fbf6 58%,#eaf8f0 100%);

    border-radius:28px;

    border:1px solid rgba(23,133,74,.12);

    box-shadow:
    0 10px 30px rgba(6,29,67,.04);

    transition:.4s;

    overflow:hidden;
}

.trust-card::before{

    content:"";

    position:absolute;
    top:0;
    left:0;
    right:0;

    height:6px;

    background:
    linear-gradient(90deg,var(--color-primary),#22c77a);
}

.trust-card:nth-child(2)::before{
    background:linear-gradient(90deg,var(--color-heading),#1c5aa6);
}

.trust-card:nth-child(2){
    background:
    linear-gradient(145deg,var(--color-white) 0%,#f2f7ff 58%,#e7f0ff 100%);
}

.trust-card:nth-child(3)::before{
    background:linear-gradient(90deg,#008f7a,#19c6a4);
}

.trust-card:nth-child(3){
    background:
    linear-gradient(145deg,var(--color-white) 0%,#effcf9 58%,#e3f8f2 100%);
}

.trust-card:nth-child(4)::before{
    background:linear-gradient(90deg,#0d6f4b,#2eba68);
}

.trust-card:nth-child(4){
    background:
    linear-gradient(145deg,var(--color-white) 0%,#f4fbef 58%,#eaf7df 100%);
}

.trust-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 20px 50px rgba(6,29,67,.08);
}

/* ICON */

.trust-icon{

    width:72px;
    height:72px;

    border-radius:22px;

    background:
    linear-gradient(135deg,#e9f8ef,#f6fffa);

    color:var(--color-primary);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    margin-bottom:24px;
}

.trust-card:nth-child(2) .trust-icon{

    background:
    linear-gradient(135deg,#e9f1ff,#f6f9ff);

    color:var(--color-heading);
}

.trust-card:nth-child(3) .trust-icon{

    background:
    linear-gradient(135deg,#e8fbf6,#f7fffc);

    color:#008f7a;
}

.trust-card:nth-child(4) .trust-icon{

    background:
    linear-gradient(135deg,var(--color-primary-soft),#fbfff7);

    color:#0d6f4b;
}

/* TITLE */

.trust-card h3{

    font-size:26px;

    line-height:1.2;

    color:var(--color-heading);

    margin-bottom:16px;

    font-weight:var(--font-weight-extrabold);
}

/* TEXT */

.trust-card p{

    font-size:15px;

    line-height:var(--line-height-body-loose);

    color:var(--color-text-muted);
}

/* RESPONSIVE */

@media(max-width:1024px){

.trust-grid{

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

}

@media(max-width:768px){

.ielts-trust-section{

    padding:80px 0;
}

.trust-grid{

    grid-template-columns:1fr;
}

.trust-card{

    padding:30px;
}

}

/* =========================
IELTS MODULES
========================= */

.ielts-modules-section{

    padding:50px 0;

    background:var(--color-white);
}

/* GRID */

.modules-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

/* CARD */

.module-card{

    position:relative;

    padding:35px 28px;

    background:
    linear-gradient(145deg,var(--color-white) 0%,#f3fbf6 58%,#eaf8f0 100%);

    border-radius:30px;

    border:1px solid rgba(23,133,74,.12);

    box-shadow:
    0 10px 30px rgba(6,29,67,.04);

    transition:.4s;

    overflow:hidden;
}

.module-card::before{

    content:"";

    position:absolute;
    top:0;
    left:0;
    right:0;

    height:6px;

    background:
    linear-gradient(90deg,var(--color-primary),#22c77a);
}

.module-card:nth-child(2){
    background:
    linear-gradient(145deg,var(--color-white) 0%,#f2f7ff 58%,#e7f0ff 100%);
}

.module-card:nth-child(2)::before{
    background:linear-gradient(90deg,var(--color-heading),#1c5aa6);
}

.module-card:nth-child(3){
    background:
    linear-gradient(145deg,var(--color-white) 0%,#effcf9 58%,#e2f9f2 100%);
}

.module-card:nth-child(3)::before{
    background:linear-gradient(90deg,#008f7a,#19c6a4);
}

.module-card:nth-child(4){
    background:
    linear-gradient(145deg,var(--color-white) 0%,#f4fbef 58%,#eaf7df 100%);
}

.module-card:nth-child(4)::before{
    background:linear-gradient(90deg,#0d6f4b,#2eba68);
}

.module-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 20px 50px rgba(6,29,67,.08);
}

/* FEATURED */

.module-card.featured{

    background:
    linear-gradient(
        135deg,
        var(--color-primary),
        #0f6e3d
    );

    border:none;
}

.module-card.featured h3,
.module-card.featured p,
.module-card.featured li{

    color:var(--color-white);
}

/* ICON */

.module-icon{

    width:78px;
    height:78px;

    border-radius:24px;

    background:
    linear-gradient(135deg,#e9f8ef,#f6fffa);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    margin-bottom:24px;
}

.module-icon i{
    color:var(--color-primary);
    font-size:30px;
}

.module-card:nth-child(2) .module-icon{
    background:
    linear-gradient(135deg,#e9f1ff,#f6f9ff);
}

.module-card:nth-child(2) .module-icon i{
    color:var(--color-heading);
}

.module-card:nth-child(3) .module-icon{
    background:
    linear-gradient(135deg,#e8fbf6,#f7fffc);
}

.module-card:nth-child(3) .module-icon i{
    color:#008f7a;
}

.module-card:nth-child(4) .module-icon{
    background:
    linear-gradient(135deg,var(--color-primary-soft),#fbfff7);
}

.module-card:nth-child(4) .module-icon i{
    color:#0d6f4b;
}

.module-card.featured .module-icon{

    background:
    rgba(255,255,255,.15);
}

.module-card.featured .module-icon i{
    color:var(--color-white);
}

/* NUMBER */

.module-number{

    position:absolute;

    top:25px;
    right:25px;

    font-size:40px;

    font-weight:var(--font-weight-extrabold);

    opacity:.08;

    color:var(--color-heading);
}

.module-card.featured .module-number{

    color:var(--color-white);
    opacity:.15;
}

/* TITLE */

.module-card h3{

    font-size:28px;

    color:var(--color-heading);

    margin-bottom:14px;

    font-weight:var(--font-weight-extrabold);
}

/* TEXT */

.module-card p{

    font-size:15px;

    line-height:var(--line-height-body);

    color:var(--color-text-muted);

    margin-bottom:24px;
}

/* TAGS */

.module-card ul{
    list-style:none;
    padding:0;
    margin:0;

    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.module-card ul li{

    display:flex;
    align-items:center;
    gap:8px;

    padding:8px 14px;

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

    border-radius:50px;

    border:1px solid rgba(23,133,74,.08);

    font-size:13px;

    color:#475467;
}

.module-card:nth-child(2) ul li{
    border-color:rgba(6,29,67,.08);
}

.module-card:nth-child(3) ul li{
    border-color:rgba(0,143,122,.1);
}

.module-card:nth-child(4) ul li{
    border-color:rgba(13,111,75,.1);
}

.module-card ul li i{

    font-size:12px;

    color:var(--color-primary);
}

.module-card.featured ul li{

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

    color:var(--color-white);
}

.module-card.featured ul li i{

    color:var(--color-white);
}

/* RESPONSIVE */

@media(max-width:1200px){

.modules-grid{

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

}

@media(max-width:768px){

.ielts-modules-section{

    padding:80px 0;
}

.modules-grid{

    grid-template-columns:1fr;
}

.module-card{

    padding:30px;
}

}

/* =========================
IELTS JOURNEY
========================= */

.ielts-journey-section{

    padding:90px 0;

    background:
    linear-gradient(
        180deg,
        var(--color-primary-pale) 0%,
        var(--color-white) 100%
    );
}

.journey-wrapper{

    display:grid;

    grid-template-columns:
    repeat(5,minmax(220px,1fr));

    gap:20px;

    align-items:stretch;
}

/* STEP */

.journey-step{

    position:relative;

    padding:30px 24px;

    text-align:center;

    background:
    linear-gradient(145deg,var(--color-white) 0%,#f3fbf6 58%,#eaf8f0 100%);

    border-radius:28px;

    border:1px solid rgba(23,133,74,.12);

    transition:.35s;

    box-shadow:
    0 10px 30px rgba(6,29,67,.04);

    min-height:280px;

    overflow:hidden;
}

.journey-step::before{

    content:"";

    position:absolute;
    top:0;
    left:0;
    right:0;

    height:6px;

    background:
    linear-gradient(90deg,var(--color-primary),#22c77a);
}

.journey-step:nth-child(2){
    background:
    linear-gradient(145deg,var(--color-white) 0%,#f2f7ff 58%,#e7f0ff 100%);
}

.journey-step:nth-child(2)::before{
    background:linear-gradient(90deg,var(--color-heading),#1c5aa6);
}

.journey-step:nth-child(3){
    background:
    linear-gradient(145deg,var(--color-white) 0%,#effcf9 58%,#e2f9f2 100%);
}

.journey-step:nth-child(3)::before{
    background:linear-gradient(90deg,#008f7a,#19c6a4);
}

.journey-step:nth-child(4){
    background:
    linear-gradient(145deg,var(--color-white) 0%,#f4fbef 58%,#eaf7df 100%);
}

.journey-step:nth-child(4)::before{
    background:linear-gradient(90deg,#0d6f4b,#2eba68);
}

.journey-step:nth-child(5){
    background:
    linear-gradient(145deg,var(--color-white) 0%,#f3f8ff 58%,#e9f3fb 100%);
}

.journey-step:nth-child(5)::before{
    background:linear-gradient(90deg,#0f6e8a,#24a7c8);
}

.journey-step:hover{

    transform:
    translateY(-8px);
}

/* STEP NUMBER */

.step-no{

    position:absolute;

    top:18px;
    right:20px;

    font-size:42px;

    font-weight:var(--font-weight-extrabold);

    color:rgba(6,29,67,.08);

    line-height:var(--line-height-tight);
}

/* ICON */

.journey-icon{

    width:78px;
    height:78px;

    margin:0 auto 18px;

    border-radius:22px;

    background:
    linear-gradient(135deg,#e9f8ef,#f6fffa);

    color:var(--color-primary);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;
}

.journey-step:nth-child(2) .journey-icon{
    background:
    linear-gradient(135deg,#e9f1ff,#f6f9ff);

    color:var(--color-heading);
}

.journey-step:nth-child(3) .journey-icon{
    background:
    linear-gradient(135deg,#e8fbf6,#f7fffc);

    color:#008f7a;
}

.journey-step:nth-child(4) .journey-icon{
    background:
    linear-gradient(135deg,var(--color-primary-soft),#fbfff7);

    color:#0d6f4b;
}

.journey-step:nth-child(5) .journey-icon{
    background:
    linear-gradient(135deg,#eaf7fb,#f7fcff);

    color:#0f6e8a;
}

/* TITLE */

.journey-step h3{

    font-size:20px;

    color:var(--color-heading);

    margin-bottom:12px;

    font-weight:var(--font-weight-extrabold);

    line-height:1.25;
}

/* TEXT */

.journey-step p{

    color:var(--color-text-muted);

    line-height:var(--line-height-body);

    font-size:var(--font-size-body-sm);

    margin:0;
}

/* FEATURED */

.journey-step.featured{

    background:
    linear-gradient(
        135deg,
        var(--color-heading),
        #0b326d
    );
}

.journey-step.featured h3,
.journey-step.featured p{

    color:var(--color-white);
}

.journey-step.featured .journey-icon{

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

    color:var(--color-white);
}

.journey-step.featured .step-no{

    color:rgba(255,255,255,.15);
}

/* SUCCESS */

.journey-step.success{

    background:
    linear-gradient(
        135deg,
        var(--color-primary),
        #0f6e3d
    );
}

.journey-step.success h3,
.journey-step.success p{

    color:var(--color-white);
}

.journey-step.success .journey-icon{

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

    color:var(--color-white);
}

.journey-step.success .step-no{

    color:rgba(255,255,255,.15);
}

/* LARGE LAPTOPS */

@media(max-width:1400px){

    .journey-wrapper{

        grid-template-columns:
        repeat(5,minmax(190px,1fr));

        gap:16px;
    }

    .journey-step{

        min-height:250px;

        padding:25px 18px;
    }

    .journey-step h3{

        font-size:var(--font-size-body-lg);
    }

    .journey-step p{

        font-size:13px;
    }
}

/* TABLET */

@media(max-width:1200px){

    .journey-wrapper{

        grid-template-columns:
        repeat(3,1fr);
    }
}

/* MOBILE */

@media(max-width:767px){

    .journey-wrapper{

        grid-template-columns:1fr;
    }

    .journey-step{

        min-height:auto;
    }
}

/* =========================
IELTS RESULTS
========================= */

/* =========================
STUDENT RESULTS
========================= */

.results-section{

    padding:100px 0;

    background:
    linear-gradient(
        180deg,
        var(--color-white) 0%,
        #f7faf8 100%
    );
}

.results-section .container{

    max-width:1200px;
    margin:auto;
}

/* Heading */

.section-heading{

    text-align:center;

    max-width:800px;

    margin:0 auto 60px;
}

.section-heading h2{

    font-size:54px;

    line-height:var(--line-height-heading);

    color:var(--color-heading);

    margin:18px 0;
}

.section-heading h2 span{

    color:var(--color-primary);
}

.section-heading p{

    font-size:var(--font-size-body-lg);

    color:var(--color-text-muted);

    line-height:var(--line-height-body);
}

/* Top Area */

.results-top{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:40px;

    align-items:center;

    margin-bottom:50px;
}

.results-content{

    padding-right:30px;
}

.results-content h3{

    font-size:42px;

    color:var(--color-heading);

    margin-bottom:18px;
}

.results-content p{

    color:var(--color-text-muted);

    line-height:var(--line-height-body);

    font-size:17px;

    margin-bottom:30px;
}

/* Stats */

.results-stats{

    display:flex;

    gap:15px;

    margin-bottom:30px;

    flex-wrap:wrap;
}

.result-stat{

    min-width:140px;

    padding:20px;

    background:var(--color-white);

    border-radius:20px;

    border:1px solid rgba(23,133,74,.10);

    text-align:center;

    box-shadow:
    0 10px 25px rgba(6,29,67,.05);
}

.result-stat strong{

    display:block;

    font-size:34px;

    color:var(--color-primary);

    line-height:var(--line-height-tight);
}

.result-stat span{

    color:var(--color-text-muted);

    font-size:var(--font-size-body-sm);
}

/* Featured Image */

.featured-result{

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(6,29,67,.08);
}

.featured-result img{

    width:100%;

    display:block;
}

/* Grid */

.results-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:25px;
}

.result-card{

    overflow:hidden;

    border-radius:24px;

    background:var(--color-white);

    box-shadow:
    0 12px 35px rgba(6,29,67,.06);

    transition:.35s;
}

.result-card:hover{

    transform:translateY(-8px);
}

.result-card img{

    width:100%;

    display:block;
}

/* Responsive */

@media(max-width:991px){

.results-top{

    grid-template-columns:1fr;

    text-align:center;
}

.results-content{

    padding-right:0;
}

.results-stats{

    justify-content:center;
}

.results-grid{

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

}

@media(max-width:767px){

.section-heading h2{

    font-size:38px;
}

.results-content h3{

    font-size:32px;
}

.results-grid{

    grid-template-columns:1fr;
}

.result-stat{

    width:100%;
}
}

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

.ielts-cta{

    padding:100px 0;
}

.ielts-cta-card{

    max-width:1200px;

    margin:auto;

    text-align:center;

    padding:70px;

    border-radius:36px;

    overflow:hidden;

    position:relative;

    background:
    linear-gradient(
        135deg,
        var(--color-heading) 0%,
        #0d2c63 100%
    );

    color:var(--color-white);
}

.ielts-cta-card::before{

    content:'';

    position:absolute;

    width:450px;
    height:450px;

    right:-150px;
    top:-150px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(23,133,74,.35),
        transparent 70%
    );
}

.cta-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:12px 20px;

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

    border-radius:50px;

    margin-bottom:25px;

    font-size:var(--font-size-body-sm);

    font-weight:var(--font-weight-bold);
}

.ielts-cta h2{

    font-size:var(--font-size-section);

    line-height:var(--line-height-heading);

    margin-bottom:20px;
	color: var(--soft-white);
}

.ielts-cta h2 span{

    color:#34c36c;

    display:block;
}

.ielts-cta p{

    max-width:750px;

    margin:auto auto 35px;

    color:
    rgba(255,255,255,.78);

    font-size:var(--font-size-body-lg);

    line-height:var(--line-height-body);
}

.cta-features{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:40px;
}

.cta-features div{

    padding:12px 18px;

    border-radius:50px;

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

    display:flex;
    align-items:center;
    gap:10px;
}

.cta-features i{

    color:#34c36c;
}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;
}

.cta-buttons .primary-btn{

    min-width:220px;

    justify-content:center;

    background:#148345;

    color:var(--color-white);

    border:none;
}

.cta-buttons .primary-btn:hover{

    background:#0f6f3a;

    color:var(--color-white);
}

.cta-buttons .primary-btn i{

    color:var(--color-white);
}

.cta-buttons .secondary-btn{

    background:var(--color-white);

    color:var(--color-heading);

    border:none;
}

@media(max-width:768px){

.ielts-cta-card{

    padding:50px 25px;
}

.ielts-cta h2{

    font-size:38px;
}

}

/* OLD TRUST PILLS — now handled in hero section above
.hero-trust-pills{

    display:flex;
    flex-wrap:wrap;

    gap:12px;

    margin-top:28px;
}

.hero-trust-pills span{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:8px 13px;

    background:var(--color-white);

    border:1px solid rgba(23,133,74,.12);

    border-radius:50px;

    color:var(--color-heading);

    font-size:var(--font-size-body-sm);
    font-weight:var(--font-weight-semibold);

    box-shadow:
    0 8px 20px rgba(6,29,67,.04);

    transition:.3s ease;
}

.hero-trust-pills span:hover{

    transform:translateY(-3px);

    border-color:var(--color-primary);

    box-shadow:
    0 12px 25px rgba(23,133,74,.12);
}

.hero-trust-pills i{

    color:var(--color-primary);

    font-size:var(--font-size-body-sm);
}

/* Tablet */

@media(max-width:991px){

    .hero-trust-pills{

        justify-content:center;
    }
}

/* Mobile */

@media(max-width:767px){

    .hero-trust-pills{

        gap:10px;
    }

    .hero-trust-pills span{

        font-size:13px;

        padding:9px 14px;
    }
}
/*END OLD TRUST PILLS */

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

.about-hero{
    padding:120px 0 80px;
    background:var(--color-primary-pale);
}

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

.about-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:var(--color-primary-soft);
    color:var(--color-primary);
    border-radius:50px;
    font-weight:var(--font-weight-bold);
    margin-bottom:20px;
}

.about-content h1{
    font-size:var(--font-size-hero);
    line-height:var(--line-height-tight);
    color:var(--color-heading);
    font-weight:var(--font-weight-extrabold);
    margin-bottom:25px;
}

.about-content h1 span{
    display:block;
    color:var(--color-primary);
}

.about-content p{
    font-size:var(--font-size-body-lg);
    line-height:var(--line-height-body-loose);
    color:var(--color-text-muted);
    margin-bottom:35px;
    max-width:650px;
}

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

.about-images{
    position:relative;
    min-height:620px;
}

.about-img{
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 25px 50px rgba(6,29,67,.10);
}

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

.about-img.large{
    width:420px;
}

.about-img.small{
    width:260px;
    position:absolute;
}

.about-img.top{
    right:0;
    top:0;
}

.about-img.bottom{
    right:0;
    bottom:0;
}

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

.about-stats{
    margin-top:70px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-card{
    background:var(--color-white);
    border-radius:18px;
    padding:22px;
    text-align:center;
    border:1px solid var(--color-border);
}

.stat-card strong{
    display:block;
    font-size:42px;
    color:var(--color-primary);
    margin-bottom:8px;
}

.stat-card span{
    color:var(--color-text-muted);
}

/* ==========================
TIMELINE
========================== */

.journey-section{
    padding:100px 0;
    background:var(--color-white);
}

.timeline{
    margin-top:60px;

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;

    position:relative;
}

.timeline::before{
    content:'';
    position:absolute;
    top:40px;
    left:0;
    width:100%;
    height:3px;
    background:var(--color-border-soft);
}

.timeline-item{
    position:relative;
    z-index:2;
}

.year{
    width:80px;
    height:80px;

    background:var(--color-primary);
    color:var(--color-white);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:var(--font-weight-bold);

    margin:auto auto 25px;
}

.timeline-content{
    background:var(--color-white);

    border:1px solid var(--color-border);

    border-radius:25px;

    padding:25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(6,29,67,.05);
}

.timeline-content i{
    font-size:34px;
    color:var(--color-primary);
    margin-bottom:15px;
}

.timeline-content h4{
    color:var(--color-heading);
    margin-bottom:10px;
}

.timeline-content p{
    color:var(--color-text-muted);
    font-size:var(--font-size-body-sm);
    line-height:1.7;
}

/* ==========================
SECTION HEADING
========================== */

.section-heading{
    text-align:center;
}

.section-badge{
    display:inline-flex;
    gap:8px;
    align-items:center;

    background:var(--color-primary-soft);

    color:var(--color-primary);

    padding:10px 18px;

    border-radius:50px;

    font-weight:var(--font-weight-bold);

    margin-bottom:18px;
}

.section-heading h2{
    font-size:var(--font-size-section);
    color:var(--color-heading);
}

.section-heading h2 span{
    color:var(--color-primary);
}

/* ==========================
1366px Optimization
========================== */

@media (max-width:1366px){

    .about-content h1{
        font-size:62px;
    }

    .about-img.large{
        width:380px;
    }

    .about-img.small{
        width:220px;
    }

    .timeline{
        gap:15px;
    }

}

/* ==========================
Tablet
========================== */

@media(max-width:991px){

    .about-hero-grid{
        grid-template-columns:1fr;
    }

    .about-content{
        text-align:center;
    }

    .about-content h1{
        font-size:var(--font-size-section-sm);
    }

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

    .about-images{
        min-height:auto;
        display:flex;
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .about-img.large,
    .about-img.small{
        position:relative;
        width:300px;
    }

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

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

    .timeline::before{
        display:none;
    }

}


/* ==========================
WHY DICTIONARY
========================== */

.why-dictionary-section{

    padding:110px 0;

    background:
    linear-gradient(
        180deg,
        var(--color-white) 0%,
        var(--color-primary-pale) 100%
    );
}

.why-grid{

    margin-top:60px;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:25px;
}

.why-card{

    background:var(--color-white);

    border:1px solid var(--color-border);

    border-radius:30px;

    padding:32px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:
    0 10px 30px rgba(6,29,67,.04);
}

.why-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 20px 40px rgba(6,29,67,.08);
}

.why-icon{

    width:85px;
    height:85px;

    margin:auto auto 25px;

    border-radius:22px;

    background:var(--color-primary-soft);

    color:var(--color-primary);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;
}

.why-card:hover .why-icon{
    transform:scale(1.08);
}

.why-icon{
    transition:.3s;
}

.why-card h3{

    font-size:var(--font-size-card-title);

    color:var(--color-heading);

    margin-bottom:12px;

    font-weight:var(--font-weight-extrabold);
}

.why-card p{

    color:var(--color-text-muted);
	max-width:250px;
    margin:auto;
    line-height:var(--line-height-body);
}

/* Featured Card */

.why-card.featured{

    background:
    linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-primary-dark)
    );
	box-shadow:
    0 20px 40px rgba(23,133,74,.25);
}

.why-card.featured h3,
.why-card.featured p{

    color:var(--color-white);
}

.why-card.featured .why-icon{

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

    color:var(--color-white);
}

/* 1366 Optimization */

@media(max-width:1366px){

    .why-card{
        padding:35px 25px;
    }

    .why-card h3{
        font-size:22px;
    }

}

/* Tablet */

@media(max-width:991px){

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

}


/* ==========================
INSIDE DICTIONARY
========================== */

.inside-dictionary-section{

    padding:110px 0;

    background:
    linear-gradient(
        180deg,
        var(--color-primary-pale) 0%,
        var(--color-white) 100%
    );
}

.gallery-wrapper{

    margin-top:60px;

    display:grid;
    grid-template-columns:1.5fr 1fr;

    gap:25px;
}

.gallery-large{

    position:relative;

    border-radius:32px;

    overflow:hidden;

    min-height:650px;
}

.gallery-large img{

    width:100%;
    height:100%;

    object-fit:cover;
}

.gallery-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;
}

.gallery-item{

    border-radius:24px;

    overflow:hidden;

    height:315px;
}

.gallery-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.4s;
}

.gallery-item:hover img{

    transform:scale(1.05);
}

/* Floating Stats */

.floating-stat{

    position:absolute;

    background:var(--color-white);

    border-radius:18px;

    padding:18px 22px;

    box-shadow:
    0 15px 35px rgba(6,29,67,.10);
}

.floating-stat strong{

    display:block;

    font-size:30px;

    color:var(--color-primary);
}

.floating-stat span{

    color:var(--color-text-muted);

    font-size:var(--font-size-body-sm);
}

.stat-one{

    top:30px;
    left:30px;
}

.stat-two{

    bottom:30px;
    right:30px;
}

/* Success Card */

.success-card{

    background:
    linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-primary-dark)
    );

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:var(--color-white);
}

.success-card strong{

    font-size:var(--font-size-section-sm);
    line-height:var(--line-height-tight);
}

.success-card span{

    font-size:var(--font-size-body-lg);
}

/* ==========================
1366px Optimization
========================== */

@media(max-width:1366px){

    .gallery-large{
        min-height:580px;
    }

    .gallery-item{
        height:280px;
    }

}

/* Tablet */

@media(max-width:991px){

    .gallery-wrapper{

        grid-template-columns:1fr;
    }

    .gallery-grid{

        grid-template-columns:1fr 1fr;
    }

    .gallery-large{

        min-height:450px;
    }

}

@media(max-width:767px){

    .gallery-grid{

        grid-template-columns:1fr;
    }

    .gallery-item{

        height:250px;
    }

}


/* ==========================
SUCCESS STORIES
========================== */

.about-results-section{

    padding:110px 0;

    background:var(--color-white);
}

.results-layout{

    display:grid;

    grid-template-columns:1fr 1.1fr;

    gap:70px;

    align-items:center;
}

.results-content h2{

    font-size:var(--font-size-section);

    line-height:var(--line-height-heading);

    color:var(--color-heading);

    margin:20px 0;
}

.results-content h2 span{

    color:var(--color-primary);
}

.results-content p{

    font-size:var(--font-size-body-lg);

    line-height:var(--line-height-body-loose);

    color:var(--color-text-muted);

    margin-bottom:30px;
}

.achievement-list{

    display:grid;

    gap:15px;

    margin-bottom:35px;
}

.achievement-item{

    display:flex;

    align-items:center;

    gap:12px;

    color:var(--color-heading);

    font-weight:var(--font-weight-semibold);
}

.achievement-item i{

    color:var(--color-primary);
}

/* Collage */

.results-collage{

    display:grid;

    grid-template-columns:1.4fr 1fr;

    gap:20px;
}

.result-img{

    border-radius:26px;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(6,29,67,.08);
}

.result-img img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

.result-img.large{

    grid-row:span 2;

    height:640px;
}

.result-img:not(.large){

    height:310px;
}

.result-img:hover img{

    transform:scale(1.05);
}

.result-img img{

    transition:.4s;
}

/* ==========================
1366 OPTIMIZATION
========================== */

@media(max-width:1366px){

    .results-content h2{

        font-size:var(--font-size-section-sm);
    }

    .result-img.large{

        height:560px;
    }

    .result-img:not(.large){

        height:270px;
    }

}

/* MOBILE */

@media(max-width:991px){

    .results-layout{

        grid-template-columns:1fr;
    }

    .results-collage{

        grid-template-columns:1fr 1fr;
    }

    .result-img.large{

        grid-row:auto;

        height:350px;
    }

}

@media(max-width:767px){

    .results-collage{

        grid-template-columns:1fr;
    }

}

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

.about-cta-section{

    padding:80px 0;
}

.about-cta-card{

    background:
    linear-gradient(
        135deg,
        var(--color-heading) 0%,
        #0B2F63 50%,
        var(--color-primary) 100%
    );

    border-radius:40px;

    padding: 70px 70px 0;

    overflow:hidden;

    position:relative;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    align-items:center;

    gap:50px;
	min-height: 500px;
}

/* Glow */

.about-cta-card::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    right:-150px;
    top:-150px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(255,255,255,.12),
        transparent 70%
    );
}

/* CONTENT */

.about-cta-content{

    position:relative;
    z-index:2;
}

.about-cta-content h2{

    font-size:var(--font-size-hero);

    line-height:1.05;

    color:var(--color-white);

    margin:20px 0;
}

.about-cta-content h2 span{

    display:block;

    color:#53e08c;
}

.about-cta-content p{

    color:
    rgba(255,255,255,.85);

    font-size:var(--font-size-body-lg);

    line-height:var(--line-height-body-loose);

    max-width:650px;

    margin-bottom:35px;
}

/* BADGE */

.section-badge.dark{

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

    color:var(--color-white);
}

/* FEATURES */

.cta-features{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:35px;
}

.cta-features span{

    display:flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    border-radius:50px;

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

    color:var(--color-white);

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

.cta-features i{

    color:#53e08c;
}

/* BUTTONS */

.cta-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;
}

.cta-primary-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 30px;

    border-radius:16px;

    background:var(--color-white);

    color:var(--color-heading);

    font-weight:var(--font-weight-bold);

    text-decoration:none;
}

.cta-secondary-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 30px;

    border-radius:16px;

    color:var(--color-white);

    text-decoration:none;

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

    background:
    rgba(255,255,255,.08);
}

/* IMAGE */

.about-cta-image{

    position:relative;

    z-index:2;

    text-align:center;
	display:flex;

    align-items:flex-end;

    justify-content:center;

    height:100%;
	align-self:end;
}

.about-cta-image img{

    max-width:100%;
    height:auto;
	transform: translateY(54px);
}

/* ==========================
1366px
========================== */

@media(max-width:1366px){

    .about-cta-card{

        padding:60px;
    }

    .about-cta-content h2{

        font-size:var(--font-size-section);
    }

}

/* TABLET */

@media(max-width:991px){

    .about-cta-card{

        grid-template-columns:1fr;

        text-align:center;

        padding:50px 30px;
    }

    .cta-features{

        justify-content:center;
    }

    .cta-buttons{

        justify-content:center;
    }

    .about-cta-content h2{

        font-size:46px;
    }

}

@media(max-width:767px){

    .about-cta-content h2{

        font-size:38px;
    }

}

/* =========================
WHY PTE SECTION
========================= */

.why-pte-section{

    padding:110px 0;

    background:
    linear-gradient(
        180deg,
        var(--color-white) 0%,
        var(--color-primary-pale) 100%
    );
}

/* HEADING */

.why-pte-section .section-heading{

    text-align:center;

    max-width:800px;

    margin:0 auto 60px;
}

.why-pte-section .section-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    background:var(--color-primary-soft);

    color:var(--color-primary);

    border-radius:50px;

    font-size:var(--font-size-body-sm);
    font-weight:var(--font-weight-bold);

    margin-bottom:18px;
}

.why-pte-section .section-heading h2{

    font-size:var(--font-size-section-sm);

    line-height:var(--line-height-heading);

    font-weight:var(--font-weight-extrabold);

    color:var(--color-heading);

    margin-bottom:18px;
}

.why-pte-section .section-heading h2 span{

    color:var(--color-primary);
}

.why-pte-section .section-heading p{

    font-size:var(--font-size-body-lg);

    line-height:var(--line-height-body);

    color:var(--color-text-muted);
}

/* GRID */

.why-pte-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

/* CARD */

.why-pte-card{

    

    border:1px solid #e8efeb;

    border-radius:28px;

    padding:35px;

    transition:.35s;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(6,29,67,.04);
}

.why-pte-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 20px 40px rgba(6,29,67,.08);
}


/* CARD COLORS */

.why-pte-card:nth-child(1){

    background:
    linear-gradient(
        135deg,
        #f5fbf7 0%,
        var(--color-primary-soft) 100%
    );
}

.why-pte-card:nth-child(2){

    background:
    linear-gradient(
        135deg,
        #f5fbf7 0%,
        var(--color-primary-soft) 100%
    );
}

.why-pte-card:nth-child(3){

    background:
    linear-gradient(
        135deg,
        #f6fbfc 0%,
        #eef9f8 100%
    );
}

.why-pte-card:nth-child(4){

    background:
    linear-gradient(
        135deg,
        #fffdf7 0%,
        #faf7ea 100%
    );
}

.why-pte-card:nth-child(5){

    background:
    linear-gradient(
        135deg,
        #faf8ff 0%,
        #f3efff 100%
    );
}

.why-pte-card:nth-child(6){

    background:
    linear-gradient(
        135deg,
        #fff8f5 0%,
        #fff1eb 100%
    );
}
/* FEATURED CARD */

.why-pte-card.featured{

    background:
    linear-gradient(
        135deg,
        var(--color-heading),
        #0b326d
    );

    border:none;
}

.why-pte-card.featured h3,
.why-pte-card.featured p{

    color:var(--color-white);
}

.why-pte-card.featured .why-icon{

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

    color:var(--color-white);
}

/* ICON */

/* DEFAULT ICON */

.why-icon{
    width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:22px;

    font-size:32px;

    color:var(--color-primary);

    margin-bottom:25px;
	border:1px solid rgba(23,133,74,.08);
}

/* AI Evaluation */

.why-pte-card:nth-child(1) .why-icon{
    background:#dff4e6;
}

/* Unlimited Mock Tests */

.why-pte-card:nth-child(3) .why-icon{
    background:#dff4f1;
}

/* Progress Tracking */

.why-pte-card:nth-child(4) .why-icon{
    background:#f5f0d8;
}

/* Speaking Templates */

.why-pte-card:nth-child(5) .why-icon{
    background:#ebe1ff;
}

/* Proven Results */

.why-pte-card:nth-child(6) .why-icon{
    background:#ffe5d9;
}

/* Featured Card */

.why-pte-card.featured .why-icon{
    background:rgba(255,255,255,.12);
    color:var(--color-white);
}

/* TITLE */

.why-pte-card h3{

    font-size:30px;

    line-height:1.3;

    color:var(--color-heading);

    font-weight:var(--font-weight-extrabold);

    margin-bottom:15px;
}

/* TEXT */

.why-pte-card p{

    font-size:17px;

    line-height:var(--line-height-body);

    color:var(--color-text-muted);
}

/* DECORATIVE GLOW */

.why-pte-card::before{

    content:'';

    position:absolute;

    width:180px;
    height:180px;

    top:-90px;
    right:-90px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(23,133,74,.06),
        transparent 70%
    );
}

/* =========================
LAPTOPS 1366px
========================= */

@media(max-width:1366px){

    .why-pte-section{

        padding:90px 0;
    }

    .why-pte-grid{

        gap:24px;
    }

    .why-pte-card{

        padding:30px;
    }

    .why-pte-card h3{

        font-size:28px;
    }
}

/* =========================
TABLET
========================= */

@media(max-width:991px){

    .why-pte-grid{

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

    .why-pte-section .section-heading h2{

        font-size:42px;
    }
}

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

@media(max-width:767px){

    .why-pte-section{

        padding:70px 0;
    }

    .why-pte-grid{

        grid-template-columns:1fr;
    }

    .why-pte-section .section-heading h2{

        font-size:34px;
    }

    .why-pte-section .section-heading p{

        font-size:var(--font-size-body);
    }

    .why-pte-card{

        padding:28px;
    }

    .why-pte-card h3{

        font-size:var(--font-size-card-title);
    }

    .why-icon{

        width:70px;
        height:70px;

        font-size:28px;
    }
}

/* =========================
PTE SUCCESS JOURNEY
========================= */

.pte-process-section{

    padding:110px 0;

    background:
    linear-gradient(
        180deg,
        var(--color-primary-pale) 0%,
        var(--color-white) 100%
    );
}

/* GRID */

.pte-process-grid{

    display:flex;
    align-items:center;
    justify-content:center;

    gap:18px;

    margin-top:60px;

    flex-wrap:wrap;
}

/* CARD */

.process-step{

    width:220px;

    padding:35px 25px;

    text-align:center;

    background:var(--color-white);

    border-radius:28px;

    border:1px solid #e8f0eb;

    box-shadow:
    0 12px 30px rgba(6,29,67,.04);

    transition:.35s ease;
}

.process-step:hover{

    transform:translateY(-8px);
}

/* ICON */

.step-icon{
    width:82px;
    height:82px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 24px;

    border-radius:22px;

    background:#dff2e6;
    border:1px solid #c7e8d2;

    color:var(--color-primary);
    font-size:34px;

    box-shadow:0 8px 20px rgba(23,133,74,.08);
}

/* TITLE */

.process-step h3{

    font-size:var(--font-size-card-title);

    font-weight:var(--font-weight-extrabold);

    color:var(--color-heading);

    margin-bottom:12px;

    line-height:1.2;
}

/* TEXT */

.process-step p{

    font-size:var(--font-size-body-sm);

    line-height:var(--line-height-body);

    color:var(--color-text-muted);
}

/* ARROW */

.process-arrow{

    color:var(--color-primary);

    font-size:28px;

    flex-shrink:0;
}

/* FEATURED CARD */

.process-step.featured{
    background:
    linear-gradient(
        135deg,
        #f7fbff,
        #eef5fb
    );

    border:1px solid #dbe7f5;
}

.process-step.featured h3{
    color:var(--color-heading);
}

.process-step.featured p{
    color:var(--color-text-muted);
}

.process-step.featured .step-icon{
    background:#e8efff;
    color:#0b326d;
}

/* SUCCESS CARD */

.process-step.success{
    background:
    linear-gradient(
        135deg,
        #f7fcf9,
        #eef8f2
    );

    border:1px solid #dcefe3;
}

.process-step.success h3{
    color:var(--color-heading);
}

.process-step.success p{
    color:var(--color-text-muted);
}

.process-step.success .step-icon{
    background:#e8f5ee;
    color:var(--color-primary);
}

/* LIGHT CARD COLORS */

.process-step:nth-child(1){
    background:linear-gradient(135deg,#f7fcf9,#eef8f2);
}

.process-step:nth-child(3){
    background:linear-gradient(135deg,#f7fbff,#eef5fb);
}

.process-step:nth-child(5){
    background:linear-gradient(135deg,#f8faff,#f2f6ff);
}

.process-step:nth-child(7){
    background:linear-gradient(135deg,#fffaf6,#fff2e8);
}

.process-step:nth-child(9){
    background:linear-gradient(135deg,#f7fcf9,#eef8f2);
}

.process-step:nth-child(1) .step-icon{
    background:#eaf7ef;
}

.process-step:nth-child(3) .step-icon{
    background:#eef5ff;
}

.process-step:nth-child(5) .step-icon{
    background:#f4f1ff;
}

.process-step:nth-child(7) .step-icon{
    background:#fff5ea;
}

.process-step:nth-child(9) .step-icon{
    background:#eaf7ef;
}



/* DESKTOP OPTIMIZATION */

@media(max-width:1366px){

    .process-step{

        width:200px;

        padding:30px 20px;
    }

    .process-step h3{

        font-size:22px;
    }

    .process-arrow{

        font-size:var(--font-size-card-title);
    }
}

/* TABLET */

@media(max-width:991px){

    .pte-process-grid{

        flex-direction:column;
    }

    .process-arrow{

        transform:rotate(90deg);
    }

    .process-step{

        width:100%;
        max-width:420px;
    }
}

/* MOBILE */

@media(max-width:767px){

    .pte-process-section{

        padding:80px 0;
    }

    .process-step{

        padding:30px 20px;
    }

    .process-step h3{

        font-size:20px;
    }

    .step-icon{

        width:70px;
        height:70px;

        font-size:28px;
    }
}

/*=========================
PTE MODULES
=========================*/

.pte-modules-section{
    padding:110px 0;
    background:var(--color-white);
}

.pte-modules-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:60px;
}

/* CARDS */

.module-card{
    border:1px solid #e6ece8;
    border-radius:28px;
    padding:35px;
    transition:.35s;
}

/* SOFT GRADIENTS */

.module-card:nth-child(1){
    background:linear-gradient(180deg,#f7fbf8 0%,var(--color-primary-soft) 100%);
}

.module-card:nth-child(2){
    background:linear-gradient(180deg,#f7f9ff 0%,#eef3ff 100%);
}

.module-card:nth-child(3){
    background:linear-gradient(180deg,#f7fbfb 0%,#edf7f7 100%);
}

.module-card:nth-child(4){
    background:linear-gradient(180deg,#fffaf6 0%,#fdf1e7 100%);
}

.module-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(6,29,67,.08);
}

/* ICON */

.module-icon{
    width:75px;
    height:75px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:22px;

    background:#eaf7ef;
    color:var(--color-primary);

    font-size:30px;

    margin-bottom:24px;
}

/* CONSISTENT ICON BG COLORS */

.module-card:nth-child(1) .module-icon{
    background:#dff4e7;
}

.module-card:nth-child(2) .module-icon{
    background:#dde8ff;
}

.module-card:nth-child(3) .module-icon{
    background:#dff3f3;
}

.module-card:nth-child(4) .module-icon{
    background:#fde9d8;
}

/* TITLE */

.module-card h3{
    font-size:28px;
    color:var(--color-heading);
    margin-bottom:24px;
    font-weight:var(--font-weight-extrabold);
}

/* LIST */

.module-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.module-card ul li{
    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:12px;

    padding:10px 14px;

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

    border:1px solid rgba(23,133,74,.08);

    border-radius:50px;

    color:var(--color-text-muted);

    font-size:15px;
    font-weight:var(--font-weight-medium);

    backdrop-filter:blur(4px);
}

/* CHECK ICON */

.module-card ul li i{
    width:20px;
    height:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--color-primary);
    color:var(--color-white);

    font-size:10px;

    flex-shrink:0;
}

/* MOBILE */

@media(max-width:1199px){

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

@media(max-width:767px){

    .pte-modules-grid{
        grid-template-columns:1fr;
    }

    .module-card{
        padding:28px;
    }

    .module-card h3{
        font-size:var(--font-size-card-title);
    }
}

/*=========================
PTE RESULTS SECTION
=========================*/

.pte-results-section{
    padding:110px 0;
    background:var(--color-white);
}

/* HIGHLIGHT */

.results-highlight{

    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;

    align-items:center;

    margin-top:70px;
    margin-bottom:70px;
}

.highlight-content h3{

    font-size:var(--font-size-section-sm);
    line-height:1.15;

    color:var(--color-heading);

    margin-bottom:20px;

    font-weight:var(--font-weight-extrabold);
}

.highlight-content p{

    font-size:var(--font-size-body-lg);
    line-height:var(--line-height-body-loose);

    color:var(--color-text-muted);

    margin-bottom:35px;
}

/* STATS */

.highlight-stats{

    display:flex;
    gap:16px;

    flex-wrap:wrap;

    margin-bottom:35px;
}

.highlight-stats div{

    min-width:140px;

    padding:22px 20px;

    text-align:center;

    border-radius:20px;

    background:linear-gradient(
        180deg,
        var(--color-primary-pale) 0%,
        var(--color-primary-soft) 100%
    );

    border:1px solid #e3eee7;
}

.highlight-stats strong{

    display:block;

    font-size:32px;

    font-weight:var(--font-weight-extrabold);

    color:var(--color-primary);

    margin-bottom:6px;
}

.highlight-stats span{

    color:var(--color-text-muted);
    font-size:15px;
}

/* IMAGE */

.highlight-image{

    position:relative;
}

.highlight-image img{

    width:100%;
    display:block;

    border-radius:30px;

    box-shadow:
    0 20px 60px rgba(6,29,67,.08);
}

/* RESULTS GRID */

.results-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:24px;

    margin-top:40px;
}

.result-card{

    background:var(--color-white);

    border-radius:24px;

    overflow:hidden;

    border:1px solid #e8ecef;

    transition:.35s;
}

.result-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(6,29,67,.08);
}

.result-card img{

    width:100%;
    display:block;
}

/* BOTTOM CTA */

.results-bottom-cta{

    margin-top:80px;

    padding:45px 50px;

    border-radius:30px;

    background:
    linear-gradient(
        135deg,
        var(--color-heading) 0%,
        var(--color-primary) 100%
    );

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:30px;
}

.results-cta-content h3{

    color:var(--color-white);

    font-size:34px;

    margin-bottom:12px;

    font-weight:var(--font-weight-extrabold);
}

.results-cta-content p{

    color:rgba(255,255,255,.85);

    font-size:17px;

    line-height:var(--line-height-body);

    max-width:700px;
}

/* BUTTON */

.results-bottom-cta .primary-btn{

    background:var(--color-white);
    color:var(--color-heading);

    white-space:nowrap;
}

.results-bottom-cta .primary-btn:hover{

    transform:translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .results-highlight{

        grid-template-columns:1fr;
        gap:40px;
    }

    .results-grid{

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

    .results-bottom-cta{

        flex-direction:column;
        text-align:center;
    }

    .highlight-content h3{

        font-size:40px;
    }
}

@media(max-width:767px){

    .pte-results-section{
        padding:80px 0;
    }

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

    .highlight-content h3{
        font-size:34px;
    }

    .results-bottom-cta{
        padding:35px 25px;
    }

    .results-cta-content h3{
        font-size:28px;
    }

    .highlight-stats{
        justify-content:center;
    }
}

/*=================================
SPOKEN ENGLISH HERO
=================================*/

.spoken-hero{
    padding:60px 0 90px;
    background:var(--color-primary-pale);
}

.spoken-hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:40px;
    align-items:center;
}

/* Badge */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:12px 20px;

    background:#e8f5ec;
    border:1px solid #b7dcc3;

    border-radius:50px;

    color:var(--color-primary);

    font-size:15px;
    font-weight:var(--font-weight-bold);

    margin-bottom:25px;
}

/* Heading */

.hero-title{
    font-size:var(--font-size-hero-lg);
    line-height:0.95;
    letter-spacing:-2px;
    font-weight:var(--font-weight-extrabold);

    color:var(--color-heading);

    margin-bottom:25px;
}

.hero-title span{
    color:var(--color-primary);
    display:block;
}

/* Description */

.spoken-hero-content p{
    font-size:var(--font-size-body-lg);
    line-height:var(--line-height-body);
    color:var(--color-text-muted);

    max-width:650px;
}

/* Buttons */

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

.hero-buttons a{
    text-decoration:none;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:var(--color-primary);
    color:var(--color-white);

    padding:18px 32px;

    border-radius:16px;
    font-size:var(--font-size-body);
    font-weight:var(--font-weight-bold);

    transition:.3s;
}

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

.btn-outline{
    display:inline-flex;
    align-items:center;
    gap:10px;

    border:1px solid #d8e3dd;
    background:var(--color-white);

    color:var(--color-heading);

    padding:18px 32px;

    border-radius:16px;

    font-size:var(--font-size-body);
    font-weight:var(--font-weight-bold);
}

/* Pills */

.hero-pills{
    display:flex;
    flex-wrap:wrap;
    gap:14px;

    margin-top:35px;
}

.hero-pills span{
    display:flex;
    align-items:center;
    gap:8px;

    padding:12px 18px;

    border:1px solid #dce8e1;
    background:var(--color-white);

    border-radius:50px;

    color:var(--color-heading);

    font-size:15px;
    font-weight:var(--font-weight-semibold);
}

.hero-pills i{
    color:var(--color-primary);
}

/* Image */

.spoken-hero-image{
    position:relative;
    text-align:right;
}

.spoken-hero-image img{
    max-width:100%;
    display:block;
    margin-left:auto;
}

/* Floating Card */

.hero-floating-card{
    position:absolute;

    top:40px;
    right:0;

    background:var(--color-white);

    padding:18px 25px;

    border-radius:22px;

    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.hero-floating-card h3{
    font-size:48px;
    line-height:var(--line-height-tight);

    color:var(--color-primary);

    margin-bottom:8px;
}

.hero-floating-card span{
    color:var(--color-text-muted);
    font-size:var(--font-size-body-sm);
    font-weight:var(--font-weight-semibold);
}

/* Responsive */

@media(max-width:991px){

    .spoken-hero-grid{
        grid-template-columns:1fr;
    }

    .hero-title{
        font-size:var(--font-size-section-sm);
    }

    .spoken-hero-image{
        text-align:center;
    }

    .spoken-hero-image img{
        margin:auto;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-floating-card{
        display:none;
    }
}

/*========================================
COMMUNICATION BENEFITS
========================================*/

.communication-section{
    padding:110px 0;
    background:var(--gradient-light);
	margin-top:0;
    border-top:1px solid rgba(23,133,74,.08);
}

.communication-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:60px;
}

.communication-card{
    background:var(--color-white);

    border:1px solid var(--color-border);

    border-radius:28px;

    padding:35px;

    transition:.35s;

    text-align:center;
}

.communication-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-soft);
}

.communication-icon{
    width:80px;
    height:80px;

    margin:0 auto 24px;

    border-radius:24px;

    background:var(--color-primary-soft);

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--color-primary);

    font-size:30px;
}

.communication-card h3{
    font-size:28px;
    color:var(--color-heading);
    margin-bottom:14px;
}

.communication-card p{
    color:var(--color-text-muted);
    line-height:1.8;
}

@media(max-width:991px){

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

}

/*=================================
WHAT YOU WILL LEARN
=================================*/

.spoken-modules-section{
    padding:110px 0;
    background:var(--gradient-dark);
    position:relative;
    overflow:hidden;
}

.spoken-modules-section .section-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto;
}

.spoken-modules-section .section-heading h2{
    color:#fff;
}

.spoken-modules-section .section-heading p{
    color:rgba(255,255,255,.75);
}

.spoken-modules-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:60px;
}

.spoken-module-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;
    padding:35px;
    backdrop-filter:blur(10px);
    transition:.35s;
}

.spoken-module-card:hover{
    transform:translateY(-8px);
    border-color:rgba(23,133,74,.45);
}

.module-icon{
    width:78px;
    height:78px;
    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(23,133,74,.15);
    color:#35d26f;

    font-size:30px;

    margin-bottom:24px;
}

.spoken-module-card h3{
    color:#fff;
    font-size:28px;
    margin-bottom:22px;
}

.spoken-module-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.spoken-module-card ul li{
    color:rgba(255,255,255,.82);
    margin-bottom:14px;
    padding-left:28px;
    position:relative;
}

.spoken-modules-section .spoken-module-card ul li:before{
    content:"\f00c";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    position:absolute;
    left:0;
    color:#35d26f;
    font-size:13px;
}

@media(max-width:991px){

    .spoken-modules-grid{
        grid-template-columns:1fr;
    }

}

/*=================================
WHY CHOOSE DICTIONARY
=================================*/

.spoken-why-section{
    padding:110px 0;
    background:var(--gradient-dark);
}

.spoken-why-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

.spoken-why-content h2{
    color:#fff;
    margin:25px 0;
}

.spoken-why-content h2 span{
    color:var(--color-primary);
}

.spoken-why-content p{
    color:rgba(255,255,255,.75);
    margin-bottom:35px;
}

.spoken-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.spoken-feature{
    display:flex;
    align-items:center;
    gap:12px;

    padding:18px 22px;

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

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

    border-radius:16px;

    color:#fff;
    font-weight:600;
}

.spoken-feature i{
    color:#35d26f;
}

.spoken-stats-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.spoken-stat-card{
    background:#fff;

    border-radius:24px;

    padding:40px 20px;

    text-align:center;
}

.spoken-stat-card strong{
    display:block;

    font-size:52px;
    font-weight:800;

    color:var(--color-primary);

    margin-bottom:8px;
}

.spoken-stat-card span{
    color:var(--color-heading);
    font-weight:600;
}

@media(max-width:991px){

    .spoken-why-grid{
        grid-template-columns:1fr;
    }

    .spoken-features{
        grid-template-columns:1fr;
    }

}

/*=================================
TRAINING PROCESS
=================================*/

.spoken-process-section{
    padding:110px 0;
    background:var(--gradient-light);
    overflow:hidden;
}

.spoken-process-section .section-heading{
    max-width:850px;
    margin:0 auto;
}

.spoken-process-section .section-heading h2{
    line-height:1.1;
    margin-bottom:22px;
}

.spoken-process-section .section-heading p{
    max-width:820px;
    margin:0 auto;
    color:var(--color-text-muted);
    line-height:1.75;
}

.spoken-process-wrapper{
    margin-top:86px;

    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));

    gap:28px;
    align-items:stretch;
}

.spoken-process-card{
    position:relative;

    background:#fff;

    min-height:230px;
    padding:66px 28px 34px;

    border-radius:22px;

    text-align:center;

    box-shadow:var(--shadow-soft);

    border:1px solid var(--color-border);

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.spoken-process-section .process-number{
    position:absolute;

    top:22px;
    right:24px;

    font-size:14px;
    font-weight:800;

    color:var(--color-primary);

    opacity:.35;
}

.spoken-process-section .process-icon{
    position:absolute;
    left:50%;
    top:-52px;
    transform:translateX(-50%);

    width:104px;
    height:104px;

    margin:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(135deg,#23b965,var(--color-primary));

    border:8px solid #fff;

    color:#fff;

    font-size:36px;
    box-shadow:0 16px 34px rgba(23,133,74,.22);
    z-index:2;
}

.spoken-process-section .process-icon i{
    font-size:36px;
    color:#fff;
}

.spoken-process-card h3{
    font-size:28px;
    line-height:1.16;
    margin-bottom:15px;
    color:var(--color-heading);
}

.spoken-process-card p{
    color:var(--color-text);
    line-height:1.45;
}

.spoken-process-section .process-arrow{
    display:none;
}

@media(max-width:991px){

    .spoken-process-wrapper{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:78px 24px;
    }

}

@media(max-width:767px){

    .spoken-process-section{
        padding:80px 0;
    }

    .spoken-process-section .section-heading h2{
        font-size:36px;
    }

    .spoken-process-wrapper{
        grid-template-columns:1fr;
        margin-top:78px;
    }

    .spoken-process-card{
        min-height:auto;
        padding:62px 24px 30px;
    }

    .spoken-process-card h3{
        font-size:25px;
    }

}

/*=================================
AUTO SCROLL GALLERY
=================================*/

.spoken-gallery-section .section-heading{
    max-width:850px;
    margin:0 auto 60px;
}

.spoken-gallery-section{
    padding:110px 0;
    background:var(--gradient-dark);
    overflow:hidden;
}

.spoken-gallery-section .section-heading h2{
    color:#fff;
}

.spoken-gallery-section .section-heading h2 span{
    color:var(--color-primary);
}

.spoken-gallery-section .section-heading p{
    color:rgba(255,255,255,.75);
}

.gallery-slider{
    margin-top:70px;
    overflow:hidden;
	position:relative;
    
}

.gallery-slider::before,
.gallery-slider::after{
    content:'';
    position:absolute;
    top:0;
    width:180px;
    height:100%;
    z-index:2;
    pointer-events:none;
}

.gallery-slider::before{
    left:0;
    background:linear-gradient(
        to right,
        #061D43 0%,
        rgba(6,29,67,0) 100%
    );
}

.gallery-slider::after{
    right:0;
    background:linear-gradient(
        to left,
        #061D43 0%,
        rgba(6,29,67,0) 100%
    );
}

.gallery-track{
    display:flex;
    gap:24px;
    width:max-content;

    animation:scrollGallery 40s linear infinite;
}

.gallery-track:hover{
    animation-play-state:paused;
}

.gallery-item{
    width:420px;
    height:320px;
    flex-shrink:0;

    overflow:hidden;
    border-radius:28px;

    background:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.06);
}

@keyframes scrollGallery{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* ==========================
   GALLERY STATS STRIP
========================== */

.gallery-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:70px;
}

.gallery-stats > div{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.12);

    border-radius:24px;

    padding:30px 20px;

    text-align:center;

    transition:.35s ease;
}

.gallery-stats > div:hover{
    transform:translateY(-6px);

    background:rgba(255,255,255,0.12);
}

.gallery-stats strong{
    display:block;

    font-size:48px;
    line-height:1;

    font-weight:var(--font-weight-black);

    color:var(--color-primary);

    margin-bottom:12px;
}

.gallery-stats span{
    display:block;

    font-size:16px;

    color:rgba(255,255,255,0.85);

    font-weight:var(--font-weight-medium);

    letter-spacing:.3px;
}

/* Tablet */

@media(max-width:991px){

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

}

/* Mobile */

@media(max-width:767px){

    .gallery-stats{
        grid-template-columns:1fr;
        gap:16px;
        margin-top:50px;
    }

    .gallery-stats strong{
        font-size:40px;
    }

}

/* ==========================
FINAL CTA SECTION
========================== */

.spoken-cta-section{
    padding:110px 0;
    background:var(--gradient-light);
}

.spoken-cta-box{
    max-width:900px;
    margin:auto;

    text-align:center;

    background:#fff;

    border-radius:32px;

    padding:70px;

    border:1px solid var(--color-border);

    box-shadow:var(--shadow-soft);
	position:relative;
    overflow:hidden;
}

.spoken-cta-box::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(
        circle,
        rgba(23,133,74,.08) 0%,
        transparent 70%
    );
    top:-250px;
    left:50%;
    transform:translateX(-50%);
    pointer-events:none;
}

.spoken-cta-box h2{
    font-size:var(--font-size-section);

    line-height:var(--line-height-heading);

    color:var(--color-heading);

    font-weight:var(--font-weight-black);

    margin:24px 0;
}

.spoken-cta-box h2 span{
    color:var(--color-primary);
}

.spoken-cta-box p{
    max-width:760px;

    margin:auto;

    font-size:20px;

    line-height:1.9;

    color:var(--color-text);
}

.spoken-cta-features{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:16px;

    margin:40px 0;
}

.spoken-cta-features span{
    background:var(--color-primary-soft);

    color:var(--color-primary);

    padding:10px 18px;

    border-radius:50px;

    font-weight:600;
	font-size: 15px;
}

.spoken-cta-features i{
    margin-right:8px;
}

.spoken-cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.spoken-cta-buttons .hero-secondary-btn{
    background:#25d366;
    border:1px solid #20bd5a;
    color:#fff;
    box-shadow:0 14px 30px rgba(37,211,102,.22);
}

.spoken-cta-buttons .hero-secondary-btn i{
    color:#fff;
}

.spoken-cta-buttons .hero-secondary-btn:hover{
    background:#18b858;
    border-color:#18b858;
    color:#fff;
    transform:translateY(-3px);
}


.cta-stats{
    display:flex;
    justify-content:center;
    gap:60px;
    margin:40px 0;
}

.cta-stats strong{
    display:block;
    font-size:42px;
    font-weight:800;
    color:var(--color-primary);
    line-height:1;
}

.cta-stats span{
    color:var(--color-text);
    font-size:15px;
}

@media(max-width:767px){
    .cta-stats{
        gap:25px;
        flex-wrap:wrap;
    }

    .cta-stats strong{
        font-size:30px;
    }
}
@media(max-width:767px){

    .spoken-cta-box{
        padding:40px 25px;
    }

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

    .spoken-cta-buttons{
        flex-direction:column;
    }

}
/* =========================
COURSE PAGE BACKGROUND RHYTHM
Matches Spoken English light/dark gradient rhythm
========================= */
.ielts-trust-section,
.ielts-journey-section,
.why-pte-section,
.pte-modules-section{
    background:var(--gradient-dark);
    position:relative;
    overflow:hidden;
}

.ielts-trust-section .section-heading h2,
.ielts-journey-section .section-heading h2,
.why-pte-section .section-heading h2,
.pte-modules-section .section-heading h2{
    color:var(--color-white);
}

.ielts-trust-section .section-heading p,
.ielts-journey-section .section-heading p,
.why-pte-section .section-heading p,
.pte-modules-section .section-heading p{
    color:rgba(255,255,255,.76);
}

.ielts-modules-section,
.pte-process-section,
.results-section,
.ielts-cta{
    background:var(--gradient-light-soft);
    position:relative;
    overflow:hidden;
}

.ielts-journey-section .journey-step,
.pte-modules-section .module-card{
    background:linear-gradient(145deg,var(--color-white) 0%,#f4fbf7 58%,#eaf8f0 100%);
    border-color:rgba(255,255,255,.18);
}



/* =========================
RESULTS SECTION - SPOKEN GALLERY STYLE
Uses the Real Training / Real Classrooms visual style
========================= */
.results-section{
    padding:110px 0;
    background:var(--gradient-dark);
    overflow:hidden;
}

.results-section .section-heading{
    max-width:850px;
    margin:0 auto 60px;
}

.results-section .section-heading h2,
.results-section .results-content h3,
.results-section .highlight-content h3{
    color:var(--color-white);
}

.results-section .section-heading h2 span{
    color:var(--color-primary);
}

.results-section .section-heading p,
.results-section .results-content p,
.results-section .highlight-content p{
    color:rgba(255,255,255,.75);
}

.results-top,
.results-highlight{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
    border-radius:30px;
    padding:34px;
    backdrop-filter:blur(10px);
    box-shadow:var(--shadow-soft);
}

.result-stat,
.highlight-stats div{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    box-shadow:none;
}

.result-stat strong,
.highlight-stats strong{
    color:var(--color-primary);
}

.result-stat span,
.highlight-stats span{
    color:rgba(255,255,255,.85);
}

.featured-result,
.highlight-image img,
.result-card{
    border-radius:28px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.results-section .results-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:50px;
}

.results-section .result-card{
    height:320px;
    overflow:hidden;
    background:var(--color-white);
    border:0;
    transition:.4s;
}

.results-section .result-card img,
.featured-result img,
.highlight-image img{
   /* width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s;*/
	object-fit:contain;
    padding:0;
    background:var(--color-white);
}

.results-section .result-card:hover img,
.featured-result:hover img,
.highlight-image:hover img{
    transform:scale(1.06);
}

/*.results-bottom-cta{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
}*/

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

    .results-top,
    .results-highlight{
        padding:28px;
    }
}

@media(max-width:767px){
    .results-section{
        padding:80px 0;
    }

    .results-section .results-grid{
        grid-template-columns:1fr;
    }

    .results-section .result-card{
        height:280px;
    }
}


/* =========================
RESULTS SECTION - LIGHT SCROLLING STRIP
Final correction: light section with Spoken English-style scrolling images
========================= */
.results-section{
    padding:110px 0;
    background:var(--gradient-light-soft);
    overflow:hidden;
}

.results-section .section-heading h2,
.results-section .results-content h3,
.results-section .highlight-content h3{
    color:var(--color-heading);
}

.results-section .section-heading h2 span{
    color:var(--color-primary);
}

.results-section .section-heading p,
.results-section .results-content p,
.results-section .highlight-content p{
    color:var(--color-text-muted);
}

.results-top,
.results-highlight{
    background:var(--color-white);
    border:1px solid var(--color-border);
    box-shadow:var(--shadow-soft);
}

.result-stat,
.highlight-stats div{
    background:var(--color-primary-soft);
    border:1px solid rgba(23,133,74,.12);
    box-shadow:none;
}

.result-stat span,
.highlight-stats span{
    color:var(--color-text-muted);
}

.results-section .results-grid{
    display:flex;
    grid-template-columns:none;
    gap:24px;
    width:max-content;
    margin-top:50px;
    animation:scrollGallery var(--result-scroll-duration, 38s) linear infinite;
}

.results-section .results-grid:hover{
    animation-play-state:paused;
}

.results-section .result-card{
    width:400px;
    height:500px;
    /*flex-shrink:0;
    border:0;
    overflow:hidden;*/
	background:var(--color-white);
}

@media(max-width:991px){
    .results-section .results-grid{
        animation-duration:42s;
    }
}

@media(max-width:767px){
    .results-section .result-card{
        width:320px;
        height:250px;
    }
}


/* IELTS page only: show full result images in scrolling strip */
.ielts-course-page .results-section .result-card{
    width:400px;
    height:500px;
    background:var(--color-white);
}

.ielts-course-page .results-section .result-card img{
    object-fit:contain;
    padding:0;
    background:var(--color-white);
}

@media(max-width:767px){
    .ielts-course-page .results-section .result-card{
        width:320px;
        height:400px;
    }
}



/* Smooth result strip loop: no left gap and no restart jump */
.results-section .results-grid{
    --result-strip-gap:24px;
    gap:var(--result-strip-gap);
    margin-left:calc(50% - 50vw);
    animation-name:scrollResultsStrip;
    will-change:transform;
}

@keyframes scrollResultsStrip{
    0%{
        transform:translate3d(0,0,0);
    }

    100%{
        transform:translate3d(calc(-50% - (var(--result-strip-gap) / 2)),0,0);
    }
}

/*=====================================================
INTERVIEW BENEFITS
=====================================================*/

.interview-benefits-section{

    padding:110px 0;

    background:var(--dark-navy);

    position:relative;

    overflow:hidden;

}

/* Decorative Glow */

.interview-benefits-section::before{

    content:'';

    position:absolute;

    width:500px;

    height:500px;

    background:radial-gradient(circle,
    rgba(23,133,74,.12) 0%,
    transparent 70%);

    top:-180px;

    right:-120px;

}

.interview-benefits-section::after{

    content:'';

    position:absolute;

    width:450px;

    height:450px;

    background:radial-gradient(circle,
    rgba(255,255,255,.04) 0%,
    transparent 70%);

    bottom:-220px;

    left:-150px;

}

/* Heading */

.interview-benefits-section .section-heading{

    max-width:900px;

    margin:0 auto 70px;

    text-align:center;

    position:relative;

    z-index:2;

}

.interview-benefits-section .section-badge{

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

    color:#fff;

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

}

.interview-benefits-section .section-badge i{

    color:var(--color-primary);

}

.interview-benefits-section h2{

    color:#fff;

}

.interview-benefits-section h2 span{

    color:var(--color-primary);

}

.interview-benefits-section p{

    color:rgba(255,255,255,.75);

}

/* Grid */

.interview-benefits-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    position:relative;

    z-index:2;

}

/* Card */

.interview-benefit-card{

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

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

    border-radius:22px;

    padding:38px 30px;

    transition:.35s;

    backdrop-filter:blur(12px);

}

.interview-benefit-card:hover{

    transform:translateY(-10px);

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

    border-color:rgba(23,133,74,.35);

}

/* Icon */

.benefit-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    background:rgba(23,133,74,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:24px;

}

.benefit-icon i{

    font-size:30px;

    color:var(--color-primary);

}

/* Heading */

.interview-benefit-card h3{

    font-size:28px;

    font-weight:800;

    color:#fff;

    margin-bottom:15px;

    line-height:1.25;

}

/* Description */

.interview-benefit-card p{

    font-size:16px;

    line-height:1.9;

    color:rgba(255,255,255,.75);

}

/* Responsive */

@media(max-width:991px){

.interview-benefits-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.interview-benefits-section{

padding:80px 0;

}

.interview-benefits-grid{

grid-template-columns:1fr;

gap:20px;

}

.interview-benefit-card{

padding:30px 24px;

}

.interview-benefit-card h3{

font-size:24px;

}

}

/*====================================================
INTERVIEW PROCESS
====================================================*/

.interview-process-section{
    position:relative;
    overflow:hidden;
    padding:110px 0;
    background:var(--gradient-light);
}

/* Background Glow */

.interview-process-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    top:-140px;
    left:-140px;
    background:radial-gradient(circle, rgba(23,133,74,.08), transparent 70%);
}

.interview-process-section::after{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    right:-120px;
    bottom:-120px;
    background:radial-gradient(circle, rgba(6,29,67,.05), transparent 70%);
}

/*====================================
GRID
====================================*/

.interview-process-wrapper{
    position:relative;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:55px;
    margin-top:80px;
}

/* Dotted connector */

.interview-process-wrapper::before{

    content:"";

    position:absolute;

    left:12%;

    right:12%;

    top:54%;

    height:2px;

    border-top:2px dashed rgba(23,133,74,.45);

    z-index:0;
}

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

.process-step{
    position:relative;
    z-index:2;
}

.process-step{
    position:relative;
    overflow:visible;

    padding:120px 35px 40px;

    min-height:390px;

    background:#fff;
    border-radius:28px;
     border-bottom:5px solid var(--color-primary);

    box-shadow:
        0 18px 45px rgba(7,43,92,.10),
        0 6px 18px rgba(23,133,74,.08);

    text-align:center;
}

.process-step:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 60px rgba(6,29,67,.12);
}

/*====================================
CONNECTOR DOT
====================================*/

/*.process-step::after{

    content:"";

    position:absolute;

    width:18px;

    height:18px;

    border-radius:50%;

    background:#fff;

    border:4px solid var(--color-primary);

    right:-70px;

    top:86px;

    transform:translateY(-50%);

    z-index:3;
}

.process-step:last-child::after{
    display:none;
}

.interview-process-wrapper .process-step:last-child::after{
    display:none !important;
    content:none !important;
}*/


/*====================================
CONNECTOR DOT
====================================*/

.process-step:not(:nth-child(4))::after{
    content:"";
    position:absolute;
    top:212px;
    right:-74px;

    width:18px;
    height:18px;

    border-radius:50%;
    background:#9dffc6;
    border:4px solid var(--color-primary);
}

/*====================================
STEP BADGE
====================================*/

.process-number-interview{
    position:absolute;

    top:82px;

    left:50%;

    transform:translateX(-50%);

    padding:6px 16px;

    border-radius:30px;

    background:#eefaf3;

    color:var(--color-primary);

    font-size:12px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.6px;
}

/*====================================
ICON
====================================*/

.process-icon{
    position:absolute;

    left:50%;
    top:-54px;

    transform:translateX(-50%);

    width:100px;
    height:100px;

    border-radius:50%;

    background:linear-gradient(135deg,#23b965,var(--color-primary));

    border:8px solid #fff;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 15px 40px rgba(23,133,74,.22);

    z-index:5;
}

.process-icon i{
    font-size:40px;
    color:#fff;
}

/*====================================
HEADING
====================================*/

.process-step h3{
    font-size:24px;
    font-weight:800;
    line-height:1.2;
    color:var(--color-heading);
    margin-bottom:18px;
}

.process-step h3::after{
    content:"";
    display:block;
    width:55px;
    height:4px;
    margin:18px auto 0;
    border-radius:50px;
    background:var(--color-primary);
}

/*====================================
TEXT
====================================*/

.process-step p{
    font-size:16px;
    line-height:1.9;
    color:var(--color-text);
}

/* Hide old arrows */

.process-arrow{
    display:none;
}

/*====================================
RESULT STRIP
====================================*/

/*====================================
PROCESS RESULT STRIP
====================================*/

.process-result{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    width:max-content;

    margin:70px auto 0;

    padding:18px 34px;

    background:linear-gradient(135deg,#17854a,#24b864);

    border-radius:60px;

    color:#fff;

    font-size:18px;

    font-weight:700;

    box-shadow:0 18px 45px rgba(23,133,74,.22);

    position:relative;

    overflow:hidden;
}

.process-result::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        120deg,
        transparent 20%,
        rgba(255,255,255,.18) 50%,
        transparent 80%
    );

    transform:translateX(-100%);
    transition:1.2s;
}

.process-result:hover::before{
    transform:translateX(100%);
}

.process-result i{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#fff;

    color:var(--color-primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    flex-shrink:0;
}

.process-result span{

    color:#fff;

    letter-spacing:.3px;

    line-height:1.5;
}

@media(max-width:767px){

    .process-result{

        width:100%;

        padding:18px 22px;

        border-radius:24px;

        text-align:center;

        flex-direction:column;

        gap:12px;
    }
}

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

@media (max-width:1199px){

    .interview-process-wrapper{
        grid-template-columns:repeat(2,1fr);
        gap:90px 50px;
    }

    .interview-process-wrapper::before,
    .process-step::after{
        display:none;
    }

}

@media (max-width:767px){

    .interview-process-section{
        padding:80px 0;
    }

    .interview-process-wrapper{
        grid-template-columns:1fr;
        gap:85px;
    }

    .process-step{
        min-height:auto;
        padding:75px 28px 35px;
    }

    .process-icon{
        width:88px;
        height:88px;
        margin:-120px auto 25px;
    }

    .process-icon i{
        font-size:34px;
    }

    .process-step h3{
        font-size:28px;
    }

}


/*==================================================
MOCK INTERVIEW
==================================================*/

.mock-interview-section{

    background:#102b5d;

    overflow:hidden;

    padding:110px 0 0;
}


.mock-wrapper{

    display:grid;

    grid-template-columns:54% 46%;

    align-items:center;

    width:100%;
}

.mock-layout{
    display:grid;
    grid-template-columns:48% 52%;
    gap:20px;
    align-items:center;
}

.mock-content{

    max-width:650px;

    margin-left:auto;

    padding-left:15px;

    padding-right:60px;
}

/*==================================
LEFT CARDS
==================================*/

.mock-services{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin-top:55px;
}


.mock-visual{

    position:relative;

    display:flex;

    justify-content:flex-end;

    align-items:flex-end;

    overflow:hidden;
}
.mini-card{
    display:flex;
    flex-direction:column;

    padding:28px;

    border-radius:22px;
    min-height:220px;

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

    transition:.35s;
}

.mini-card > div:last-child{
    flex:1;
}

.mini-card:hover{
    transform:translateY(-8px);
    border-color:#2ad36f;
    background:rgba(255,255,255,.09);
    box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.mini-icon{
    width:64px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:linear-gradient(135deg,#2fd670,#17854a);

    color:#fff;
    font-size:24px;

    margin-bottom:18px;
}

.mini-card h4{
    margin:0 0 18px;

    color:#fff;
    font-size:28px;
    line-height:1.25;
}

.mini-card ul{
    margin:0;
    padding:0;
    list-style:none;
}

.mini-card li{
    position:relative;

    padding-left:22px;
    margin-bottom:12px;

    color:rgba(255,255,255,.88);
    font-size:17px;
    line-height:1.55;
}

.mini-card li i{
    color:#31d66f;
    font-size:14px;
    margin-top:5px;
    flex-shrink:0;
}
/*==================================
RIGHT IMAGE
==================================*/

.training-image-wrap{
    position:relative;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    overflow:hidden;
	
}

/* Image */
.mock-image{

    position:relative;

    width:100%;

    height:720px;
}

/*.training-image-wrap{
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.mock-image{
    position:relative;
    width:680px;
    height:560px;
    overflow:visible;
}*/

.mock-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    display:block;

    border-radius:45px 0 0 0;
}

/* Left Blend */

.mock-image::before{

    content:"";

    position:absolute;
    inset:0;

    border-radius:40px 0 0 40px;

    background:linear-gradient(
        90deg,
        rgba(16,43,93,.55) 0%,
        rgba(16,43,93,.22) 18%,
        rgba(16,43,93,.05) 42%,
        transparent 65%
    );

    pointer-events:none;
    z-index:2;
}

/* Left fade into section */

.mock-image::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    border-radius:40px;
    background:radial-gradient(
        circle at center,
        rgba(46,214,112,.15),
        transparent 72%
    );
    transform:scale(1.12);


    pointer-events:none;
}

/*==================================
FLOATING BADGES
==================================*/

.floating-card{

    position:absolute;

    z-index:50;

    background:#fff;

    padding:18px 28px;

    border-radius:60px;

    box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.floating-card i{

    width:34px;
    height:34px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#25bb61;

    color:#fff;

    font-size:14px;
}

.floating-card.top{

    top:110px;

    right:40px;
}

.floating-card.middle{

    top:320px;

    right:15px;
}

.floating-card.bottom{
    bottom:70px;
    right:-15px;
}

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

@keyframes floatImage{

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

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

}

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

@media(max-width:991px){

    .mock-layout{
        grid-template-columns:1fr;
    }

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

    .training-image-wrap{
        justify-content:center;
        margin-top:50px;
    }

    .mock-image{
        width:100%;
        max-width:520px;
        height:auto;
        transform:none;
    }

    .mock-image img{
        height:auto;
        border-radius:28px;
    }

    .floating-card{
        font-size:15px;
        padding:12px 18px;
    }

    .floating-card.top{
        top:40px;
        right:10px;
    }

    .floating-card.middle{
        top:170px;
        right:0;
    }

    .floating-card.bottom{
        bottom:30px;
        right:15px;
    }

}
/* Interview page: fine tune Real Interview Practice section */
.mock-interview-section{
    padding:110px 24px;
    background:var(--gradient-dark);
}

.mock-interview-section .mock-wrapper{
    max-width:1320px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1.02fr) minmax(420px,.98fr);
    gap:56px;
    align-items:center;
}

.mock-interview-section .mock-content{
    max-width:none;
    margin-left:0;
    padding:0;
}

.mock-interview-section .section-heading{
    text-align:left;
    max-width:680px;
    margin:0;
}

.mock-interview-section .section-tag{
    display:inline-flex;
    align-items:center;
    gap:9px;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.10);
    color:#7df0ad;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.mock-interview-section .section-heading h2{
    color:var(--color-white);
    font-size:52px;
    line-height:1.08;
    margin:0 0 18px;
}

.mock-interview-section .section-heading h2 span{
    color:#35d26f;
}

.mock-interview-section .section-heading p{
    color:rgba(255,255,255,.76);
    font-size:18px;
    line-height:1.75;
}

.mock-interview-section .mock-services{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
    margin-top:38px;
}

.mock-interview-section .mini-card{
    min-height:0;
    padding:24px;
    border-radius:18px;
    background:rgba(255,255,255,.075);
    border:1px solid rgba(255,255,255,.12);
}

.mock-interview-section .mini-icon{
    width:56px;
    height:56px;
    border-radius:16px;
    margin-bottom:16px;
}

.mock-interview-section .mini-card h4{
    font-size:22px;
    margin-bottom:14px;
}

.mock-interview-section .mini-card li{
    font-size:15px;
    line-height:1.45;
    margin-bottom:9px;
}

.mock-interview-section .mini-card li::before{
    content:'\f00c';
    font-family:'Font Awesome 6 Free';
    font-weight:900;
    position:absolute;
    left:0;
    top:.1em;
    color:#35d26f;
    font-size:12px;
}

.mock-interview-section .mini-card li i{
    display:none;
}

.mock-interview-section .mock-visual{
    overflow:visible;
    justify-content:center;
    align-items:center;
}

.mock-interview-section .mock-image{
    height:620px;
    border-radius:34px;
    overflow:visible;
    box-shadow:0 28px 70px rgba(0,0,0,.24);
}

.mock-interview-section .mock-image img{
    border-radius:34px;
    object-fit:cover;
}

.mock-interview-section .mock-image::before{
    border-radius:34px;
    background:linear-gradient(90deg, rgba(16,43,93,.24) 0%, transparent 42%);
}

.mock-interview-section .floating-card{
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 20px;
    color:var(--color-heading);
    font-weight:800;
    font-size:15px;
    white-space:nowrap;
}

.mock-interview-section .floating-card.top{
    top:58px;
    right:28px;
}

.mock-interview-section .floating-card.middle{
    top:50%;
    right:-18px;
    transform:translateY(-50%);
}

.mock-interview-section .floating-card.bottom{
    bottom:54px;
    right:30px;
}

@media(max-width:1199px){
    .mock-interview-section .mock-wrapper{
        grid-template-columns:1fr;
        gap:46px;
    }

    .mock-interview-section .section-heading{
        text-align:center;
        margin:0 auto;
    }

    .mock-interview-section .mock-services{
        max-width:820px;
        margin:36px auto 0;
    }

    .mock-interview-section .mock-image{
        max-width:760px;
        height:520px;
        margin:0 auto;
    }
}

@media(max-width:767px){
    .mock-interview-section{
        padding:80px 18px;
    }

    .mock-interview-section .section-heading h2{
        font-size:36px;
    }

    .mock-interview-section .section-heading p{
        font-size:16px;
    }

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

    .mock-interview-section .mock-image{
        height:auto;
        box-shadow:none;
    }

    .mock-interview-section .mock-image img{
        height:auto;
    }

    .mock-interview-section .floating-card{
        position:static;
        transform:none !important;
        margin-top:12px;
        width:max-content;
        max-width:100%;
    }
}

/*==================================================
DICTIONARY ADVANTAGES
==================================================*/

.dictionary-advantages-section{

    position:relative;

    padding:110px 0;

    background:var(--gradient-light);

    overflow:hidden;

}

/* Decorative Background */

.dictionary-advantages-section::before{

    content:"";

    position:absolute;

    left:-120px;
    top:-120px;

    width:420px;
    height:420px;

    background:
    radial-gradient(circle,
    rgba(23,133,74,.08),
    transparent 70%);

}

.dictionary-advantages-section::after{

    content:"";

    position:absolute;

    right:-100px;
    bottom:-100px;

    width:360px;
    height:360px;

    background:
    radial-gradient(circle,
    rgba(6,29,67,.05),
    transparent 70%);

}

/*==================================
GRID
==================================*/

.dictionary-advantages-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

    margin-top:65px;

    position:relative;

    z-index:2;

}

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

.dictionary-advantage-card{

    background:#fff;

    border:1px solid var(--color-border);

    border-radius:24px;

    padding:40px 28px;

    text-align:center;

    transition:.35s;

    box-shadow:0 18px 45px rgba(6,29,67,.05);

}

.dictionary-advantage-card:hover{

    transform:translateY(-10px);

    border-color:var(--color-primary);

    box-shadow:0 25px 60px rgba(6,29,67,.12);

}

/*==================================
ICON
==================================*/

.dictionary-advantage-icon{

    width:82px;
    height:82px;

    margin:0 auto 24px;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--color-primary),
        #33c46d
    );

    box-shadow:0 18px 40px rgba(23,133,74,.25);

    transition:.35s;

}

.dictionary-advantage-icon i{

    color:#fff;

    font-size:34px;

}

.dictionary-advantage-card:hover .dictionary-advantage-icon{

    transform:rotate(-5deg) scale(1.08);

}

/*==================================
TEXT
==================================*/

.dictionary-advantage-card h3{

    color:var(--color-heading);

    font-size:24px;

    font-weight:700;

    margin-bottom:16px;

    line-height:1.3;

}

.dictionary-advantage-card p{

    color:var(--color-text-muted);

    font-size:16px;

    line-height:1.8;

    margin:0;

}

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

@media(max-width:991px){

    .dictionary-advantages-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:767px){

    .dictionary-advantages-section{

        padding:80px 0;

    }

    .dictionary-advantages-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .dictionary-advantage-card{

        padding:32px 24px;

    }

    .dictionary-advantage-icon{

        width:72px;
        height:72px;

    }

    .dictionary-advantage-icon i{

        font-size:28px;

    }

}

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

.interview-cta-section{
    position:relative;
    overflow:hidden;
    background:#102b5d;
    padding:90px 0;
}

.interview-cta-section::before{

    content:"";

    position:absolute;

    width:520px;
    height:520px;

    left:-180px;
    top:-180px;

    background:radial-gradient(circle,
        rgba(23,133,74,.18),
        transparent 70%);

}

.interview-cta-wrapper{
    display:grid;
    grid-template-columns:55% 42%;
    align-items:center;
    gap:0px;
    /*position:relative;*/
}


.interview-cta-content{
    position:relative;
    z-index:5;
}

.interview-cta-content h2{

    color:#fff;

}

.interview-cta-content h2 span{

    color:#4be087;

}

.interview-cta-content p{

    color:rgba(255,255,255,.78);

    margin-top:22px;

    line-height:1.9;

    max-width:620px;

}

.interview-cta-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:40px 0;

}

.cta-highlight{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    font-weight:600;

}

.cta-highlight i{

    color:#4be087;

    font-size:18px;

}

/* IMAGE */

.interview-cta-image{
    position:relative;
    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
    overflow:visible;
}

.interview-cta-image img{
    display:block;
    width:620px;
    max-width:none;
    height:auto;

    margin-right:-90px;      /* pushes image to page edge */
    margin-bottom:-90px;     /* sits on bottom of section */
}

/* Badge */

.cta-badge{
    position:absolute;
    left:20px;
    bottom:40px;

    /*background:#fff;*/
    border-radius:22px;

    padding:18px 28px;

    display:flex;
    align-items:center;
    gap:12px;

    box-shadow:0 18px 40px rgba(0,0,0,.18);

    z-index:5;
}


.cta-badge strong{
    color:#1db954;
    font-size:54px;
    line-height:1;
}

.cta-badge span{
    color:#16356f;
    font-weight:700;
}

.cta-stats{
    display:flex;
    gap:45px;
    margin:35px 0;
}

.stat-item h3{
    margin:0;
    font-size:38px;
    color:#37dd7f;
    font-weight:800;
}

.stat-item span{
    display:block;
    margin-top:6px;
    color:rgba(255,255,255,.75);
    font-size:15px;
}


@media(max-width:991px){

    .interview-cta-wrapper{

        grid-template-columns:1fr;

        text-align:center;

    }

    .interview-cta-highlights{

        grid-template-columns:1fr;

    }

    .interview-cta-image{

        text-align:center;

        margin-top:40px;

    }

    .cta-badge{

        left:50%;

        transform:translateX(-50%);

    }

}

/* Interview page: improved final CTA */
.interview-cta-section{
    position:relative;
    overflow:hidden;
    padding:110px 0;
    background:linear-gradient(135deg,#061d43 0%,#0d2c5e 58%,#17854a 100%);
}

.interview-cta-section::before{
    content:'';
    position:absolute;
    width:520px;
    height:520px;
    right:-180px;
    top:-220px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(53,210,111,.28),transparent 68%);
    pointer-events:none;
}

.interview-cta-section::after{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    left:-160px;
    bottom:-180px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(255,255,255,.12),transparent 70%);
    pointer-events:none;
}

.interview-cta-section .container{
    position:relative;
    z-index:1;
}

.interview-cta-wrapper{
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
    gap:54px;
    align-items:center;
    padding:56px 64px;
    border-radius:34px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    box-shadow:0 30px 80px rgba(0,0,0,.22);
    backdrop-filter:blur(12px);
    overflow:hidden;
}

.interview-cta-content .section-badge{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:20px;
    background:rgba(255,255,255,.12);
    color:#9df4bf;
    border:1px solid rgba(255,255,255,.14);
}

.interview-cta-content h2{
    max-width:720px;
    margin:0 0 18px;
    color:var(--color-white);
    font-size:58px;
    line-height:1.05;
    font-weight:var(--font-weight-black);
}

.interview-cta-content h2 span{
    display:block;
    color:#35d26f;
}

.interview-cta-content p{
    max-width:720px;
    margin:0;
    color:rgba(255,255,255,.78);
    font-size:18px;
    line-height:1.75;
}

.interview-cta-section .cta-stats{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
    margin:32px 0;
}

.interview-cta-section .stat-item{
    padding:20px 18px;
    border-radius:18px;
    background:rgba(255,255,255,.09);
    border:1px solid rgba(255,255,255,.13);
}

.interview-cta-section .stat-item h3{
    margin:0;
    color:#7df0ad;
    font-size:34px;
    line-height:1;
}

.interview-cta-section .stat-item span{
    display:block;
    margin-top:8px;
    color:rgba(255,255,255,.78);
    font-size:14px;
    line-height:1.35;
}

.interview-cta-highlights{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:34px;
}

.interview-cta-highlights .cta-highlight{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 15px;
    border-radius:999px;
    background:rgba(255,255,255,.10);
    color:rgba(255,255,255,.9);
    border:1px solid rgba(255,255,255,.12);
    font-weight:700;
    font-size:14px;
}

.interview-cta-highlights .cta-highlight i{
    color:#35d26f;
}

.interview-cta-section .hero-btns{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:0;
}

.interview-cta-section .hero-primary-btn,
.interview-cta-section .hero-secondary-btn{
    min-height:56px;
    padding:0 24px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-weight:800;
}

.interview-cta-section .hero-secondary-btn{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.22);
    color:var(--color-white);
}

.interview-cta-image{
    align-self:stretch;
    justify-content:center;
    align-items:flex-end;
    min-height:420px;
}

.interview-cta-image img{
    width:min(100%,520px);
    max-width:100%;
    margin:0;
    filter:drop-shadow(0 24px 45px rgba(0,0,0,.24));
}

.interview-cta-image .cta-badge{
    left:22px;
    bottom:22px;
    padding:16px 20px;
    border-radius:18px;
    background:rgba(6,29,67,.72);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(12px);
    box-shadow:0 18px 38px rgba(0,0,0,.22);
    gap:14px;
    white-space:nowrap;
}

.interview-cta-image .cta-badge strong{
    font-size:38px;
    color:#35d26f;
}

.interview-cta-image .cta-badge span{
    color:#fff;
    font-size:14px;
    font-weight:800;
    line-height:1.2;
}

@media(max-width:991px){
    .interview-cta-section{
        padding:90px 0;
    }

    .interview-cta-wrapper{
        grid-template-columns:1fr;
        padding:44px 30px;
        text-align:center;
    }

    .interview-cta-content h2,
    .interview-cta-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .interview-cta-highlights,
    .interview-cta-section .hero-btns{
        justify-content:center;
    }

    .interview-cta-image{
        min-height:auto;
        margin-top:10px;
    }

    .interview-cta-image img{
        width:min(100%,430px);
    }
}

@media(max-width:767px){
    .interview-cta-wrapper{
        padding:34px 20px;
        border-radius:24px;
    }

    .interview-cta-content h2{
        font-size:36px;
    }

    .interview-cta-content p{
        font-size:16px;
    }

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

    .interview-cta-section .hero-primary-btn,
    .interview-cta-section .hero-secondary-btn{
        width:100%;
    }

    .interview-cta-image .cta-badge{
        position:static;
        transform:none;
        margin:18px auto 0;
        width:max-content;
        max-width:100%;
    }
}

/* Interview CTA image: anchor visual to bottom */
.interview-cta-wrapper{
    align-items:stretch;
}

.interview-cta-image{
    position:relative;
    align-self:stretch;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    min-height:100%;
}

.interview-cta-image img{
    align-self:flex-end;
    display:block;
    margin-top:auto;
    margin-bottom:-56px;
}

.interview-cta-image .cta-badge{
    bottom:34px;
}

@media(max-width:991px){
    .interview-cta-wrapper{
        align-items:center;
    }

    .interview-cta-image{
        align-self:center;
        min-height:auto;
    }

    .interview-cta-image img{
        margin-bottom:0;
    }
}

/* Shared header courses dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-toggle i {
    font-size: 11px;
    transition: transform 0.3s;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    min-width: 240px;
    padding: 10px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(23,133,74,0.14);
    border-radius: 16px;
    box-shadow: 0 22px 50px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: 0.25s ease;
}

.nav-dropdown-menu a {
    display: flex;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    white-space: nowrap;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: #f3fbf6;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.cta-buttons .primary-btn{

    min-width:220px;

    justify-content:center;

    background:#148345;

    color:var(--color-white);

    border:none;
}

.cta-buttons .primary-btn:hover{

    background:#0f6f3a;

    color:var(--color-white);
}

.cta-buttons .primary-btn i{

    color:var(--color-white);
}


/* PTE journey card alignment fix */
.pte-process-section {
    overflow: visible;
}

.pte-process-section .section-heading {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

.pte-process-section .pte-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    align-items: stretch;
    gap: 22px;
    max-width: 1180px;
    margin: 52px auto 0;
    padding: 0 20px;
}

.pte-process-section .process-arrow {
    display: none;
}

.pte-process-section .process-step::after {
    content: none;
    display: none;
}
.pte-process-section .process-step {
    width: auto;
    min-height: 300px;
    padding: 34px 22px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 5px solid var(--color-primary);
}

.pte-process-section .step-icon {
    flex: 0 0 auto;
    margin: 16px auto 26px;
}

.pte-process-section .process-step h3 {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 18px;
    text-align: center;
    width: 100%;
}

.pte-process-section .process-step h3::after {
    content: none;
    display: none;
}

.pte-process-section .process-step p {
    max-width: 170px;
    margin: 0 auto;
    text-align: center;
}

@media(max-width:1200px) {
    .pte-process-section .pte-process-grid {
        grid-template-columns: repeat(3, minmax(190px, 1fr));
    }
}

@media(max-width:768px) {
    .pte-process-section .pte-process-grid {
        grid-template-columns: 1fr;
        max-width: 430px;
        margin-top: 38px;
    }

    .pte-process-section .process-step {
        min-height: auto;
        padding: 30px 22px;
    }

    .pte-process-section .process-step h3 {
        min-height: auto;
    }
}



/* PTE results CTA contrast fix */
.pte-results-section .results-bottom-cta {
    background: linear-gradient(135deg, var(--color-heading) 0%, var(--color-primary) 100%);
    border: none;
    box-shadow: 0 24px 60px rgba(6,29,67,.16);
}

.pte-results-section .results-cta-content h3 {
    color: var(--color-white);
}

.pte-results-section .results-cta-content p {
    color: rgba(255,255,255,.88);
}

.pte-results-section .results-bottom-cta .primary-btn {
    background: var(--color-white);
    color: var(--color-heading);
}


/*=========================================
CONTACT CONNECT
=========================================*/

.contact-hero-section{

padding:140px 0 110px;

background:
linear-gradient(135deg,#0b2858,#123b79);

text-align:center;

color:#fff;

}

.contact-hero-content{

max-width:760px;

margin:auto;

}

.contact-hero-content h1{

font-size:60px;

margin:25px 0;

}

.contact-hero-content h1 span{

color:#3edc7b;

}

.contact-hero-content p{

font-size:20px;

line-height:1.8;

opacity:.9;

margin-bottom:40px;

}

.contact-hero-buttons{

display:flex;

justify-content:center;

gap:18px;

flex-wrap:wrap;

}

.contact-connect-section{
    padding:110px 0;
    background:#f8fbff;
}

.contact-connect-wrapper{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:50px;
    margin-top:70px;
    align-items:start;
}

/* LEFT */

.contact-details-panel{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-info-card{
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding:26px;
    background:#fff;
    border-radius:20px;
    border:1px solid #edf2f7;
    transition:.35s;
    box-shadow:0 12px 30px rgba(20,40,80,.05);
}

.contact-info-card:hover{
    transform:translateY(-6px);
    border-color:#1db954;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.contact-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    background:linear-gradient(135deg,#2fd670,#17854a);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    flex-shrink:0;
}

.contact-info-card h4{
    margin-bottom:6px;
    color:#102b5d;
    font-size:22px;
}

.contact-info-card p{
    margin-bottom:6px;
    color:#222;
    font-weight:600;
}

.contact-info-card span{
    color:#6d7b91;
    font-size:15px;
}

/* RIGHT */

.contact-form-panel{
    background:#fff;
    padding:45px;
    border-radius:26px;
    box-shadow:0 20px 60px rgba(0,0,0,.06);
}

.contact-form-panel h3{
    font-size:32px;
    color:#102b5d;
    margin-bottom:35px;
}

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

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea{

    width:100%;
    padding:16px 18px;
    border-radius:14px;
    border:1px solid #dfe6ee;
    font-size:16px;
    font-family:inherit;
    transition:.3s;
    outline:none;
}

.contact-form-panel textarea{
    margin:22px 0 30px;
    resize:none;
}

.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus{
    border-color:#1db954;
    box-shadow:0 0 0 4px rgba(29,185,84,.12);
}

.contact-form-panel button{
    border:none;
    cursor:pointer;
}

/* Responsive */

@media(max-width:991px){

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

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

.contact-form-panel{
padding:30px;
}

}

.contact-map-section{

padding:100px 0;

background:#fff;

}

.map-wrapper{

margin-top:50px;

overflow:hidden;

border-radius:28px;

box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.map-wrapper iframe{

width:100%;

height:520px;

border:0;

display:block;

}

.contact-faq-section{

padding:110px 0;

background:#f8fbff;

}

.faq-list{

max-width:900px;

margin:60px auto 0;

display:flex;

flex-direction:column;

gap:20px;

}

.faq-item{

background:#fff;

padding:28px 35px;

border-radius:18px;

box-shadow:0 12px 35px rgba(0,0,0,.05);

border:1px solid #edf2f7;

}

.faq-item h3{

font-size:22px;

margin-bottom:15px;

color:#102b5d;

}

.faq-item p{

color:#6f7d92;

line-height:1.8;

}

.contact-final-cta{
    position:relative;
    overflow:hidden;
    padding:92px 0;
    background:linear-gradient(135deg,#0f2f67 0%,#102b5d 48%,#061a3d 100%);
}

.contact-final-cta::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 16% 20%, rgba(52,211,153,.24), transparent 30%),
        radial-gradient(circle at 82% 70%, rgba(255,255,255,.12), transparent 28%);
    pointer-events:none;
}

.contact-final-box{
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:44px;
    padding:52px 58px;
    border-radius:24px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.16);
    box-shadow:0 28px 70px rgba(0,0,0,.24);
    color:#fff;
    backdrop-filter:blur(14px);
}


.contact-final-content{
    max-width:680px;
}

.contact-final-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 14px;
    margin-bottom:18px;
    border-radius:999px;
    background:rgba(52,211,153,.14);
    border:1px solid rgba(52,211,153,.34);
    color:#bfffe1;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.4px;
}

.contact-final-box h2{
    max-width:640px;
    margin:0 0 16px;
    color:#ffffff;
    font-size:clamp(34px,3vw,48px);
    line-height:1.08;
    font-weight:900;
}

.contact-final-box p{
    max-width:620px;
    margin:0;
    color:rgba(255,255,255,.82);
    font-size:18px;
    line-height:1.65;
}

.contact-final-buttons{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:16px;
    flex-wrap:wrap;
    min-width:440px;
}

.contact-final-buttons .hero-primary-btn,
.contact-final-buttons .hero-secondary-btn{
    min-width:210px;
    justify-content:center;
}

.contact-final-buttons .hero-secondary-btn{
    color:#ffffff;
    border-color:rgba(255,255,255,.32);
    background:rgba(255,255,255,.08);
}
@media (max-width: 980px){
    .contact-final-box{
        flex-direction:column;
        align-items:flex-start;
        padding:42px;
    }

    .contact-final-buttons{
        width:100%;
        min-width:0;
        justify-content:flex-start;
    }
}

@media (max-width: 640px){
    .contact-final-cta{
        padding:64px 0;
    }

    .contact-final-box{
        padding:30px 22px;
        border-radius:18px;
    }

    .contact-final-box h2{
        font-size:32px;
    }

    .contact-final-box p{
        font-size:16px;
    }

    .contact-final-buttons .hero-primary-btn,
    .contact-final-buttons .hero-secondary-btn{
        width:100%;
        min-width:0;
    }
}