/* CSS Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.page-banner {
    display: none;
}
html{
    scroll-behavior:smooth;
}
/*==================================================
SSAM Landing Page
Author: ChatGPT
==================================================*/
body {
    min-height: unset;
    overflow-x: visible;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
   
    font-family: 'Readex Pro', sans-serif;
}
/*==============================
COLORS
===============================*/
:root {
    --navy: #081a33;
    --gold: #c89a4b;
    --gold-dark: #b8842d;
    --white: #fff;
    --gray: #f7f7f7;
    --text: #333;
    --border: #e8e8e8;
    --shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

/*==============================
CONTAINER
===============================*/
.container {
    width: 100%;
    max-width: 1365px;
    margin: 0 auto;
    padding: 0 20px;
}

/*==============================
BUTTONS
===============================*/
.btn {
    display: inline-block;
    padding: 18px 34px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .35s;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(200, 154, 75, .28);   font-family: 'Readex Pro', sans-serif;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(200, 154, 75, .45);
    background: var(--gold-dark);
    color: var(--white);
    text-decoration: none;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 500;
    border-radius: 4px;
    transition: .35s;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: transparent;
    text-decoration: none;   font-family: 'Readex Pro', sans-serif;
}

.btn-outline:hover {
    background: #fff;
    color: var(--navy);
    text-decoration: none;
}

/*==============================
HEADER
===============================*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 22px 0;
    transition: .4s;
    background: #f2f2f2;
}

.header.scrolled {
    background: rgb(255 255 255 / 97%);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .25);
    padding: 15px;
}
.scrolled .logo img {
    height: 50px;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1365px;
    padding: 0 20px;
}

.logo img {
    height: 58px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 40px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: #000000;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: .4px;
    transition: .3s;
    text-decoration: none;
    text-transform: uppercase;
        font-family: 'Readex Pro', sans-serif;
}

nav a:hover {
    color: var(--gold);
    text-decoration: none;
}

/* Hide default header */
header:not(.header) {
    display: none;
}

#page-wrapper header.header {
    display: block;
}

/*==============================
HERO
===============================*/
.hero {
    position: relative;
    padding: 180px 0 120px;
    background: var(--navy);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(5, 18, 38, .94) 0%,
            rgba(5, 18, 38, .82) 45%,
            rgba(5, 18, 38, .55) 100%);
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}
.hero-grid:before,
.hero-grid:after{
    display: none;
}
.hero-content {
    color: var(--white);
}

.subheading {
    display: inline-block;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 18px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Readex Pro', sans-serif;
}
.hero h1 {
        font-size: 72px;
    line-height: .96;
    letter-spacing: -2px;
    max-width: 720px;
    color: var(--white);
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;
    color: var(--gold);
}

.hero p {
    font-size: 23px;
    max-width: 680px;
    line-height: 1.8;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, .9);
}



.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    text-align: right;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    max-width: 470px;
    margin-left: auto;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-18px);
    }
    100% {
        transform: translateY(0px);
    }
}
/*==============================
TRUSTED LOGOS
===============================*/

.trusted-logos{
    background:#fafafa;
}

.logo-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
    align-items:center;
}

.logo-item{
    background:#fff;
    border:1px solid #ececec;
    padding:35px;
    text-align:center;
    transition:.35s;
}

.logo-item:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.logo-item img{
    max-width:150px;
    width:100%;
    opacity:.65;
    transition:.35s;
}

.logo-item:hover img{
    opacity:1;
}

/*==============================
COUNTERS
===============================*/

.stats{

background:#081a33;
color:#fff;
position:relative;

}

.stats::before{

content:"";
position:absolute;
left:0;
top:0;
width:100%;
height:100%;
background:linear-gradient(rgba(8,26,51,.95),rgba(8,26,51,.95));

}

.stats .container{

position:relative;
z-index:2;

}

.stats h2{

color:#fff;

}

.stats-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
margin-top:60px;

}

.stat-box{

text-align:center;

}

.stat-box h3{

font-size:60px;
color:var(--gold);
margin-bottom:15px;

}

.stat-box p{

font-size:18px;
color:#ddd;

}
.stat-box {
    opacity: 0;
    transform: translateY(40px);
    transition: all .6s ease;
}

.stat-box.active {
    opacity: 1;
    transform: translateY(0);
}

