/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Header background */
.site-header {
    background-color: #f4f4f4;
    padding: 20px 40px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-weight: bold;
    font-size: 20px;
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-header.shrink {
    padding: 5px 40px;
    background-color: #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Logo styling */
.logo {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-weight: 900;
    font-size: 36px;
    color: #ff0720;
    transition: font-size 0.3s ease, margin 0.3s ease;
    margin: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: 100%;
    line-height: 1.2;
}

.site-header.shrink .logo {
    font-size: 24px;
    color: rgb(200, 0, 25);
}

/* Flex container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 60px;    
    transition: all 0.3s ease;
    z-index: 999;
    padding: 0 20px;
}

/* Navigation */
.nav-links {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 600;
    white-space: nowrap;
    padding: 8px 12px;
    display: inline-block;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: rgb(255,7,32);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown::after {
    content: '';
    position: absolute;
    height: 10px;
    width: 100%;
    bottom: -10px;
    left: 0;
    background: transparent;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    background-color: #f4f4f4;
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    margin-top: 0;
    border-radius: 4px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    height: 10px;
    width: 100%;
    top: -10px;
    left: 0;
    background: transparent;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

.dropdown-menu li {
    padding: 10px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    color: black;
    font-weight: normal;
    padding: 0;
    display: block;
}

.dropdown-menu li:hover {
    background-color: #e8e8e8;
}

.dropdown-menu a:hover {
    color: rgb(255,7,32);
}

/* Video section */
.hero-section {
    width: 100%;
    display: block;
    margin: 0 auto;
    margin-top: 120px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.hero-video, .hero-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: block;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: block;
}

/* Body padding */
body {
    padding-top: 10px;
}

.info {
    display: flex;
	background: linear-gradient(to bottom, #f4f4f4, #fff);
	border-radius: 8px;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    height: auto;
    margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
    padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info h2 {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    clear: both;
	color: #ff0720;
}

.info h3 {
    display: block;
    width: 100%;
    clear: both;
	color: #0026FF;
}

.info h4 {
    display: block;
    width: 100%;
    clear: both;
	color: #0026FF;
}

.info p {
    display: block;
    width: 100%;
	text-align: justify;
    margin-bottom: 15px;
    line-height: 1.6;
    clear: both;
}

.info em {
    width: 100%;
	text-align: justify;
    line-height: 1.6;
    clear: both;
}

.info li {
    width: 100%;
	text-align: justify;
	margin-bottom: 10px;
    line-height: 1.6;
    clear: both;
}

.info a {
    text-decoration: none;
}

.info ul {
	margin-left: 50px;
}

/*Logos section*/
.logos {
	display: inline-block;    
	text-align: center;   
	height: 100px;
	width: 100%;
	background: linear-gradient(to bottom, #f0f4fa, white);
}

/* Spacer section */
.spacer-section {
    height: 200px;
    background: linear-gradient(to bottom, #f0f4fa, white);
}

/* ---------- CTA CONTACT FORM STYLES ---------- */
#contact {
    padding: 60px 20px;
    background: linear-gradient(145deg, #f0f4fa 0%, #e6ecf5 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

#contact h2 {
    font-size: 1.2rem;
    color: #1e2b3c; 
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

#contact h2 img {
    width: 40px;
    height: auto;
}

.form-container {
    background: white;
    border-radius: 2rem;
    box-shadow: 0 25px 45px -12px rgba(0, 20, 50, 0.25);
    padding: 3rem;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 1rem;
    color: #1e2b3c;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #ff9f1c;
    width: 1.2rem;
}

.form-group input,
.form-group textarea {
    border: 2px solid #dbe0e8;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    background: #fafcff;
    transition: all 0.2s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1e2b3c;
    box-shadow: 0 6px 14px rgba(30, 43, 60, 0.08);
    background: white;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.error-message {
    font-size: 0.85rem;
    color: #d43f3f;
    min-height: 1.2rem;
}

.submit-btn {
    background: #1e2b3c;
    color: white;
    border: none;
    border-radius: 40px;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.2s;
    margin: 0.25rem auto 0;
    border: 1px solid transparent;
    width: 200px;
    height: 36px;
}

.submit-btn:hover {
    background: #2d4055;
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.submit-btn i {
    font-size: 1.2rem;
}

.form-status {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 10px;
}

.form-status.success {
    background: #e6f5e9;
    color: #146c43;
    display: flex;
}

.form-status.error {
    background: #ffe6e5;
    color: #b53b3b;
    display: flex;
}

/* Footer */
.footer {
    display: flex;
    max-height: 200px;
    padding: 0.2rem;
    background-color: #2c3e50;
    font-family: Arial, sans-serif;
    font-size: 0.8rem;
    color: white;
}     

.footer-left {
    flex: 1;
}

.footer-center {
	flex: 1;
	flex-direction: column;
	text-align: right;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    text-align: right;
    padding: 1rem;
}

.footer-right a,
.footer-left p {
    margin: 0.2rem 0;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    color: #fff71c;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .logo {
        font-size: 32px;
        max-width: 60%;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        padding: 6px 10px;
        font-size: 15px;
    }
}

@media screen and (max-width: 992px) {
    .site-header {
        padding: 15px 30px;
    }
    
    .site-header.shrink {
        padding: 5px 30px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 28px;
        max-width: 50%;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-links a {
        padding: 5px 8px;
        font-size: 14px;
    }
    
    .hero-section {
        margin-top: 100px;
        padding: 0 15px;
    }
}

@media screen and (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
    }
    
    .site-header.shrink {
        padding: 8px 20px;
    }
    
    .site-header.shrink .logo {
        font-size: 20px;
    }
    
    .nav-container {
        height: auto;
        min-height: 50px;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 5px;
    }
    
    .logo {
        font-size: 24px;
        max-width: 100%;
        margin-bottom: 10px;
    }
    
    .site-header.shrink .logo {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .nav-links {
        width: 100%;
        justify-content: flex-start;
        gap: 8px;
    }
    
    .nav-links a {
        font-size: 13px;
        padding: 5px 8px;
    }
    
    .dropdown-menu {
        right: auto;
        left: 0;
        min-width: 160px;
    }
    
    body {
        padding-top: 120px;
    }
    
    .hero-section {
        margin-top: 80px;
        padding: 0 15px;
    }
    
    .three-columns {
        gap: 15px;
    }
    
    .column, .column2, .column3 {
        min-width: 200px;
    }
    
    #contact {
        padding: 40px 15px;
    }
    
    #contact h2 {
        font-size: 1.2rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .submit-btn {
        width: 180px;
    }
}

@media screen and (max-width: 600px) {
    .three-columns {
        flex-direction: column;
        align-items: center;
    }
    
    .column, .column2, .column3 {
        width: 100%;
        max-width: 400px;
    }
}

@media screen and (max-width: 480px) {
    .site-header {
        padding: 12px 15px;
    }
    
    .site-header.shrink {
        padding: 5px 15px;
    }
    
    .nav-container {
        padding: 0 3px;
    }
    
    .logo {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .site-header.shrink .logo {
        font-size: 16px;
    }
    
    .nav-links {
        gap: 5px;
    }
    
    .nav-links a {
        font-size: 12px;
        padding: 4px 6px;
    }
    
    .dropdown-menu {
        min-width: 140px;
        font-size: 12px;
    }
    
    body {
        padding-top: 100px;
    }
    
    .hero-section {
        margin-top: 70px;
        width: 90%;
    }
    
    .hero-video {
        max-height: 50vh;
    }
    
    #contact h2 {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 1.5rem 1rem;
    }
    
    .captcha-question {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 360px) {
    .logo {
        font-size: 18px;
    }
    
    .site-header.shrink .logo {
        font-size: 15px;
    }
    
    .nav-links a {
        font-size: 11px;
        padding: 3px 4px;
    }
    
    .hero-section {
        margin-top: 60px;
    }
    
    .hero-video {
        max-height: 40vh;
    }
}