/* ============================================================
   CODEVO — GLOBAL STYLES
   Brand: Primary #07294D | Secondary #021D3A | Accent #114F9E
============================================================ */
:root {
  --primary: #07294D;
  --secondary: #021D3A;
  --accent: #114F9E;
  --accent-light: #1a6dd4;
  --accent-glow: rgba(17, 79, 158, 0.35);
  --white: #ffffff;
  --off-white: #f0f4f9;
  --text-light: #c8d8ea;
  --text-muted: #8eacc4;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --card-bg: rgba(7, 41, 77, 0.7);
  --shadow: 0 20px 60px rgba(2, 29, 58, 0.5);
  --shadow-sm: 0 8px 30px rgba(2, 29, 58, 0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--secondary);
  color: #FFF;
  overflow-x: hidden;
  line-height: 1.7
}

img {
  max-width: 100%;
  display: block
}

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

ul {
  list-style: none
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--secondary)
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px
}

/* ── Utilities ── */
.container {
 
  padding: 0 24px
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(17, 79, 158, 0.18);
  border: 1px solid rgba(17, 79, 158, 0.4);
  color: #5da0f0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #5da0f0;
  border-radius: 50%
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  background: #1a6dd4;
  color: #1a6dd4;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px
}

.section-subtitle {
  font-size: 1rem;
  color: #1a6dd4;
  max-width: 560px;
  line-height: 1.8
}

.text-center {
  text-align: center
}

.text-center .section-subtitle {
  margin: 0 auto
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(17, 79, 158, 0.45);
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(17, 79, 158, 0.6)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #114F9E;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  background: transparent
}

.btn-outline:hover {
  border-color: var(--accent-light);
  background: rgba(17, 79, 158, 0.15);
  transform: translateY(-2px)
}

.btn-sm {
  padding: 10px 22px;
  font-size: 13px
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .2s
}

.reveal-delay-3 {
  transition-delay: .3s
}

.reveal-delay-4 {
  transition-delay: .4s
}

.reveal-delay-5 {
  transition-delay: .5s
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(17, 79, 158, 0.4)
  }

  70% {
    box-shadow: 0 0 0 12px rgba(17, 79, 158, 0)
  }
}

/* ============================================================
   HEADER
============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: white;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3)
}

#site-header.scrolled {
  background: white;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.4)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.6rem
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 4px 20px rgba(17, 79, 158, 0.5);
  flex-shrink: 0
}

.logo .accent {
  color: var(--accent-light)
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-item {
  position: relative
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  color: rgb(2 29 58 / 97%);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap
}

.nav-link:hover,
.nav-link.active {
  color: rgb(2 29 58 / 97%);
  background: rgba(255, 255, 255, 0.08)
}

.nav-link .chev {
  font-size: 10px;
  transition: var(--transition)
}

.nav-item:hover .chev {
  transform: rotate(180deg)
}

/* Mega Dropdown */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(4, 22, 48, 0.98);
  backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  width: 720px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5)
}

.nav-item:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0)
}

.mega-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.mega-col ul li a {
  display: flex;
  align-items: center;
  padding: 7px 0;
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition)
}

.mega-col ul li a:hover {
  color: #fff;
  padding-left: 10px
}

.sub-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 10px 0 4px
}

.mega-promo {
  background: rgba(17, 79, 158, 0.15);
  border: 1px solid rgba(17, 79, 158, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin-top: 12px
}

.mega-promo p {
  font-size: 12px;
  color: #5da0f0;
  font-weight: 700;
  margin-bottom: 6px
}

.mega-promo span {
  font-size: 12px;
  color: var(--text-muted)
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(17, 79, 158, 0.4);
  transition: var(--transition);
  white-space: nowrap;
  margin-left: 8px
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(17, 79, 158, 0.6)
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: black;
  border-radius: 2px;
  transition: var(--transition)
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

/* Mobile Menu */
#mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 29, 58, 0.98);
  backdrop-filter: blur(20px);
  overflow-y: auto;
  padding: 24px;
  z-index: 999
}

#mobile-menu.open {
  display: block
}

.mob-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.mob-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer
}

.mob-sub {
  padding: 8px 0 16px 16px;
  display: none
}

.mob-sub.open {
  display: block
}

.mob-sub a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition)
}

.mob-sub a:hover {
  color: var(--accent-light)
}

.mob-sub h6 {
  font-size: 11px;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 10px 0 4px
}

/* ============================================================
   MARQUEE
============================================================ */
.marquee-bar {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  padding: 11px 0;
  top: 45px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 80px
}

.marquee-bar::before,
.marquee-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2
}

.marquee-bar::before {
  left: 0;
  background: linear-gradient(90deg, var(--primary), transparent)
}

.marquee-bar::after {
  right: 0;
  background: linear-gradient(-90deg, var(--primary), transparent)
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.85)
}

.marquee-item i {
  color: #7dc4ff;
  font-size: 13px
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ============================================================
   PAGE BANNER (used on inner pages)
============================================================ */
.page-banner {
  padding: 60px 0 80px;
  background:
    url('../about-codevo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-top: 42px
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(17, 79, 158, 0.2), transparent)
}

.page-banner svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  pointer-events: none
}

.page-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(17, 79, 158, 0.25);
  border: 1px solid rgba(17, 79, 158, 0.5);
  color: #7dc4ff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px
}

.page-banner h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  margin-bottom: 16px
}

.page-banner p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.8
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted)
}

.breadcrumb a {
  color: var(--text-muted);
  transition: var(--transition)
}

.breadcrumb a:hover {
  color: #fff
}

.breadcrumb i {
  font-size: 10px
}

/* ============================================================
   FOOTER
============================================================ */
/* =========================
   FOOTER WHITE VERSION
========================= */

#site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 72px 0 0;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e5e7eb;
}

/* BRAND TEXT */
.footer-brand p {
  font-size: 14px;
  color: #374151;
  line-height: 1.8;
  margin: 16px 0 24px;
}

/* SOCIAL ICONS */
.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #111827;
  transition: 0.3s ease;
}

.footer-social i {
  color: #111827;
}

.footer-social:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.footer-social:hover i {
  color: #fff;
}

/* HEADINGS */
.footer-col h4 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  color: #111827;
}

/* LINKS */
.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: #374151;
  transition: 0.3s ease;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #2563eb;
  padding-left: 4px;
}

/* CONTACT ITEMS */
.f-contact-item {
  display: flex;
  gap: 12px;
  color: ;
  margin-bottom: 14px;
  align-items: flex-start;
}

.f-contact-item i {
  color: #2563eb;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 14px;
}

.f-contact-item span {
  font-size: 13px;
  color: #374151;
  line-height: 1.7;
}

/* NEWSLETTER */
.newsletter-wrap p {
  font-size: 13px;
  color: #374151;
  margin-bottom: 12px;
  margin-top: 20px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 10px 16px;
  color: #111827;
  font-size: 13px;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.newsletter-form input::placeholder {
  color: #6b7280;
}

.newsletter-form button {
  background: #2563eb;
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 0 16px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  background: #1d4ed8;
}

/* BOTTOM */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 13px;
  color: #374151;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: #374151;
  transition: 0.3s ease;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #2563eb;
}
/* CONTACT US + LOCATION TEXT BLACK */

