/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: #222;
    background: #fff;
    overflow-x: hidden;
}

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

ul { list-style: none; }

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #3f6ac4;
    backdrop-filter: blur(10px);
    transition: background 0.3s;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
}

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

.logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #fff;
    padding: 4px 12px;
    border-radius: 4px;
    line-height: 1;
}

.logo-main {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 4px;
    font-family: 'Poppins', sans-serif;
}

.logo-sub {
    font-size: 8px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 3px;
    margin-top: 1px;
}

.nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('img/Banner.png') center center / cover no-repeat;
    padding-top: 65px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 20, 80, 0.75) 0%, rgba(0, 20, 80, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 10%;
    padding: 60px 40px;
    color: #fff;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.hero-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.hero-bold {
    font-size: 46px;
    font-weight: 900;
    display: block;
    color: #fff;
}

.hero-highlight {
    color: #dc2626;
    font-weight: 800;
}

.hero-underline {
    width: 80px;
    height: 4px;
    background: #dc2626;
    margin: 12px 0 20px;
    border-radius: 2px;
}

.hero-desc {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.92;
    margin-bottom: 30px;
    max-width: 450px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.hero-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.hero-feature span {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
}

.btn-quote {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #0a1e50;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid #0a1e50;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-quote:hover {
    background: #0a1e50;
    color: #fff;
    border-color: #fff;
}

/* ===== SECTION TAGS ===== */
.section-tag {
    text-align: center;
    color: #1e40af;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.section-tag.red {
    color: #dc2626;
}

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 70px 0;
    background: #f8f9fb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 18px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid #eef1f6;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.12);
    border-color: #1e40af;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8eeff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: #1e40af;
}

.service-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.service-card p {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
}


/* ===================================
   ABOUT / WELCOME SECTION
   =================================== */
.about {
  padding: 50px 0;
  background: #FFF;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card-main {
  background: linear-gradient(135deg, #3f43b2, #3f63d2);
  border-radius: 28px;
  padding: 48px;
  color: white;
  position: relative;
  overflow: hidden;
}
.about-card-main hr{
    margin: 30px 0;
    background-color: #fff;
    height: 5px;
}

.about-card-main::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.about-card-main .experience-num {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.about-card-main .experience-text {
  font-size: 1.15rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.about-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.about-mini-stat {
  background: #F8F9FC;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  border: 1px solid #F0F2F7;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-mini-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 107, 53, 0.25);
}

.about-mini-stat .stat-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #3f6ac4;
}

.about-mini-stat .stat-lbl {
  font-size: 0.82rem;
  color: #9BA8B9;
  margin-top: 4px;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  font-size: 1.05rem;
  color: #6B7A90;
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-highlight-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3f43b1, #3f5fbe);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  margin-top: 2px;
}

.about-highlight span {
  font-size: 0.98rem;
  color: #2E3A4D;
  font-weight: 500;
}

/* ===== PLATFORMS SECTION ===== */
.platforms {
    padding: 50px 0;
    background: linear-gradient(180deg, #3f6ac4, #3f40af, #3f6ad9);
}

.platforms-title {
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.platforms-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.platform-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: transform 0.3s;
}

.platform-icon:hover {
    transform: scale(1.1);
}

.platform-icon.youtube { background: #FF0000; }
.platform-icon.facebook { background: #1877F2; }
.platform-icon.zoom { background: #2D8CFF; }
.platform-icon.teams { background: #6264A7; }
.platform-icon.meet { background: #00897B; }
.platform-icon.more { background: #475569; }

.teams-icon {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.platform-item span {
    font-size: 13px;
    font-weight: 600;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
    padding: 70px 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.why-left .section-tag {
    text-align: left;
    color: #dc2626;
}

.why-title {
    font-size: 26px;
    font-weight: 800;
    color: #0a1e50;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

.why-feature h4 {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.why-feature p {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
}

/* Quote Form */
.quote-form-box {
    background: #f0f4ff;
    border-radius: 16px;
    padding: 36px 30px;
    border: 1px solid #dbeafe;
}

.quote-title {
    font-size: 22px;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.quote-subtitle {
    font-size: 13px;
    color: #555;
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    background: #fff;
    transition: border 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #0f2560, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 70px 0;
    background: #f8f9fb;
}

.process-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 200px;
    position: relative;
}

.process-icon-wrap {
    position: relative;
    margin-bottom: 16px;
}

.process-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    transition: transform 0.3s;
}

.process-step:hover .process-icon {
    transform: scale(1.1);
}

.process-number {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #dc2626;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.process-step h4 {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.process-step p {
    font-size: 11px;
    color: #555;
    line-height: 1.5;
    max-width: 160px;
}

.process-arrow {
    position: absolute;
    top: 32px;
    right: -18px;
    color: #dc2626;
    font-size: 16px;
}

.process-step:last-child .process-arrow {
    display: none;
}

/* ===== FOOTER ===== */
.footer {
    background: #3f6ac4;
    color: #fff;
    padding-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
    padding-bottom: 30px;
}

.footer-col.center {
    text-align: center;
}

.footer-col.right {
    display: flex;
    justify-content: flex-end;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.footer-label {
    display: block;
    font-size: 11px;
    opacity: 0.7;
    margin-bottom: 2px;
}

.footer-value {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: opacity 0.3s;
}

.footer-value:hover {
    opacity: 0.8;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.footer-logo-box {
    border-color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #fff;
    color: #0a1e50;
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 14px 0;
    margin-top: 10px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .process-grid {
        flex-wrap: wrap;
        gap: 30px;
    }
    .process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: rgba(10, 30, 80, 0.97);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
    }
    .nav.open {
        display: flex;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-bold {
        font-size: 34px;
    }
    .hero-features {
        gap: 16px;
        flex-wrap: wrap;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .platforms-grid {
        gap: 25px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col.right {
        justify-content: center;
    }
    .footer-contact-item {
        justify-content: center;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
    .process-step {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 40px 20px;
    }
    .hero-title {
        font-size: 22px;
    }
    .hero-bold {
        font-size: 28px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 24px;
    }
    .platforms-title {
        font-size: 18px;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
}
