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

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 15px;
}

.company-name {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00A0E9, #E100FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Fallback */
    letter-spacing: 1px;
    padding: 5px 0;
    /* Adjust for line-height cropping */
}

header nav ul {
    display: flex;
    list-style: none;
}

header nav ul li {
    margin-left: 30px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #00A0E9;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('img/star_bg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 18px;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    color: #eee;
}

/* Advantage Section */
.advantage {
    padding: 150px 0 100px;
    background: url('img/second_bg.jpg') no-repeat center center/cover;
    text-align: center;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.card {
    background: #fff;
    padding: 99px 34px 40px;
    border-radius: 5px;
    box-shadow: 0 11px 35px rgba(0, 0, 0, 0.05);
    width: 375px;
    position: relative;
    transition: transform 0.3s;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
}

.icon-circle {
    position: absolute;
    top: -50px;
    left: 50%;
    margin-left: -54.5px;
    width: 109px;
    height: 109px;
    border-radius: 50%;
    background: #FC6E51;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle img {
    height: 50px;
}

.card h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 36px;
    margin-bottom: 20px;
}

.card p {
    font-size: 14px;
    line-height: 24px;
    color: #666;
}

/* Performance Section */
.performance {
    padding: 100px 0;
    background: url('img/third_bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
}

.perf-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 60px;
}

.perf-item {
    max-width: 300px;
}

.perf-item img {
    height: 60px;
    margin-bottom: 25px;
}

.perf-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.perf-item p {
    font-size: 16px;
    color: #eee;
    line-height: 1.8;
}

/* Get Started Section */
.get-started {
    padding: 100px 0;
    background: url('img/under_bg.jpg') no-repeat center center/cover;
    text-align: center;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.contact-card {
    background: #fff;
    padding: 99px 34px 40px;
    border-radius: 5px;
    box-shadow: 0 11px 35px rgba(0, 0, 0, 0.05);
    width: 375px;
    position: relative;
    text-align: center;
}

.contact-card .icon-circle {
    background: #00A0E9;
    /* Blue for contact icons */
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #00A0E9;
}

.contact-card .email {
    display: block;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    font-weight: 700;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: url('img/advertisers_bg.jpg') no-repeat center center/cover;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.partner-grid img {
    max-width: 150px;
    filter: grayscale(100%) brightness(1.2);
    opacity: 0.8;
    transition: all 0.3s;
}

.partner-grid img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #111;
    color: #666;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}

footer .icp {
    margin-top: 10px;
}

footer a {
    color: #666;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .cards,
    .perf-grid,
    .contact-cards {
        flex-direction: column;
    }

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