.footer-col,
.footer-col h4,
.footer-col p,
.footer-col span,
.footer-col a,
.f-contact-item,
.f-contact-item span,
.f-contact-item i{
    color:#000 !important;
}

/* LOCATION TEXT */
.footer-col:last-child{
    color:#000 !important;
}

/* CONTACT ICONS */
.f-contact-item i{
    color:#000 !important;
}
/* ============================================================
   BACK TO TOP
============================================================ */
#back-top {
  position: fixed;
  bottom: 80px;
  right: 32px;
  z-index: 999;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(17, 79, 158, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition)
}

#back-top.show {
  opacity: 1;
  pointer-events: all
}

#back-top:hover {
  transform: translateY(-3px)
}

/* ============================================================
   HERO (HOME)
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease, transform 1s ease;
  transform: scale(1.04)
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(2, 29, 58, 0.92) 0%, rgba(7, 41, 77, 0.7) 50%, rgba(2, 29, 58, 0.4) 100%)
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center
}

.hero-text {
  max-width: 640px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(17, 79, 158, 0.25);
  border: 1px solid rgba(17, 79, 158, 0.5);
  color: #7dc4ff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp .6s ease both
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp .7s .1s ease both
}

.hero-title .hl {
  background: linear-gradient(135deg, #5da0f0, #7dc4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.8;
  animation: fadeUp .7s .2s ease both
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
  animation: fadeUp .7s .4s ease both
}

.h-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800
}

.h-stat-label {
  font-size: 12px;
  color: var(--text-muted)
}

.h-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12)
}

/* Floating cards */
.hero-floater {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.hero-float-card {
  background: rgba(7, 41, 77, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatCard 3s ease infinite;
  box-shadow: var(--shadow-sm)
}

.hero-float-card:nth-child(2) {
  animation-delay: 1s
}

.hero-float-card:nth-child(3) {
  animation-delay: 2s
}

.float-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0
}

.float-label {
  font-size: 11px;
  color: var(--text-muted)
}

.float-val {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition)
}

.slider-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 4px
}

.slider-arrows {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 10px
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: #fff;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px)
}

.slider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent)
}

/* ============================================================
   COUNTERS
============================================================ */
.counters {
  background: var(--primary);
  padding: 72px 0;
  position: relative;
  overflow: hidden
}

.counters::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50%, rgba(17, 79, 158, 0.15), transparent)
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative
}

.counter-card {
  padding: 40px 32px;
  text-align: center;
  position: relative
}

.counter-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08)
}

.counter-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin: 0 auto 16px;
  background: white;
  border: 1px solid rgba(17, 79, 158, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #5da0f0
}

.counter-num {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, #7dc4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1
}

.counter-suffix {
  color: var(--accent-light)
}

.counter-label {
  font-size: 14px;
  color: white;
  margin-top: 6px;
  font-weight: 500
}

/* ============================================================
   ABOUT PREVIEW
============================================================ */
.about-preview {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden
}

.about-preview::before {
  content: '';
  position: absolute;
  left: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 79, 158, 0.1), transparent 70%);
  pointer-events: none
}

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

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px
}

.about-chip {
  background: rgba(17, 79, 158, 0.15);
  border: 1px solid rgba(17, 79, 158, 0.3);
  color: #5da0f0;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500
}

.about-desc {
  color: #114F9E;
  line-height: 1.9;
  margin-bottom: 16px
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0
}

.about-highlight {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-start;
  gap: 10px
}

.about-highlight i {
  color: var(--accent-light);
  margin-top: 3px;
  font-size: 13px
}

.about-highlight span {
  font-size: 14px;
  color: #114F9E;
  font-weight: 500
}

/* Image slider */
.img-slider-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(2, 29, 58, 0.6);
  aspect-ratio: 4/3
}

.img-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px
}

.img-slide.active {
  opacity: 1
}

.img-slide-1 {
  background:
    url('../about-11.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img-slide-2 {
  background:
    url('../about-12.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img-slide-3 {
  background:
    url('../about-13.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img-slide i {
  font-size: 4rem;
  opacity: .35
}

.img-slide p {
  font-size: 1rem;
  font-weight: 600;
  opacity: .55;
  text-align: center;
  padding: 0 20px
}

.img-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5
}

.img-slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transition: var(--transition);
  cursor: pointer
}

.img-slider-dot.active {
  background: #fff;
  width: 18px;
  border-radius: 4px
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(17, 79, 158, .5)
}

.about-badge-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900
}

.about-badge-text {
  font-size: 12px;
  opacity: .85
}

/* ============================================================
   SERVICES
============================================================ */
.services-section {
  padding: 100px 0;
  background: #edf0f2
}

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

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(17, 79, 158, .15), transparent);
  opacity: 0;
  transition: var(--transition)
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(17, 79, 158, .5);
  box-shadow: 0 24px 60px rgba(2, 29, 58, .6)
}

.service-card:hover::before {
  opacity: 1
}

.service-thumb {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.service-thumb-icon {
  font-size: 3.5rem;
  opacity: .7;
  transition: transform var(--transition);
  z-index: 2;
  position: relative
}

.service-card:hover .service-thumb-icon {
  transform: scale(1.1)
}

.service-thumb-overlay {
  position: absolute;
  inset: 0;
}

.service-body {
  padding: 24px
}

.service-badge {
  display: inline-block;
  background: rgba(17, 79, 158, .2);
  border: 1px solid rgba(17, 79, 158, .35);
  color: #FFF;
  font-size: 11px;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  font-weight: 600
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px
}

.service-desc {
  font-size: 13.5px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 18px
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px
}

.service-tag {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 50px
}

.service-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5da0f0;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition)
}

.service-link:hover {
  gap: 10px
}

/* ============================================================
   PROCESS
============================================================ */
.process-section {
  padding: 100px 0;
  background: linear-gradient(90deg, transparent, rgba(17, 79, 158, .5), transparent);
  position: relative;
  overflow: hidden
}

.process-section::before,
.process-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 79, 158, .5), transparent)
}

.process-section::before {
  top: 0
}

.process-section::after {
  bottom: 0
}

.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  flex-wrap: wrap
}

.process-connector {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 28px;
  max-width: 60px
}

.process-connector::before {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(17, 79, 158, .3), rgba(17, 79, 158, .8), rgba(17, 79, 158, .3))
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  width: 500px
}

.process-icon-wrap {
  position: relative;
  width: 76px;
  height: 76px
}

.process-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(17, 79, 158, .15);
  border: 1px solid rgba(17, 79, 158, .3);
  transition: var(--transition)
}

.process-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem
}

.process-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(17, 79, 158, .5)
}

.process-step:hover .process-icon-bg {
  background: rgba(17, 79, 158, .3);
  border-color: var(--accent-light);
  transform: scale(1.1)
}

