@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #020A1E;
    margin: 0;
}

h1, h2, h3 {
    color: #CCC;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Video Header Section */
.video-header {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    margin-bottom: 0px;
}



.video-header .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.video-header .video-overlay h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0px;
    color: #FFF;
}

.video-header .video-overlay p {
    font-size: 1.5rem;
}

/* PPC Landing Section */
.ppc-landing-section {
    padding: 35px 0;
}

.ppc-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    background-color: #031A2E;
}

.text-content-box, 
.form-container, 
.logo-container, 
.explainer-box {
    background-color: #031A2E;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.text-content-box {
    flex: 2;
    min-width: 300px;
    background-color: #031A2E;
}

.text-content-box h1, .text-content-box h2 {
    font-weight: 600;
    margin-bottom: 20px;
}

.text-content-box p, 
.text-content-box ul {
    line-height: 1.8;
    color: #FFF;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #FFF;
}

.benefits-list li i {
    color: #2193b0;
    margin-right: 10px;
}

.form-container {
    flex: 1;
    min-width: 300px;
    background-color: #031A2E;
}

.form-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #FFF;
}

.form-group input,
.form-group textarea {
    width: 80%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-navigation {
    text-align: center;
}

.form-navigation button {
    background-color: #2193b0;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.logo-container h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

.logo-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
}

.logo-slider img {
    min-width: 100px;
    max-width: 150px;
    margin: 0 auto;
}

.gradient-divider {
    height: 2px;
    background-image: linear-gradient(to right, #2193b0, #6dd5ed);
    margin: 40px 0;
}

.explainer-box {
    text-align: center;
    font-size: 1rem;
    color: #FFF;
}

.image-box img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

.header {
    color: #fff;
    padding: 0px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header .nav-container {
    display: flex;
    align-items: center;
    margin: 0px;
}

.header .nav-container .logo img {
    max-height: 0px;
}

.header .nav-container .nav {
    display: flex;
    margin: 0px;
}

.header .nav-container .nav a {
    color: #fff;
    font-weight: 600;
    padding: 6px 0px;
    border-radius: 4px;
    transition: background-color 0.3s;
}




@media (max-width: 768px) {
    .ppc-content {
        flex-direction: column;
    }

    .text-content-box,
    .form-container,
    .logo-container,
    .explainer-box {
        max-width: 100%;
    }
}

