*{margin:0;padding:0;box-sizing:border-box;font-family:'Inter',sans-serif}

html {
  scroll-behavior: smooth;
}

body {
  opacity: 0;
  transition: opacity 0.35s ease;
}

body.page-loaded {
  opacity: 1;
}

body.page-leave {
  opacity: 0;
}

.navbar{
  position:sticky;top:0;width:100%;
  padding:12px 48px;
  display:flex;justify-content:space-between;align-items:center;
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0,0,0,0.05);
  z-index:1000;
}
.logo img{height:50px}
.nav-links{display:flex;gap:32px}
.nav-links a{position:relative;text-decoration:none;color:#222;font-size:15px;font-weight:550}
.nav-links a::after{content:"";position:absolute;left:0;bottom:0;width:0;height:2px;background:#2f5b8f;transition:.3s}
.nav-links a:hover{color:#2f5b8f}
.nav-links a:hover::after{width:100%}
.nav-right{display:flex;align-items:center;gap:14px}
.btn-call{background:#2f5b8f;color:#fff;padding:10px 18px;border:none;border-radius:999px;font-weight:600;cursor:pointer;transition:.3s;text-decoration:none}
.btn-call:hover{background:#24486f;transform:translateY(-1px)}
.menu{font-size:22px;cursor:pointer;display:none}

.hero{
  position:relative;height:100vh;
  background:url("../images/Empowering People.jpg") center/cover no-repeat;
  display:flex;align-items:center;
}

.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(110deg,rgba(0,0,0,0.92) 15%,rgba(0,0,0,0.75) 40%,rgba(0,0,0,0.35) 70%,transparent);
}

.hero-content{
  position:relative;z-index:2;color:#fff;
  max-width:820px; 
  margin-left:120px;
  animation:fadeUp 1s ease forwards;
}

.hero h1{
  font-size:clamp(52px, 6vw, 88px);
  font-weight:800;
  line-height:1.02;
  margin-bottom:24px;
  letter-spacing:-1px;
}

.hero h1 span{color:#4da3ff}

.hero p{
  font-size:18px;
  color:#ddd;
  line-height:1.7;
  margin-bottom:36px;
  max-width:640px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  margin-bottom:40px;
}

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

.btn-primary{
  background:#2f5b8f;color:#fff;
  padding:16px 28px; 
  border:none;border-radius:12px;
  cursor:pointer;font-weight:600;
  font-size:16px;
  transition:.3s
}
.btn-primary:hover{background:#24486f;transform:translateY(-3px)}

.btn-secondary{
  display:flex;align-items:center;gap:10px;
  background:#fff;color:#000;
  padding:16px 26px;
  border-radius:12px;
  border:none;cursor:pointer;
  font-weight:600;font-size:16px;
  transition:.3s
}
.btn-secondary:hover{background:#f1f1f1;transform:translateY(-3px)}

.icon{width:20px;height:20px}


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

@media(min-width:768px){
  .navbar{padding:12px 40px}

  .nav-links{display:flex}
  .menu{display:none}

  .hero{
    padding:120px 60px;
  }

  .hero-content{
    max-width:700px;
    margin-left:60px;
  }

  .hero h1{
    font-size:clamp(48px,6vw,80px);
  }

  .hero p{
    font-size:17px;
  }

  .hero-buttons{
    flex-direction:row;
  }

  .btn-primary,.btn-secondary{
    width:auto;
    padding:16px 26px;
  }
}

@media(max-width:767px){
  .hero{
    display:flex;
    align-items:center;
    background:url("../images/Empowering People.jpg") center/cover no-repeat;
  }

  .nav-links{
    position:absolute;
    top:70px;left:0;width:100%;
    background:#fff;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:20px 0;
    display:none;
  }

  .nav-links.active{
    display:flex;
  }

  .menu{display:block}
}


.side-panel {
  position: absolute;
  right: -1060px; 
  bottom: 1.5%;
  transform: translateY(-50%);
  z-index: 5;

  background: rgba(255,255,255,0.10);

  padding: 40px 44px;
  border-radius: 22px;

  box-shadow: 0 15px 60px rgba(0,0,0,0.35);
}

.side-panel::after {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);

  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.10);
}

.side-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.side-panel a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  transition: 0.3s;
}

.side-panel a:hover {
  color: #4da3ff;
  transform: translateX(8px);
}


@media (max-width: 768px) {

  .side-panel {
    position: static;
    transform: none;

    margin-top: 20px;

    width: 100%;
    max-width: 340px;

    padding: 18px 20px;

    display: flex;
    justify-content: center;

    border-radius: 18px;
  }

  .side-panel ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
  }

  .side-panel a {
    font-size: 14px;
    white-space: nowrap;
  }

  .side-panel::after {
    display: none;
  }
}

.cta-overlay-section{
  position:fixed;
  inset:0;
  display:flex;
  justify-content:center;
  align-items:center;

  background:rgba(10,20,35,0.85);
  backdrop-filter:blur(6px);

  opacity:0;
  pointer-events:none;
  transition:0.5s ease;
  z-index:2000;
}

.cta-overlay-section.active{
  opacity:1;
  pointer-events:auto;
}

.cta-box{
  background:rgba(20,35,55,0.95);
  padding:50px 40px;
  border-radius:20px;
  text-align:center;
  max-width:700px;
  color:#fff;

  transform:translateY(40px);
  transition:0.5s ease;
}

.cta-overlay-section.active .cta-box{
  transform:translateY(0);
}

.cta-box h2{
  font-size:26px;
  margin-bottom:10px;
}

.cta-box p{
  color:#cfd6df;
  margin-bottom:30px;
}

.cta-buttons{
  display:flex;
  gap:15px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn-outline,
.btn-glow{
  padding:14px 22px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  transition:all 0.3s ease;
}

.btn-outline{
  border:2px solid #4da3ff;
  color:#4da3ff;
}

.btn-glow{
  background:#2f5b8f;
  color:#fff;
  box-shadow:0 0 20px rgba(77,163,255,0.6);
}

.btn-outline:hover,
.btn-glow:hover{
  transform:scale(1.08);
}

.btn-glow:hover{
  box-shadow:0 0 30px rgba(77,163,255,0.9);
}

.close-btn{
  position:absolute;
  top:20px;
  right:25px;
  font-size:24px;
  color:#fff;
  cursor:pointer;
}

@media (max-width:768px){

  .cta-box{
    width:90%;
    padding:35px 25px;
  }

  .cta-buttons{
    display:flex;
    flex-direction:column;
    width:100%;
    gap:12px;
  }

  .cta-buttons a{
    display:block;
    width:100%;
    text-align:center;
  }

  .btn-outline,
  .btn-glow{
    width:100%;
  }
}


/* INDUSTRIES SECTION */
.industries {
  background: #f6f6f6;
  padding: 90px 70px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header span {
  font-size: 11px;
  letter-spacing: 2px;
  color: #888;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 600;
  margin: 12px 0;
}

.section-header p {
  font-size: 15px;
  color: #666;
}

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

.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;

  border: 1px solid #eaeaea;
  transition: all 0.25s ease;

  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card .tag {
  font-size: 11px;
  color: #888;
  margin: 16px 18px 6px;
}

.card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 18px 10px;
}

.card p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.5;

  flex-grow: 1;
}

.card button {
  margin:0 20px 20px;

  padding:12px 14px;
  border-radius:10px;

  border:1px solid #d1d5db;
  background:#fff;
  color:#111827;

  font-size:14px;
  cursor:pointer;

  display:flex;
  align-items:center;
  gap:6px;

  width:fit-content;
  align-self:center;
  margin-top:auto;

  transition:all 0.3s ease;
}

.card button:hover {
  border-color:#24486f;
  background:#24486f;
  color:#fff;
  box-shadow:0 10px 22px rgba(37,99,235,0.15);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {

  .navbar {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .btn-outline {
    display: none;
  }

  .menu {
    display: block;
  }

  .hero {
    height: auto;
    padding: 120px 20px 60px;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons button {
    width: 100%;
  }
}

.industries{
  background:#f6f6f6;
  padding:90px 70px;
}

@media(max-width:768px){
  .industries{
    padding:100px 20px;
  }
}

.section-header{
  text-align:center;
  margin-bottom:60px;
}

.section-header span{
  font-size:11px;
  letter-spacing:2px;
  color:#888;
}

.section-header h2{
  font-size:36px;
  font-weight:700;
  margin:12px 0;
}

.section-header p{
  font-size:15px;
  color:#666;
}

@media(max-width:768px){
  .section-header h2{
    font-size:26px;
  }

  .section-header p{
    font-size:14px;
  }
}

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

@media(max-width:1024px){
  .cards{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .cards{
    grid-template-columns:1fr;
    gap:20px;
  }
}

.card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  border:1px solid #eaeaea;
  display:flex;
  flex-direction:column;
  transition:.25s;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(0,0,0,0.08);
}

.img-wrap{
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
}

.img-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

.card:hover img{
  transform:scale(1.05);
}

.card .tag{
  font-size:11px;
  color:#888;
  margin:16px 18px 6px;
}

.card h3{
  font-size:18px;
  font-weight:600;
  margin:0 18px 10px;
}

.card p{
  font-size:14px;
  color:#555;
  margin:0 18px 20px;
  line-height:1.6;
  flex-grow:1;
}

.link-btn{
  margin:0 18px 18px;
  padding:10px 14px;
  font-size:13px;
  background:transparent;
  border:1px solid #ddd;
  border-radius:8px;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  cursor:pointer;
  transition:.2s;

  width:calc(100% - 36px);
}

.link-btn:hover{
  background:#111;
  color:#fff;
  border-color:#111;
}

.icon{
  width:16px;
  height:16px;
}



/* PRICING SECTION */
.pricing {
  color: white;
  background: #081433;
  text-align: center;
  padding: 100px 20px;
}

.pricing-header span {
  font-size: 12px;
  letter-spacing: 2px;
  color: #9aa3b2;
}

.pricing-header h2 {
  font-size: 42px;
  margin: 10px 0;
}

.pricing-header p {
  color: #9aa3b2;
  margin-bottom: 30px;
  font-size: 15px;
}

.toggle {
  display: inline-flex;
  background: #1b2a4a;
  padding: 4px;
  border-radius: 30px;
}

.toggle button {
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  background: transparent;
  color: white;
  transition: 0.2s ease;
}

.toggle .active {
  background: #ffffff;
  color: black;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 70px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  background: #ffffff;
  color: black;
  padding: 35px;
  border-radius: 16px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.price-card.featured {
  transform: scale(1.07);
  border: 2px solid #4f7cff;
}

.price-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4f7cff, #6fa8ff);
  color: white;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: bold;
}

.price-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.line {
  height: 2px;
  background: #eee;
  margin: 15px 0 20px;
}

.price {
  font-size: 44px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.price span {
  font-size: 14px;
  color: #666;
}

.savings {
  display: none;
  color: #4f7cff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.btn-card {
  width: 100%;
  background: linear-gradient(135deg, #2f4b6c, #4f7cff);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 10px;
  margin-bottom: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(79,124,255,0.4);
}

.price-card ul {
  list-style: none;
  padding: 0;
}

.price-card ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #333;
}

@media (max-width: 768px) {
  .pricing {
    padding: 70px 15px;
  }

  .pricing-header h2 {
    font-size: 32px;
  }

  .price-card.featured {
    transform: scale(1);
  }
}


/* SERVICES SECTION */
.services-section {
  padding: 120px 24px;
  text-align: center;
  border-bottom:5px solid #b7bcc1;
}

.services-section-header span {
  font-size: 12px;
  letter-spacing: 2px;
  color: #9ca3af;
}

.services-section-header h2 {
  font-size: 46px;
  margin: 12px 0;
  color: #111827;
}

.services-section-header p {
  color: #6b7280;
  margin: 0 auto 80px;
  line-height: 1.7;
}

.services-section-list {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.services-card {
  display: flex;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
  min-height: 280px;
  align-items: stretch;
}

.services-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.10);
  border-color: #d1d5db;
}

.services-card-image {
  width: 52%;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.services-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-card-content {
  width: 48%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 6px 4px;
}

.card-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 6px;
}

.card-header small {
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
  letter-spacing: 0.3px;
}

.line {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #d1d5db, #9ca3af, #d1d5db);
  border-radius: 999px;
}

.services-card-content .tag {
  font-size: 12px;
  color: #6b7280;
  margin-top: 10px;
}

.services-card-content h3 {
  margin: 10px 0;
  font-size: 22px;
  color: #111827;
}

.services-card-content p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 14px;
}

.services-card-content button {
  margin-top: auto;
  align-self: flex-end;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111827;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.services-card-content button:hover {
  border-color: #24486f;
  background: #24486f;
  color: #fff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.15);
}

@media (max-width: 768px) {
  .services-section-list {
    grid-template-columns: 1fr;
  }

  .services-card {
    flex-direction: column;
    padding: 16px;
  }

  .services-card-image {
    width: 100%;
    height: 220px;
  }

  .services-card-content {
    width: 100%;
  }
}


/* TESTIMONIALS SECTION */
.custom-section * {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.custom-section {
  background: #f8fafc;
  color: #0f172a;
}

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

.custom-section .testimonials-section {
  padding: 110px 0;
  border-bottom: 6px solid #2a2c2e;
}

.custom-section .center {
  text-align: center;
}

.custom-section .eyebrow {
  font-size: 12px;
  letter-spacing: .28em;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.custom-section h2 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  margin-bottom: 12px;
  font-weight: 700;
}

.custom-section .subtitle {
  color: rgb(216, 216, 216);
  font-size: 16px;
}

.custom-section .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 70px;
}

.custom-section .card {
  background: #ffffff;
  border: 1px solid #e5eaf0;
  border-radius: 26px;
  padding: 30px;
  transition: all .35s ease;
  cursor: pointer;
}

.custom-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.custom-section .card.active {
  background: linear-gradient(135deg,#1e293b,#3b5b8a);
  color: #fff;
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
  border: none;
}

.custom-section .profile {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.custom-section .profile img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,0,0,0.05);
}

.custom-section .card.active .profile img {
  border: 2px solid rgba(255,255,255,0.25);
}

.custom-section .name {
  font-weight: 600;
  font-size: 15px;
}

.custom-section .role {
  font-size: 13px;
  color: #64748b;
}

.custom-section .card.active .role {
  color: #cbd5f5;
}

.custom-section .stars {
  margin: 12px 0;
  color: #fbbf24;
  letter-spacing: 3px;
  font-size: 16px;
}

.custom-section .quote {
  font-size: 15px;
  line-height: 1.75;
  color: #475569;
}

.custom-section .card.active .quote {
  color: #f1f5f9;
}

/* ================= ABOUT ================= */
.custom-section .about-section {
  padding: 110px 0;
}

.custom-section .wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.custom-section .about-section p {
  margin: 22px 0;
  color: #475569;
  font-size: 16px;
  max-width: 560px;
}

.custom-section .info-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 22px;
  margin: 34px 0;
}

.custom-section .info-box {
  border: 1px solid #e5eaf0;
  border-radius: 20px;
  padding: 24px;
  background: #ffffff;
  transition: all .3s ease;
}

.custom-section .info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.custom-section .info-box h3 {
  margin-bottom: 8px;
  font-weight: 600;
}

.custom-section .info-box p {
  font-size: 14px;
  color: #64748b;
}

.custom-section .about-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 200px 200px 40px 40px;
  box-shadow: 0 30px 80px rgba(15,23,42,.15);
}

.custom-section .about-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg,#24486f,#2f5b8f);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all .25s ease;
   display: block;
  width: fit-content;
  margin: 20px auto 0;
}


.custom-section .about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(36,72,111,0.35);
}

@media(max-width:900px){

  .custom-section .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .custom-section .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .custom-section .about-image img {
    height: 420px;
    border-radius: 40px;
  }

  .custom-section .info-grid {
    grid-template-columns: 1fr;
  }

}


/* COMMUNITY SECTION */
.cf-section *{
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

.cf-section{
  background:#fff;
}

.cf-community{
  position:relative;
  min-height:95vh;
  background:url("../images/Community.png") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding:120px 20px 180px;
  overflow:hidden;
}

.cf-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.6)
  );
}