.process-step-title {
  font-weight: 700;
  font-size: .95rem;
  text-align: center
}

.process-step-desc {
  font-size: 12px;
  color: #FFF;
  text-align: center;
  line-height: 1.6
}

/* ============================================================
   MISSION VISION
============================================================ */
.mv-section {
  padding: 100px 0;
  background: #fff
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  gap: 32px
}

.mv-card {
  padding: 48px 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: var(--transition)
}

.mv-card-m {
  background: linear-gradient(135deg, rgba(7, 41, 77, .8), rgba(2, 29, 58, .9));
  border: 1px solid rgba(17, 79, 158, .3)
}

.mv-card-v {
  background: linear-gradient(135deg, rgba(7, 41, 77, .8), rgba(2, 29, 58, .9));
  ;
  border: 1px solid rgba(17, 79, 158, .3)
}

.mv-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 79, 158, .15), transparent 70%)
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.mv-icon {
  width: 60px;
  margin: auto;
  color: #fff;
  height: 60px;
  border-radius: 16px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(17, 79, 158, .5)
}

.mv-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 10px
}

.mv-heading {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px
}

.mv-text {
  color: #fff;
  line-height: 1.9;
  font-size: 15px
}

/* ============================================================
   WHY US
============================================================ */
.why-section {
  padding: 100px 0;
  background: #fff
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.why-card {
  background: var(--card-bg);
  text-align: center;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: var(--transition)
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 79, 158, .4)
}

.why-card:hover::after {
  transform: scaleX(1)
}

.why-icon {
  width: 54px;
  margin: auto;
  height: 54px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: rgba(17, 79, 158, .2);
  border: 1px solid rgba(17, 79, 158, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #5da0f0;
  transition: var(--transition)
}

.why-card:hover .why-icon {
  background: rgba(17, 79, 158, .4);
  color: #fff
}

.why-title {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px
}

.why-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7
}

/* ============================================================
   TEAM
============================================================ */
.team-section {
  padding: 100px 0;
  background: #fff
}

.founder-card {
  background: linear-gradient(135deg, rgba(7, 41, 77, .9));
  border: 1px solid rgba(17, 79, 158, .35);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  transition: var(--transition)
}

.founder-card::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 79, 158, .12), transparent 70%)
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 12px 40px rgba(17, 79, 158, .5);
  border: 3px solid rgba(255, 255, 255, .15)
}

.founder-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  color: #fff;
  font-size: 11px;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px
}

.founder-role {
  font-size: 14px;
  color: var(--accent-light);
  margin-bottom: 14px;
  font-weight: 500
}

.founder-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px
}

.founder-social {
  display: flex;
  gap: 10px;
  margin-top: 14px
}

.founder-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition)
}

.founder-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff
}

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

.team-member {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition)
}

.team-member:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 79, 158, .4)
}

.member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 2px solid rgba(255, 255, 255, .1)
}

.member-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px
}

.member-role {
  font-size: 13px;
  color: #fff
}

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  padding: 100px 0;
  background: #edf0f2
}

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

.faq-visual {
  border-radius: 24px;
  overflow: hidden;
  background:
    url('../support.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow)
}

.faq-visual i {
  font-size: 5rem;
  opacity: .15;
  margin-bottom: 24px
}

.faq-visual h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px
}

.faq-visual p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition)
}

.faq-item.open {
  border-color: rgba(17, 79, 158, .4)
}

.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px
}

.faq-q-text {
  font-weight: 600;
  font-size: 15px
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(17, 79, 158, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--accent-light);
  transition: var(--transition);
  flex-shrink: 0
}

.faq-item.open .faq-icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg)
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 24px
}

.faq-ans-inner {
  padding-bottom: 20px;
  color: #fff;
  font-size: 14px;
  line-height: 1.8
}

.faq-item.open .faq-ans {
  max-height: 200px
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--secondary)
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.test-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition)
}

.test-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 79, 158, .4)
}

.test-stars {
  color: #f59e0b;
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 2px
}

.test-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0
}

.test-name {
  font-weight: 700;
  font-size: 14px
}

.test-role {
  font-size: 12px;
  color: var(--text-muted)
}

/* ============================================================
   SERVICE DETAIL PAGE
============================================================ */
.service-detail {
  padding: 80px 0
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start
}

.service-detail-body h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px
}

.service-detail-body p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px
}

.service-detail-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 32px 0 16px
}

.sub-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px
}

.sub-service-item {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition)
}

.sub-service-item:hover {
  border-color: rgba(17, 79, 158, .5);
  transform: translateX(4px)
}

.sub-service-item i {
  color: var(--accent-light);
  font-size: 16px
}

.sub-service-item span {
  font-size: 14px;
  font-weight: 500
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.benefit-item i {
  color: #22c55e;
  margin-top: 3px;
  font-size: 13px;
  flex-shrink: 0
}

.benefit-item span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7
}

.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px
}

.sidebar-card h4 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.sidebar-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.sidebar-stat:last-child {
  border-bottom: none
}

.sidebar-stat-label {
  font-size: 13px;
  color: var(--text-muted)
}

.sidebar-stat-val {
  font-size: 13px;
  font-weight: 700;
  color: #5da0f0
}

/* ============================================================
   BLOGS / EVENTS / UPDATES
============================================================ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.post-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition)
}

.post-card:hover {
  transform: translateY(-8px);
  border-color: rgba(17, 79, 158, .5);
  box-shadow: 0 24px 60px rgba(2, 29, 58, .6)
}

.post-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden
}

.post-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 41, 77, .7), transparent)
}

.post-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(17, 79, 158, .8);
  backdrop-filter: blur(8px);
  color: #7dc4ff;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
  z-index: 2
}

.post-body {
  padding: 24px
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted)
}

.post-meta i {
  font-size: 11px
}

.post-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: var(--transition)
}

.post-card:hover .post-title {
  color: var(--accent-light)
}

.post-excerpt {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px
}

.post-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5da0f0;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition)
}

.post-link:hover {
  gap: 10px
}

/* Event card specifics */
.event-card .post-body {
  padding: 20px 24px
}

.event-date-badge {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  min-width: 56px
}

.event-date-day {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1
}

.event-date-mon {
  font-size: 11px;
  opacity: .8
}

.event-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px
}

/* Update card */
.update-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition)
}

.update-card:hover {
  border-color: rgba(17, 79, 158, .4);
  transform: translateX(4px)
}

.update-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(17, 79, 158, .2);
  border: 1px solid rgba(17, 79, 158, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0
}

.update-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px
}

.update-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px
}

.update-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px
}

.filter-tab {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid rgba(255, 255, 255, .1);
  color: var(--text-muted);
  background: transparent
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff
}