.stat-box.hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}
/*==============================
TESTIMONIALS
===============================*/

.testimonials{

background:#f8f8f8;

}

.testimonial-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
margin-top:60px;

}

.testimonial{

background:#fff;
padding:40px;
border:1px solid #ececec;
transition:.35s;

}

.testimonial:hover{

transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.testimonial p{

font-size:18px;
line-height:1.8;
font-style:italic;
color:#555;

}

.author{

margin-top:30px;
font-size:20px;
font-weight:700;
color:var(--navy);

}

.position{

color:#888;
margin-top:6px;
font-size:15px;

}
/*==============================
SECTION TITLE
===============================*/
section {
    padding: 110px 0;
}

.section-subtitle {
    display: block;
    text-align: center;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 15px;    font-family: 'Readex Pro', sans-serif;
    text-transform: uppercase;
}

section h2 {
    text-align: center;
    font-size: 46px;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.2;
    max-width: 880px;
    margin: 0 auto 30px;
}

section> .container>p {
    text-align: center;
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 25px;
    color: var(--text);
}

/*==============================
WHY
===============================*/
.why {
    background: #fff;
}

.why p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 18px;
    color: var(--text);
    line-height: 1.8;
}

/*==============================
PROCESS
===============================*/
.process {
    background: #eeeeee;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 70px;
    position: relative;
}

.process-item {
    background: #fff;
    border-radius: 14px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .35s;
    position: relative;
}

.process-item:hover {
    transform: translateY(-8px);
}

.process-item .icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.process-item span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #929292;
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: absolute;
    font-size: 120px;
    opacity: 0.1;
    top: -68px;
    left: -26px;
}

.process-item h3 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 22px;
}

.process-item p {
    color: #666;
    font-size: 17px;
    line-height: 1.6;
}

/*==============================
AUDIENCE
===============================*/
.audience {
    background: #fafafa;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.audience-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .35s;
    text-align: center;
}

.audience-card:hover {
    transform: translateY(-8px);
}

.audience-card .icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.audience-card h3 {
    color: var(--navy);
    font-size: 28px;
    margin-bottom: 25px;
}

.audience-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.audience-card ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text);
    font-size: 17px;
    border-bottom: 1px solid var(--border);
}

.audience-card ul li:last-child {
    border-bottom: none;
}

.audience-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/*==============================
CTA
===============================*/
.cta {
    background: linear-gradient(135deg, var(--navy), #0d2c57);
    padding: 80px 0;
}

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-content h2 {
    color: #fff;
    text-align: left;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-contact {
    text-align: center;
    padding: 30px 40px;
    background: rgba(255, 255, 255, .05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.cta-contact p {
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    margin-bottom: 10px;
}

.cta-contact a {
    color: var(--gold);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.cta-contact a:hover {
    color: var(--white);
}

.cta .btn {
    background: var(--gold);
    color: var(--white);
}

.cta .btn:hover {
    background: var(--gold-dark);
}

/*==============================
ANIMATIONS
===============================*/
.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all .8s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/*==============================
RESPONSIVE
===============================*/
@media(max-width:1200px) {
    .hero-grid {
        grid-template-columns: 1fr ;
        text-align: center;
        gap: 40px;
    }

    .hero-image {
        margin-top: 40px;
        text-align: center;
    }

    .hero h1 {
        font-size: 58px;
        margin: 0 auto 30px;
    }

    .hero p {
        margin: 0 auto 40px;
        max-width: 620px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 60px auto 0;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        text-align: center;
    }

    .cta-content p {
        margin: 0 auto 30px;
    }
}

@media(max-width:992px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 20px;
    }
}

@media(max-width:768px) {
    .header {
        padding: 18px 0;
    }

    nav {
        display: none;
    }

    .hero {
        padding: 150px 0 90px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 80px 0;
    }

    section h2 {
        font-size: 34px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .process-item {
        padding: 30px 20px;
    }

    .audience-card {
        padding: 35px 25px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta-contact {
        padding: 20px 30px;
        width: 100%;
    }

    .btn {
        padding: 15px 28px;
        font-size: 14px;
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 17px;
    }

    .btn,
    .btn-outline {
        width: 100%;
    }

    section h2 {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .audience-card h3 {
        font-size: 24px;
    }

    .hero-image img {
        max-width: 100%;
    }
}