.cf-content{
  position:relative;
  z-index:2;
  max-width:720px;
}

.cf-eyebrow{
  font-size:11px;
  letter-spacing:2px;
  color:#d1d5db;
}

.cf-content h2{
  font-size:clamp(32px,6vw,52px);
  font-weight:600;
  margin:18px 0;
  line-height:1.2;
}

.cf-content p{
  font-size:15px;
  color:#e5e7eb;
  margin-bottom:60px;
  line-height:1.6;
}

.cf-card{
  width:440px;
  margin:auto;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,0.35);
  transform:translateY(90px);
  transition:.35s ease;
}

.cf-card:hover{
  transform:translateY(70px) scale(1.02);
}

.cf-card img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.cf-card-body{
  padding:22px;
  display:flex;
  justify-content:center;
}

.cf-btn{
  background:linear-gradient(135deg,#2f5b8f,#24486f);
  color:#fff;
  padding:12px 26px;
  border:none;
  border-radius:10px;
  font-size:14px;
  cursor:pointer;
  transition:.25s ease;
}

.cf-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 30px rgba(47,91,143,0.35);
}

.cf-btn:active{
  transform:scale(0.97);
}


/* ================= FOUNDATION ================= */
.cf-foundation{
  background:#f8fafc;
  text-align:center;
  padding:120px 20px;
  border-bottom:4px solid #e2e8f0;
}