/* ============================================================
   CONTACT
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px
}

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px
}

.ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(17, 79, 158, .2);
  border: 1px solid rgba(17, 79, 158, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #5da0f0;
  flex-shrink: 0
}

.ci-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px
}

.ci-value {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500
}

.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-light);
  background: rgba(17, 79, 158, .08)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted)
}

.form-group select option {
  background: var(--primary);
  color: #fff
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.map-wrap {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border)
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-story {
  padding: 100px 0;
  background: var(--secondary)
}

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

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 60px 0
}

.achievement-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition)
}

.achievement-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 79, 158, .4)
}

.achievement-icon {
  font-size: 2rem;
  margin-bottom: 12px
}

.achievement-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, #7dc4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.achievement-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px
}

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: var(--transition)
}

.value-card:hover {
  transform: translateY(-6px)
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem
}

.value-title {
  font-weight: 700;
  margin-bottom: 8px
}

.value-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media(max-width:1100px) {
  .hero-floater {
    display: none
  }

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

  .team-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px){

  .nav-menu,
  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

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

  .about-grid,
  .about-story-grid,
  .service-detail-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .mv-grid {
    grid-template-columns: 1fr
  }

  .process-connector {
    display: none
  }

  .process-flow {
    gap: 24px
  }

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

  .founder-card {
    flex-direction: column;
    text-align: center
  }

  .founder-social {
    justify-content: center
  }

  .why-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr
  }

  .posts-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

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

  .sub-services-list {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }
}

@media(max-width:600px) {
  .container {
    padding: 0 16px;
    text-align: center;
  }

  .service-link {
    display: block;
    align-items: center;
    gap: 6px;
    color: #5da0f0;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
  }

  .counters-grid {
    grid-template-columns: repeat(1, 1fr)
  }

  .services-grid,
  .why-grid,
  .values-grid,
  .testimonials-grid,
  .posts-grid {
    grid-template-columns: 1fr
  }

  .about-highlights {
    grid-template-columns: 1fr
  }

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

  .hero-actions,
  .footer-bottom {
    flex-direction: column
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

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

  .hero-stats {
    gap: 16px
  }

  .slider-arrows {
    display: none
  }
}

/* COMMON STYLE */
.float-whatsapp,
.float-phone {
  position: fixed;
  bottom: 20px;
  z-index: 999;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}

/* WHATSAPP (LEFT SIDE) */
.float-whatsapp {
  left: 20px;
  background: #25D366;
}

.float-whatsapp:hover {
  transform: scale(1.1);
}

/* PHONE (RIGHT SIDE) */
.float-phone {
  right: 20px;
  background: #007bff;
}

/* HIDE PHONE ICON ON DESKTOP */
.float-phone {
  display: none;
}

/* SHOW PHONE ONLY ON MOBILE */
@media (max-width: 768px) {
  .float-phone {
    display: flex;
  }
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.institution-details-section {
  width: 100%;
  padding: 80px 8%;
  background: #f8f8f8;
}

.institution-container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.institution-gallery {
  flex: 1;
  min-width: 320px;
}

.main-image {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.thumbnail-images {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.thumbnail-images img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: 0.3s ease;
  background: #fff;
  padding: 4px;
}

.thumbnail-images img:hover,
.thumbnail-images img.active {
  border-color: #1b5e20;
  transform: scale(1.05);
}

/* RIGHT SIDE */
.institution-content {
  flex: 1;
  min-width: 320px;
  padding-top: 20px;
}

.institution-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #1b1b1b;
  line-height: 1.3;
}

.institution-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.institution-content ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

.institution-content ul li {
  font-size: 17px;
  margin-bottom: 12px;
  color: #333;
}

.explore-btn {
  padding: 14px 34px;
  border: none;
  background: #1b5e20;
  color: #fff;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.explore-btn:hover {
  background: #144818;
}

/* MOBILE RESPONSIVE */
@media(max-width:991px) {

  .institution-container {
    flex-direction: column;
  }

  .main-image {
    height: 400px;
  }

  .institution-content h2 {
    font-size: 32px;
  }

}

@media(max-width:576px) {

  .institution-details-section {
    padding: 50px 5%;
  }

  .main-image {
    height: 300px;
  }

  .thumbnail-images {
    justify-content: center;
  }

  .thumbnail-images img {
    width: 70px;
    height: 70px;
  }

  .institution-content h2 {
    font-size: 26px;
  }

  .institution-content p {
    font-size: 16px;
  }

}

body {
  font-family: 'Inter', sans-serif;
}

.hero-title,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.btn-primary,
.btn-outline,
p,
a,
span {
  font-family: 'Inter', sans-serif;
}

:root {

  /* PRIMARY COLORS */
  --matte-black: #0F1115;
  --electric-blue: #1677FF;
  --white: #FFFFFF;

  /* EXTRA SHADES */
  --dark-card: #161A22;
  --border-color: rgba(255, 255, 255, 0.08);
  --light-text: rgba(255, 255, 255, 0.75);

}

body {
  background: var(--matte-black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

#site-header {
  background: white;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
}

.nav-link {
  color: black;
}

.nav-link:hover,
.nav-link.active {
  color: var(--electric-blue);
}

.btn-primary {
  background: var(--electric-blue);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(22, 119, 255, 0.35);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--electric-blue);
  border-color: var(--electric-blue);
}

.card,
.service-card,
.hero-float-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  color: var(--white);
}

.hl {
  color: var(--electric-blue);
}

p,
.hero-desc,
.section-subtitle {
  color: #FFFFFF;
}

.about-salesyn-section {
  padding: 110px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-salesyn-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-salesyn-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about-salesyn-img-wrap img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
}

.about-salesyn-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.18),
      rgba(0, 0, 0, 0.05));
}

.about-salesyn-content {
  position: relative;
  z-index: 2;
}

.about-salesyn-text {
  color: #555555;
  font-size: 17px;
  line-height: 2;
  margin-top: 24px;
}

.about-salesyn-content .section-title {
  color: #111111;
}

@media(max-width:991px) {

  .about-salesyn-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-salesyn-img-wrap img {
    height: 450px;
  }

}

.industry-problem-section {
  padding: 110px 0;
  background: #f8f7f4;
  position: relative;
  overflow: hidden;
}

.industry-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.industry-text {
  color: #555555;
  font-size: 17px;
  line-height: 2;
  margin-top: 24px;
}

.industry-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.industry-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #222;
  font-weight: 500;
}

.industry-highlight i {
  color: #00AEEF;
  font-size: 18px;
}

.industry-img-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.industry-img-wrap img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
}

@media(max-width:991px) {

  .industry-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .industry-highlights {
    grid-template-columns: 1fr;
  }

  .industry-img-wrap img {
    height: 450px;
  }

}

.salesyn-values-section {
  padding: 110px 0;
  background: #f8f7f4;
  position: relative;
  overflow: hidden;
}

.salesyn-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.salesyn-value-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 42px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
}

.salesyn-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
}

.salesyn-value-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.salesyn-value-icon {
  width: 75px;
  height: 75px;
  border-radius: 22px;
  background: linear-gradient(135deg, #00AEEF, #0072ff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.salesyn-value-icon i {
  color: #fff;
  font-size: 28px;
}

.salesyn-mini-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #00AEEF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.salesyn-value-title {
  font-size: 28px;
  line-height: 1.3;
  color: #111111;
  margin: 0;
}

