/* ------------------------------ Base Styles --------------------------------*/ body { margin: 0; font-family: "Inter", Arial, sans-serif; background: #f5f7fa; color: #1a1a1a; line-height: 1.6; }

/* Sticky Header */ header.sticky { position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); background: rgba(10, 61, 98, 0.85); }

/* Header */ header { color: white; padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; }

/* Hamburger */ .hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }

.hamburger span { width: 28px; height: 3px; background: white; border-radius: 3px; transition: 0.3s; }

/* Morph into X */ .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); } .hamburger.active span:nth-child(2) { opacity: 0; } .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Menu */ nav { display: none; flex-direction: column; gap: 15px; background: #0a3d62; padding: 20px; text-align: center; animation: slideDown 0.3s ease; }

nav a { color: white; text-decoration: none; font-weight: bold; }

nav.open { display: flex; }

/* Backdrop */ #backdrop { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 500; }

#backdrop.show { display: block; }

/* ------------------------------ Hero Section --------------------------------*/ .modern-hero { background: linear-gradient(135deg, #0a3d62, #1e5f8b); padding: 140px 20px; color: white; text-align: center; }

.hero-content { max-width: 800px; margin: auto; }

.hero-content h2 { font-size: 2.6rem; font-weight: 700; margin-bottom: 15px; }

.hero-content p { font-size: 1.2rem; opacity: 0.9; }

.hero-buttons { margin-top: 30px; display: flex; justify-content: center; gap: 20px; }

.cta.primary { background: #82ccdd; color: #0a3d62; padding: 14px 28px; border-radius: 8px; font-weight: bold; text-decoration: none; transition: 0.3s; }

.cta.secondary { background: transparent; border: 2px solid white; color: white; padding: 12px 26px; border-radius: 8px; text-decoration: none; transition: 0.3s; }

.cta.primary:hover, .cta.secondary:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.modern-hero {
  position: relative;
  background-image: url("assets/images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 20px;
  color: white;
  text-align: center;
  overflow: hidden; /* ensures overlay stays contained */
}

/* Transparent overlay */
.modern-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* adjust transparency here */
  backdrop-filter: blur(1px);      /* optional subtle smoothing */
  z-index: 0;
}

/* Keep hero content above the overlay */
.modern-hero .hero-content {
  position: relative;
  z-index: 1;
}



/* ------------------------------ Trusted Section --------------------------------*/ .sleek-section { padding: 70px 20px; max-width: 1200px; margin: auto; }

.logo-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 30px; }

.logo-row img { opacity: 0.7; transition: 0.3s; }

.logo-row img:hover { opacity: 1; }

/* ------------------------------ Feature Grid --------------------------------*/ .section-sub { margin-top: -10px; color: #555; font-size: 1.1rem; }

.feature-grid { display: grid; gap: 30px; margin-top: 40px; }

.feature-card { background: white; padding: 30px; border-radius: 14px; box-shadow: 0 6px 20px rgba(0,0,0,0.06); text-align: center; transition: transform 0.25s ease, box-shadow 0.25s ease; }

.feature-card:hover { transform: translateY(-6px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }

.icon-circle { font-size: 2rem; background: #eaf2f8; width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: auto; margin-bottom: 20px; }

/* ------------------------------ Split Section --------------------------------*/ .split { display: flex; flex-direction: column; gap: 30px; }

.split-image img { width: 100%; border-radius: 12px; }

.split-text ul { margin-top: 15px; padding-left: 20px; }

/* ------------------------------ Security Grid --------------------------------*/ .security-grid { display: grid; gap: 20px; margin-top: 30px; }

.security-item { background: white; padding: 18px; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); font-weight: bold; }

/* ------------------------------ CTA Banner --------------------------------*/ .cta-banner { background: #0a3d62; color: white; text-align: center; padding: 80px 20px; border-radius: 0; }

.cta.large { padding: 16px 32px; font-size: 1.2rem; background: #82ccdd; color: #0a3d62; border-radius: 8px; text-decoration: none; font-weight: bold; transition: 0.3s; }

.cta.large:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ------------------------------ Footer --------------------------------*/ footer { text-align: center; padding: 30px; background: #0a3d62; color: white; margin-top: 40px; }

/* ------------------------------ Animations --------------------------------*/ @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.fade-in { animation: fadeIn 0.8s ease; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ------------------------------ Desktop Layouts --------------------------------*/ @media (min-width: 900px) { .feature-grid { grid-template-columns: repeat(3, 1fr); }

.split {
    flex-direction: row;
    align-items: center;
}

.split-image, .split-text {
    flex: 1;
}

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

}

/* Desktop Navigation */ @media (min-width: 768px) { .hamburger { display: none; }

nav {
    display: flex !important;
    flex-direction: row;
    background: none;
    padding: 0;
    gap: 20px;
}

#backdrop {
    display: none !important;
}

}

.partner-badge {
    background: white;
    padding: 14px 22px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    font-weight: 600;
    font-size: 0.95rem;
    max-width: 360px;
    text-align: center;
    border: 1px solid #e5e9ef;
    transition: 0.25s ease;
}

.partner-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Partner Logos */
.logo-row img {
    max-height: 55px;        /* keeps logos from being huge */
    width: auto;             /* preserves aspect ratio */
    object-fit: contain;     /* prevents distortion */
    opacity: 0.85;
    filter: grayscale(100%);
    transition: 0.3s ease;
    padding: 6px;
}

/* Hover effect */
.logo-row img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-3px);
}

/* Responsive scaling */
@media (max-width: 600px) {
    .logo-row img {
        max-height: 40px;    /* slightly smaller on mobile */
    }
}

/* Header Logo Container */
.logo-image {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Logo Image */
.logo-image img {
    height: 42px;
    width: auto;
    max-width: 180px;       /* limits width to ~2.5 inches on desktop */
    object-fit: contain;
    display: block;
}

/* Larger screens: scale up slightly */
@media (min-width: 900px) {
    .logo-image img {
        height: 54px;
        max-width: 220px;   /* ~3 inches max on large monitors */
    }
}

/* Contact Page Layout */
.contact-wrapper {
    max-width: 650px;
    margin: auto;
    text-align: center;
}

.contact-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d0d7e2;
    background: #ffffff;
    font-size: 1rem;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0a3d62;
    box-shadow: 0 0 0 3px rgba(10, 61, 98, 0.15);
    outline: none;
}

.form-status {
    margin-top: 10px;
    font-weight: 600;
    min-height: 20px;
}

/* Responsive */
@media (max-width: 600px) {
    .contact-wrapper {
        padding: 0 15px;
    }
}