.cf-small{
  font-size:12px;
  color:#64748b;
  letter-spacing:1px;
}

.cf-foundation h2{
  font-size:42px;
  font-weight:600;
  margin:10px 0;
}

.cf-foundation p{
  font-size:15px;
  color:#64748b;
  margin-bottom:60px;
}

.cf-logos{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.cf-logo-item{
  display:flex;
  align-items:center;
  justify-content:center;

  width:300px;
  height:110px;

  border:1px solid #e2e8f0;
  border-radius:18px;

  background:#fff;

  transition:all .3s ease;
}

.cf-logo-item img{
  max-width:75%;
  object-fit:contain;
  opacity:0.85;
  transition:.3s ease;
}

.cf-logo-item:hover{
  transform:translateY(-12px) scale(1.03);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.cf-logo-item:hover img{
  opacity:1;
}


@media(max-width:768px){

  .cf-card{
    width:100%;
    transform:translateY(60px);
  }

  .cf-content h2{
    font-size:30px;
  }

  .cf-logos{
    gap:20px;
  }

  .cf-logo-item{
    width:45%;
  }
}

@media(max-width:480px){
  .cf-logo-item{
    width:100%;
  }
}


/* FAQ SECTION */
.faq-section{
  padding:100px 40px;
}

.faq-container{
  max-width:1300px;
  margin:auto;
}

.faq-header{
  text-align:center;
  margin-bottom:60px;
}

.faq-header h1{
  font-size:52px;
  color:#2f4a68;
  margin-bottom:10px;
}

.faq-header p{
  color:#777;
}

.faq-content{
  display:flex;
  gap:40px;
  align-items:stretch; 
}

.faq-left{
  width:280px;
  position:relative;
}

.faq-support{
  position:sticky;
  bottom:40px; 
  
  background:#2f4a68;
  color:#fff;
  padding:28px;
  border-radius:18px;
}

.faq-support h3{
  margin-bottom:10px;
}

.faq-support p{
  font-size:14px;
  margin-bottom:20px;
  line-height:1.5;
}

.faq-support button{
  width:100%;
  padding:12px;
  border:none;
  border-radius:30px;
  background:#fff;
  color:#2f4a68;
  font-weight:500;
  cursor:pointer;
  transition:all 0.3s ease;
}

.faq-support button:hover{
  background:#eaf1f7;
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(0,0,0,0.15);
}

.faq-support button:active{
  transform:scale(0.97);
}

.faq-list{
  flex:1;
}

.faq-item{
  background:#fff;
  border:1px solid #d9dee5;
  border-radius:12px;
  margin-bottom:18px;
  overflow:hidden;
  transition:0.3s;
}

.faq-question{
  padding:20px 24px;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
  font-weight:500;
  color:#2f4a68;
}

.faq-question i{
  transition:0.3s;
}

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

.faq-answer p{
  padding:10px 0 18px;
  font-size:14px;
  color:#555;
}

.faq-item.active .faq-answer{
  max-height:200px;
}

.faq-item.active i{
  transform:rotate(180deg);
}

.faq-item:hover{
  border-color:#2f4a68;
}

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

  .faq-left{
    width:100%;
  }

  .faq-support{
    margin-top:20px;
  }

  .faq-header h1{
    font-size:36px;
  }
}

/* FOOTER SECTION*/

.contact-hero {
  position: relative;
  height: 100vh;
  background: url("../images/Footer.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: white;
  padding: 20px;

  background: linear-gradient(
    to bottom,
    rgba(10, 20, 60, 0.2),
    rgba(10, 20, 60, 0.95)
  );
}

.tag{
  font-size:12px;
  letter-spacing:1.2px;
  color:#9ca3af; 
  text-transform:uppercase;

  margin:18px 20px 6px;
  font-weight:500;
}

.tag::after{
  content:"";
  display:block;
  width:24px;
  height:1px;
  margin-top:6px;
}

.connect-tag{
  font-size:12px;
  letter-spacing:1.2px;
  color:#ddd;
  text-transform:uppercase;

  margin:18px 20px 6px;
  font-weight:500;
}
.overlay h1 {
  font-size: 56px;
  font-weight: 700;
  margin: 12px 0;
}

.subtitle {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}

.ft-section *{
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

.ft-footer{
  background:#07122b;
  color:#fff;
  padding:80px 80px 30px;
}

.ft-top{
  display:flex;
  justify-content:space-between;
  gap:80px;
  flex-wrap:wrap;
}

.ft-left{
  max-width:320px;
}

.ft-logo{
  width:60px;
  margin-bottom:20px;
}

.ft-logo img{
  width:100%;
}

.ft-label{
  font-size:13px;
  font-weight:600;
  color:#9aa3b2;
  margin-top:18px;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.ft-text{
  font-size:14px;
  margin-top:6px;
  color:#cbd5f5;
}

.ft-email-icons{
  display:flex;
  gap:12px;
  margin-top:10px;
}

.ft-email-icons a{
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  text-decoration:none;
  transition:.3s;
}
.ft-email-icons i {
  font-size: 16px;
}
.ft-email-icons a:hover{
  color:#a2bdfb;
  transform:translateY(-1px);
}

.ft-socials{
  margin-top:18px;
}

.ft-socials a{
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
  margin-right:10px;
  color:#fff;
  transition:.3s;
  text-decoration:none;
}

.ft-socials a:hover{
  background:#fff;
  color:#07122b;
  transform:translateY(-4px);
}

.ft-links{
  display:flex;
  gap:100px;
}

.ft-links h4{
  font-size:15px;
  margin-bottom:16px;
}

.ft-links a{
  display:block;
  font-size:14px;
  color:#aab2c5;
  margin-bottom:10px;
  text-decoration:none;
  transition:.3s;
}

.ft-links a:hover{
  color:#fff;
  transform:translateX(4px);
}

/* BOTTOM */
.ft-bottom{
  border-top:1px solid rgba(255,255,255,0.15);
  margin-top:60px;
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  font-size:13px;
}

.ft-bottom p{
  color:#9aa3b2;
}

.ft-legal a{
  color:#9aa3b2;
  margin-left:15px;
  text-decoration:none;
  transition:.3s;
}

.ft-legal a:hover{
  color:#fff;
}

@media(max-width:768px){

  .ft-footer{
    padding:50px 20px;
  }

  .ft-top{
    flex-direction:column;
    gap:40px;
  }

  .ft-links{
    flex-direction:column;
    gap:30px;
  }

  .ft-bottom{
    flex-direction:column;
    gap:10px;
  }

  .ft-legal a{
    margin-left:0;
    margin-right:12px;
  }
}





.connect-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 16px;

  opacity: 0;
  transform: translateX(-10px);
  pointer-events: none;

  transition: all 0.3s ease;
}

.social-icons.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.social-icons a {
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-icons a:hover {
  color: #4da6ff;
  transform: translateY(-2px) scale(1.05);
}


@media (max-width: 768px) {

  .connect-wrapper {
    flex-direction: column;
    align-items: center; /* CENTER */
    width: 100%;
    gap: 10px;
  }

  .social-icons {
    justify-content: center; /* CENTER ICONS */
    gap: 18px;

    opacity: 0;
    transform: translateY(-10px);

    background: rgba(255, 255, 255, 0.05);
    padding: 10px 12px;
    border-radius: 10px;
  }

  .social-icons.active {
    opacity: 1;
    transform: translateY(0);
  }

  .social-icons a {
    font-size: 20px;
    padding: 8px;
  }
}