.salesyn-value-text {
  color: #5c5c5c;
  line-height: 2;
  font-size: 16px;
}

@media(max-width:991px) {

  .salesyn-values-grid {
    grid-template-columns: 1fr;
  }

}

.founder-message-section {
  padding: 120px 0;
  background: #f8f7f4;
  position: relative;
  overflow: hidden;
}

.founder-message-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.founder-img-box {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.founder-img-box img {
  width: 100%;
  height: 760px;
  object-fit: cover;
  display: block;
}

.founder-content {
  position: relative;
}

.founder-text {
  color: #5b5b5b;
  font-size: 17px;
  line-height: 2;
  margin-top: 26px;
}

.founder-signature {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.founder-signature h4 {
  font-size: 28px;
  margin-bottom: 6px;
  color: #111111;
  font-weight: 700;
}

.founder-signature span {
  color: #00AEEF;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media(max-width:991px) {

  .founder-message-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .founder-img-box img {
    height: 500px;
  }

}

/* =========================================================
   SALESYN PREMIUM HEADER
========================================================= */

:root {
  --primary: #00AEEF;
  --dark: #050505;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.08);
}

/* =========================================================
   HEADER
========================================================= */

#site-header {
  position: fixed;

  left: 0;
  width: 100%;
  z-index: 9999;
  transition: 0.4s ease;
  padding: 18px 0;
  backdrop-filter: blur(14px);
  background-color:white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#site-header.scrolled {
  padding: 14px 0;
  
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

/* =========================================================
   NAVBAR
========================================================= */

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

/* =========================================================
   LOGO
========================================================= */

.salesyn-logo {
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  position: relative;
  transition: 0.4s ease;
}

.logo-text::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 15px var(--primary);
}

.salesyn-logo:hover .logo-text {
  transform: translateY(-2px);
  color: #f5f5f5;
}

/* =========================================================
   NAV MENU
========================================================= */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
 
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.35s ease;
  padding: 8px 0;
  letter-spacing: 0.2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #0072ff);
  border-radius: 20px;
  transition: 0.35s ease;
}

.nav-link:hover,
.nav-link.active {
  color:#2E4DFE;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* =========================================================
   CTA BUTTON
========================================================= */

.nav-cta {
  height: 52px;
  padding: 0 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00AEEF, #0072ff);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 174, 239, 0.25);
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(0, 174, 239, 0.35);
}

/* =========================================================
   HAMBURGER
========================================================= */

.hamburger {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border-radius: 12px;
  background: #2E4DFE;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s ease;
}

/* =========================================================
   MOBILE MENU
========================================================= */

#mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: #0b0b0b;
  z-index: 99999;
  padding: 110px 30px 40px;
  transition: 0.4s ease;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.35);
}

#mobile-menu.active {
  right: 0;
}

#mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mob-nav-item {
  margin-bottom: 12px;
}

.mob-nav-link {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: 0.35s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mob-nav-link:hover {
  background: rgba(0, 174, 239, 0.12);
  border-color: rgba(0, 174, 239, 0.35);
  transform: translateX(5px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px) {

  .nav-menu {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

}

@media(max-width:768px) {

  .logo-text {
    font-size: 30px;
  }

  #site-header {
    top: 0px;
  }

}

.salesyn-story-section {
  padding: 120px 0;
  background: #f8f7f4;
  position: relative;
  overflow: hidden;
}

.salesyn-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.salesyn-story-content {
  position: relative;
  z-index: 2;
}

.salesyn-story-text {
  color: #5a5a5a;
  font-size: 17px;
  line-height: 2;
  margin-top: 24px;
}

.salesyn-story-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.salesyn-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111;
  font-weight: 500;
}

.salesyn-highlight i {
  color: #00AEEF;
  font-size: 18px;
}

/* =========================================
                IMAGE SIDE
========================================= */

.salesyn-story-image {
  position: relative;
  min-height: 650px;
}

.salesyn-main-image {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.salesyn-main-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
}

.salesyn-floating-image {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 240px;
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.salesyn-floating-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.salesyn-floating-card {
  position: absolute;
  top: 40px;
  right: -25px;
  background: #fff;
  padding: 26px 30px;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
}

.salesyn-floating-card h4 {
  font-size: 42px;
  margin-bottom: 8px;
  color: #00AEEF;
  font-weight: 800;
}

.salesyn-floating-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* =========================================
                RESPONSIVE
========================================= */

@media(max-width:991px) {

  .salesyn-story-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .salesyn-story-image {
    min-height: auto;
  }

  .salesyn-main-image img {
    height: 500px;
  }

  .salesyn-floating-image {
    width: 180px;
    left: 0;
  }

}

@media(max-width:768px) {

  .salesyn-story-highlights {
    grid-template-columns: 1fr;
  }

  .salesyn-main-image img {
    height: 420px;
  }

  .salesyn-floating-image {
    display: none;
  }

  .salesyn-floating-card {
    right: 15px;
    top: 15px;
    padding: 18px 22px;
  }

  .salesyn-floating-card h4 {
    font-size: 30px;
  }

}

.salesyn-cards-section {
  padding: 120px 0;
  background: #f8f7f4;
  position: relative;
  overflow: hidden;
}

.salesyn-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.salesyn-pro-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 38px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
  transition: 0.45s ease;
  position: relative;
  overflow: hidden;
}

.salesyn-pro-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.salesyn-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.salesyn-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, #00AEEF, #0072ff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0, 174, 239, 0.22);
}

.salesyn-card-icon i {
  color: #fff;
  font-size: 28px;
}

.salesyn-card-label {
  font-size: 13px;
  font-weight: 700;
  color: #00AEEF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.salesyn-card-title {
  font-size: 28px;
  line-height: 1.35;
  color: #111111;
  margin-bottom: 22px;
  font-weight: 700;
}

.salesyn-card-text {
  color: #5a5a5a;
  line-height: 2;
  font-size: 16px;
}

.salesyn-card-line {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 32px 0 22px;
}

.salesyn-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.salesyn-card-footer span {
  color: #111;
  font-weight: 600;
}

.salesyn-card-footer i {
  color: #00AEEF;
  font-size: 18px;
}

/* RESPONSIVE */

@media(max-width:1200px) {

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

}

@media(max-width:768px) {

  .salesyn-cards-grid {
    grid-template-columns: 1fr;
  }

  .salesyn-card-title {
    font-size: 24px;
  }

}

< !--=========================================SALESYN PROFESSIONAL CARDS=========================================--><section class="salesyn-cards-section"><div class="container">< !-- SECTION TITLE --><div class="text-center" style="margin-bottom:70px;"><div class="section-tag reveal">Why Salesyn </div><h2 class="section-title reveal reveal-delay-1">Practical Learning Designed For Real Career Growth </h2><p class="section-subtitle reveal reveal-delay-2">Industry-focused learning experiences that help students build confidence,
communication,
and professional skills through practical exposure. </p></div>< !-- GRID --><div class="salesyn-cards-grid">< !-- CARD 1 --><div class="salesyn-pro-card reveal"><div class="salesyn-card-top"><div class="salesyn-card-icon"><i class="fas fa-briefcase"></i></div><span class="salesyn-card-label">Industry Problem </span></div><h3 class="salesyn-card-title">“Colleges teach theory. Companies need practical skills.” </h3><p class="salesyn-card-text">One of the biggest challenges in today’s education system is the gap between academic learning and real industry expectations. While colleges focus mainly on textbooks and exams,
companies expect candidates to communicate confidently,
think practically,
and handle real business situations professionally. </p><div class="salesyn-card-line"></div><div class="salesyn-card-footer"><a href="contact-us.php" class="salesyn-card-link"><span>Industry Readiness</span><i class="fas fa-arrow-right"></i></a></div></div>< !-- CARD 2 --><div class="salesyn-pro-card reveal reveal-delay-1"><div class="salesyn-card-top"><div class="salesyn-card-icon"><i class="fas fa-users"></i></div><span class="salesyn-card-label">Small Batch Model </span></div><h3 class="salesyn-card-title">Personalized Learning With Direct Mentorship </h3><p class="salesyn-card-text">Salesyn follows a small batch model to ensure every student receives personal attention,
active interaction,
and continuous guidance. With only 5–6 members per batch,
students gain better communication practice,
confidence development,
and a comfortable learning experience. </p><div class="salesyn-card-line"></div><div class="salesyn-card-footer"><a href="contact-us.php" class="salesyn-card-link"><span>Interactive Learning</span><i class="fas fa-arrow-right"></i></a></div></div>< !-- CARD 3 --><div class="salesyn-pro-card reveal reveal-delay-2"><div class="salesyn-card-top"><div class="salesyn-card-icon"><i class="fas fa-lightbulb"></i></div><span class="salesyn-card-label">Founder Message </span></div><h3 class="salesyn-card-title">Building Confidence Through Practical Learning </h3><p class="salesyn-card-text">“At Salesyn,
we believe practical skills and confidence can completely transform a student’s career journey. Our goal is not only to teach sales concepts,
but to help students improve communication,
overcome hesitation,
and gain the confidence needed to succeed professionally.” </p><div class="salesyn-card-line"></div><div class="salesyn-card-footer"><a href="contact-us.php" class="salesyn-card-link"><span>Mentorship & Growth</span><i class="fas fa-arrow-right"></i></a></div></div>< !-- CARD 4 --><div class="salesyn-pro-card reveal"><div class="salesyn-card-top"><div class="salesyn-card-icon"><i class="fas fa-map-marker-alt"></i></div><span class="salesyn-card-label">Hyderabad Location </span></div><h3 class="salesyn-card-title">Real Learning Environment In Hyderabad </h3><p class="salesyn-card-text">Based in Hyderabad,
Salesyn provides practical offline training designed around real business exposure and workplace learning experiences. Students gain valuable understanding of professional communication,
teamwork,
and industry culture. </p><div class="salesyn-card-line"></div><div class="salesyn-card-footer"><a href="contact-us.php" class="salesyn-card-link"><span>Business Exposure</span><i class="fas fa-arrow-right"></i></a></div></div>< !-- CARD 5 --><div class="salesyn-pro-card reveal reveal-delay-1"><div class="salesyn-card-top"><div class="salesyn-card-icon"><i class="fas fa-chart-line"></i></div><span class="salesyn-card-label">Practical Exposure </span></div><h3 class="salesyn-card-title">Learning Beyond Traditional Classrooms </h3><p class="salesyn-card-text">Salesyn focuses on practical implementation rather than only theoretical teaching. Through real-time activities,
communication practice,
mentorship,
and interactive sessions,
students gain hands-on learning experiences that prepare them for actual workplace situations. </p><div class="salesyn-card-line"></div><div class="salesyn-card-footer"><a href="contact-us.php" class="salesyn-card-link"><span>Hands-On Training</span><i class="fas fa-arrow-right"></i></a></div></div>< !-- CARD 6 --><div class="salesyn-pro-card reveal reveal-delay-2"><div class="salesyn-card-top"><div class="salesyn-card-icon"><i class="fas fa-rocket"></i></div><span class="salesyn-card-label">Confidence Transformation </span></div><h3 class="salesyn-card-title">Creating Confident Professionals </h3><p class="salesyn-card-text">One of the core goals of Salesyn is confidence transformation. Through communication training,
practical sessions,
mentorship,
and continuous interaction,
students develop self-confidence,
professional personality,
and the ability to face interviews and workplace challenges confidently. </p><div class="salesyn-card-line"></div><div class="salesyn-card-footer"><a href="contact-us.php" class="salesyn-card-link"><span>Career Confidence</span><i class="fas fa-arrow-right"></i></a></div></div></div></div></section><style>.salesyn-cards-section {
  padding: 120px 0;
  background: #f8f7f4;
  position: relative;
  overflow: hidden;
}

.salesyn-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.salesyn-pro-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 38px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
  transition: 0.45s ease;
  position: relative;
  overflow: hidden;
}

.salesyn-pro-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.salesyn-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.salesyn-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, #00AEEF, #0072ff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(0, 174, 239, 0.22);
}

.salesyn-card-icon i {
  color: #fff;
  font-size: 28px;
}

.salesyn-card-label {
  font-size: 13px;
  font-weight: 700;
  color: #00AEEF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.salesyn-card-title {
  font-size: 28px;
  line-height: 1.35;
  color: #111111;
  margin-bottom: 22px;
  font-weight: 700;
}

.salesyn-card-text {
  color: #5a5a5a;
  line-height: 2;
  font-size: 16px;
}

.salesyn-card-line {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 32px 0 22px;
}



.salesyn-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  transition: 0.35s ease;
}

.salesyn-card-link span {
  color: #111;
  font-weight: 600;
  transition: 0.35s ease;
}

.salesyn-card-link i {
  color: #00AEEF;
  font-size: 18px;
  transition: 0.35s ease;
}

.salesyn-card-link:hover span {
  color: #00AEEF;
}

.salesyn-card-link:hover i {
  transform: translateX(6px);
}

/* RESPONSIVE */

@media(max-width:1200px) {

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

}

@media(max-width:768px) {

  .salesyn-cards-grid {
    grid-template-columns: 1fr;
  }

  .salesyn-card-title {
    font-size: 24px;
  }

}

.team-section {
  padding: 120px 0;
  background: #f8f7f4;
  position: relative;
  overflow: hidden;
}

/* =========================================
                FOUNDER CARD
========================================= */

.founder-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
  background: #ffffff;
  border-radius: 34px;
  padding: 45px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
  margin-bottom: 70px;
}

.founder-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(0, 174, 239, 0.10);
  color: #00AEEF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.founder-name {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #111111;
  font-weight: 800;
}

.founder-role {
  color: #00AEEF;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

.founder-bio {
  color: #5b5b5b;
  line-height: 2;
  font-size: 16px;
}

.founder-social {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.founder-social a {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 18px;
  transition: 0.35s ease;
  text-decoration: none;
}

.founder-social a:hover {
  background: #00AEEF;
  color: #fff;
  transform: translateY(-5px);
}

/* =========================================
                TEAM GRID
========================================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-member {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
}

.team-member:hover {
  transform: translateY(-8px);
}

.team-member img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.member-name {
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  padding: 28px 28px 10px;
}

.member-role {
  color: #666;
  padding: 0 28px 30px;
  line-height: 1.8;
}

/* =========================================
                RESPONSIVE
========================================= */

@media(max-width:1200px) {

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

}

@media(max-width:991px) {

  .founder-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-card img {
    height: 500px;
  }

}

@media(max-width:768px) {

  .team-grid {
    grid-template-columns: 1fr;
  }

  .founder-name {
    font-size: 36px;
  }

  .founder-card {
    padding: 30px;
  }

  .founder-card img {
    height: 420px;
  }

}
/* ===================================
   LAPTOP - 1024px
=================================== */

@media screen and (max-width:1024px){

    .container{
        width: 92%;
    }

    .hero-title,
    .page-banner h1{
        font-size: 64px !important;
        line-height: 1.1;
    }

    .section-title,
    .modern-fees-header h2,
    .modern-faq-box h2{
        font-size: 52px !important;
    }

    .services-grid,
    .modern-fees-cards,
    .program-grid{
        grid-template-columns: repeat(2,1fr);
        gap: 24px;
    }

    .hero-content,
    .page-banner .container{
        padding-top: 40px;
    }

    .service-card,
    .modern-fees-card{
        width: 100%;
    }

    .modern-faq-box{
        padding: 50px;
    }

}

/* ===================================
   TABLET - 768px
=================================== */

@media screen and (max-width:768px){

    body{
        overflow-x: hidden;
    }

    .container{
        width: 92%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero,
    .page-banner{
        min-height: auto;
        padding: 130px 0 90px;
    }

    .hero-title,
    .page-banner h1{
        font-size: 46px !important;
        line-height: 1.15;
        text-align: center;
    }

    .hero-desc,
    .page-banner p{
        font-size: 15px;
        line-height: 1.9;
        text-align: center;
    }

    .section-title,
    .modern-fees-header h2,
    .modern-faq-box h2{
        font-size: 38px !important;
        line-height: 1.2;
    }

    .services-grid,
    .modern-fees-cards,
    .program-grid,
    .learn-gallery-grid{
        grid-template-columns: 1fr !important;
    }

    .hero-actions,
    .modern-faq-buttons{
        flex-direction: column;
        gap: 16px;
    }

    .btn-primary,
    .btn-outline,
    .modern-primary-btn,
    .modern-secondary-btn{
        width: 100%;
        justify-content: center;
    }

    .modern-faq-box{
        padding: 35px 24px;
    }

    .service-card,
    .modern-fees-card,
    .program-card{
        border-radius: 24px;
    }

    img{
        max-width: 100%;
        height: auto;
    }

}

/* ===================================
   MOBILE L - 425px
=================================== */

@media screen and (max-width:425px){

    .container{
        width: 94%;
    }

    .hero,
    .page-banner{
        padding: 120px 0 80px;
    }

    .hero-title,
    .page-banner h1{
        font-size: 36px !important;
        line-height: 1.2;
    }

    .section-title,
    .modern-fees-header h2,
    .modern-faq-box h2{
        font-size: 30px !important;
    }

    .hero-desc,
    .page-banner p,
    p{
        font-size: 14px;
        line-height: 1.8;
    }

    .btn-primary,
    .btn-outline,
    .modern-primary-btn,
    .modern-secondary-btn{
        padding: 15px 20px;
        font-size: 14px;
    }

    .modern-faq-box{
        padding: 28px 18px;
    }

    .service-card,
    .modern-fees-card,
    .program-card{
        padding: 24px;
    }

    .service-title,
    .modern-fees-card h3{
        font-size: 24px;
    }

}

/* ===================================
   MOBILE M - 375px
=================================== */

@media screen and (max-width:375px){

    .hero-title,
    .page-banner h1{
        font-size: 32px !important;
    }

    .section-title,
    .modern-fees-header h2,
    .modern-faq-box h2{
        font-size: 26px !important;
    }

    .hero-desc,
    .page-banner p,
    p{
        font-size: 13px;
    }

    .service-title,
    .modern-fees-card h3{
        font-size: 22px;
    }

    .btn-primary,
    .btn-outline{
        font-size: 13px;
    }

    .modern-faq-question h3{
        font-size: 16px;
        width: 80%;
    }

}

/* ===================================
   MOBILE S - 320px
=================================== */

@media screen and (max-width:320px){

    .container{
        width: 96%;
    }

    .hero-title,
    .page-banner h1{
        font-size: 28px !important;
        line-height: 1.3;
    }

    .section-title,
    .modern-fees-header h2,
    .modern-faq-box h2{
        font-size: 22px !important;
    }

    .hero-desc,
    .page-banner p,
    p{
        font-size: 12px;
        line-height: 1.7;
    }

    .btn-primary,
    .btn-outline,
    .modern-primary-btn,
    .modern-secondary-btn{
        padding: 14px 16px;
        font-size: 12px;
    }

    .service-card,
    .modern-fees-card,
    .program-card{
        padding: 18px;
    }

    .service-title,
    .modern-fees-card h3{
        font-size: 20px;
    }

    .modern-faq-question h3{
        font-size: 15px;
    }

    .modern-faq-box{
        padding: 20px 14px;
    }

}
/* =========================================================
   RESPONSIVE MEDIA QUERIES
   Devices:
   Laptop 1024
   Tablet 768
   Mobile L 425
   Mobile M 375
   Mobile S 320
========================================================= */


/* =========================================================
   LAPTOP - 1024px
========================================================= */

@media only screen and (max-width: 1024px){

    .container{
        width: 92%;
        max-width: 100%;
    }

    .hero-title,
    .page-banner h1{
        font-size: 62px !important;
        line-height: 1.1;
    }

    .section-title{
        font-size: 50px !important;
    }

    .services-grid,
    .program-grid,
    .modern-fees-cards{
        grid-template-columns: repeat(2,1fr);
        gap: 24px;
    }

    .modern-faq-box{
        padding: 50px;
    }

}


/* =========================================================
   TABLET - 768px
========================================================= */

@media only screen and (max-width: 768px){

    body{
        overflow-x: hidden;
    }

    .container{
        width: 92%;
        padding-left: 10px;
        padding-right: 10px;
    }

    section{
        padding: 80px 0 !important;
    }

    .hero,
    .page-banner{
        min-height: auto;
        padding: 130px 0 90px;
    }

    .hero-title,
    .page-banner h1{
        font-size: 46px !important;
        line-height: 1.15;
        text-align: center;
    }

    .hero-desc,
    .page-banner p{
        font-size: 15px;
        line-height: 1.9;
        text-align: center;
    }

    .section-title,
    .modern-fees-header h2,
    .modern-faq-box h2{
        font-size: 38px !important;
        line-height: 1.2;
    }

    .services-grid,
    .program-grid,
    .modern-fees-cards,
    .learn-gallery-grid{
        grid-template-columns: 1fr !important;
    }

    .hero-actions,
    .modern-faq-buttons{
        flex-direction: column;
        gap: 16px;
    }

    .btn-primary,
    .btn-outline,
    .modern-primary-btn,
    .modern-secondary-btn{
        width: 100%;
        justify-content: center;
    }

    .modern-faq-box{
        padding: 35px 24px;
    }

    img{
        max-width: 100%;
        height: auto;
    }

}


/* =========================================================
   MOBILE LARGE - 425px
========================================================= */

@media only screen and (max-width: 425px){

    .container{
        width: 94%;
    }

    .hero,
    .page-banner{
        padding: 120px 0 80px;
    }

    .hero-title,
    .page-banner h1{
        font-size: 36px !important;
        line-height: 1.2;
    }

    .section-title,
    .modern-fees-header h2,
    .modern-faq-box h2{
        font-size: 30px !important;
    }

    .hero-desc,
    .page-banner p,
    p{
        font-size: 14px;
        line-height: 1.8;
    }

    .btn-primary,
    .btn-outline,
    .modern-primary-btn,
    .modern-secondary-btn{
        padding: 15px 20px;
        font-size: 14px;
    }

    .service-card,
    .program-card,
    .modern-fees-card{
        padding: 24px;
        border-radius: 24px;
    }

    .modern-faq-box{
        padding: 28px 18px;
    }

}


/* =========================================================
   MOBILE MEDIUM - 375px
========================================================= */

@media only screen and (max-width: 375px){

    .hero-title,
    .page-banner h1{
        font-size: 32px !important;
    }

    .section-title,
    .modern-fees-header h2,
    .modern-faq-box h2{
        font-size: 26px !important;
    }

    .hero-desc,
    .page-banner p,
    p{
        font-size: 13px;
    }

    .service-title,
    .modern-fees-card h3{
        font-size: 22px;
    }

    .btn-primary,
    .btn-outline{
        font-size: 13px;
    }

    .modern-faq-question h3{
        font-size: 16px;
        width: 80%;
    }

}


/* =========================================================
   MOBILE SMALL - 320px
========================================================= */

@media only screen and (max-width: 320px){

    .container{
        width: 96%;
    }

    .hero-title,
    .page-banner h1{
        font-size: 28px !important;
        line-height: 1.3;
    }

    .section-title,
    .modern-fees-header h2,
    .modern-faq-box h2{
        font-size: 22px !important;
    }

    .hero-desc,
    .page-banner p,
    p{
        font-size: 12px;
        line-height: 1.7;
    }

    .btn-primary,
    .btn-outline,
    .modern-primary-btn,
    .modern-secondary-btn{
        padding: 14px 16px;
        font-size: 12px;
    }

    .service-card,
    .program-card,
    .modern-fees-card{
        padding: 18px;
    }

    .service-title,
    .modern-fees-card h3{
        font-size: 20px;
    }

    .modern-faq-question h3{
        font-size: 15px;
    }

    .modern-faq-box{
        padding: 20px 14px;
    }

}
/* ===================================
   SALESYN LOGO
=================================== */

.salesyn-logo{
    display: contents;
    align-items: center;
}

/* LOGO IMAGE */
.salesyn-logo-img{
    width: 170px;
    height: auto;

    object-fit: contain;
}

/* ===================================
   RESPONSIVE
=================================== */

@media screen and (max-width:768px){

    .salesyn-logo-img{
        width: 140px;
    }

}

@media screen and (max-width:425px){

    .salesyn-logo-img{
        width: 120px;
    }

}

@media screen and (max-width:320px){

    .salesyn-logo-img{
        width: 105px;
    }

}
@media screen and (max-width:1440px){

    .salesyn-logo-img{
        width: 140px;
    }

}

/* FORCE FOOTER CONTACT TEXT BLACK */

#site-footer .f-contact-item i{
    color:#000 !important;
}

#site-footer .f-contact-item span{
    color:#000 !important;
}

#site-footer .newsletter-wrap p{
    color:#000 !important;
}

#site-footer .newsletter-form input{
    color:#000 !important;
    background:#fff !important;
}

#site-footer .newsletter-form input::placeholder{
    color:#555 !important;
}

/* QUICK LINKS */
#site-footer .footer-col ul li a{
    color:#000 !important;
}

/* HEADINGS */
#site-footer .footer-col h4{
    color:#000 !important;
}

/* BRAND TEXT */
#site-footer .footer-brand p{
    color:#000 !important;
}
/* =========================
}

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

.form-group input,
.form-group select{
    width:100%;
    height:56px;
    border:1px solid #d1d5db;
    border-radius:14px;
    padding:0 18px;
    font-size:15px;
    outline:none;
    transition:0.3s ease;
    font-family:'Inter',sans-serif;
}

.form-group input:focus,
.form-group select:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,0.12);
}

.popup-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s ease;
}

.popup-btn:hover{
    transform:translateY(-3px);
}

/* MOBILE */
@media(max-width:991px){

    .salesyn-popup-box{
        grid-template-columns:1fr;
        max-width:500px;
    }

    .salesyn-popup-left{
        padding:40px 30px;
    }

    .salesyn-popup-right{
        padding:40px 30px;
    }

    .salesyn-popup-left h2{
        font-size:30px;
    }

}
/* POPUP MAIN */
.salesyn-popup{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

/* POPUP BOX */
.salesyn-popup-box{
    width: 90%;
    max-width: 950px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

/* CLOSE BUTTON */
.salesyn-close{
    position: absolute;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #111827;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

/* LEFT SIDE */
.salesyn-popup-left{
    background: linear-gradient(135deg,#0f172a,#2563eb);
    color: #fff;
    padding: 50px;
}

.salesyn-popup-left h2{
    font-size: 40px;
    margin-bottom: 20px;
}

.salesyn-popup-left p{
    line-height: 1.8;
}

/* RIGHT SIDE */
.salesyn-popup-right{
    padding: 50px;
}

.salesyn-popup-right h3{
    font-size: 30px;
    margin-bottom: 25px;
    color: #111827;
}

/* FORM */
.form-group{
    margin-bottom: 18px;
}

.form-group input,
.form-group select{
    width: 100%;
    height: 55px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 15px;
}

/* BUTTON */
.popup-btn{
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* MOBILE */
@media(max-width:991px){

    .salesyn-popup-box{
        grid-template-columns: 1fr;
    }

}
.logo{
    display:flex;
    align-items:center;
    margin:0 !important;
    padding:0 !important;
    line-height:0;
}

.logo img{
    height: 65px;px;
    width:auto;
    display:block;
    margin:0;
    padding:0;
}
.navbar{
    height:90px;
    display:flex;
    align-items:center;
}