*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter', sans-serif;
}

body{
  overflow-x:hidden;
}

#menuToggle{
  display:none;
}
/* =========================
   Inter
========================= */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_28pt-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_28pt-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_28pt-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* =========================
   DM Sans
========================= */

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* -------------------------------------------------------------------------------- */

/* ================= NAVBAR ================= */

.navbar{
  height:56px;
  background:#091B32;
  display:flex;
  align-items:center;
  padding:0 80px;
  position:relative;
}
.navbar{
  position:relative;
  z-index:1000;
}
/* Bottom gradient stroke */
.navbar::after{
  content:"";
  position:absolute;
  bottom:2px;
  left:0;
  width:100%;
  height:2px;
  background:linear-gradient(to right,  #192e4a);
}

.nav-container{
  width:100%;
  
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* LOGO */
.logo img{
  height:42px;
  width:auto;
}

/* NAV LINKS */
.nav-links{
  display:flex;
  gap:48px;
  list-style:none;
}

.nav-links li a{
  text-decoration:none;
  color:#F7F8F9;
  font-size:16px;
  font-weight:500;
  position:relative;
  transition:0.3s;
  font-family: 'Inter', sans-serif;
}

/* Yellow active */
.nav-links li a:hover{
  color:#F3A804;
  font-family: 'Inter', sans-serif;
}

/* underline animation */
.nav-links li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:#F3A804;
  transition:0.3s ease;
}

.nav-links li a:hover::after{
  width:100%;
}

/* ================= HAMBURGER ICON ================= */

.menu-icon{
  width: 36px;
  height:36px;
  border-radius:50%;
  background:#ffffff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  cursor:pointer;
  transition:0.3s;
  font-family: 'Inter', sans-serif;
 
}

.menu-icon span{
  width:16px;
  height:2px;
  background:#091B32;

  margin:3px 0;
  transition:0.5s ease;
}

/* Transform to X when checked */
#menuToggle:checked + .navbar .menu-icon{
  background:#091B32;
}

#menuToggle:checked + .navbar .menu-icon span:nth-child(1){
  transform:translateY(5px) rotate(45deg);
  background:#F7F8F9;
}

#menuToggle:checked + .navbar .menu-icon span:nth-child(2){
  opacity:0;
}

#menuToggle:checked + .navbar .menu-icon span:nth-child(3){
  transform:translateY(-5px) rotate(-45deg);
  background:#091B32;
}

/* ================= QUICK PANEL ================= */

.quick-panel{
  position:fixed;
  top:0;
  right:-320px;
  width: 300px;
  height:100vh;
  padding:80px 40px;
  transition:0.3s ease;
  z-index:999;

  /* Background pattern */
  background:
    url("../assests/icons.png/QC\ BG.png") center/cover no-repeat,
    #F4F5F7;
  box-shadow:-10px 0 40px rgba(0,0,0,0.08);
}

/* Open panel */
#menuToggle:checked ~ .quick-panel{
  right:0;
}

/* Back Arrow */
.back-arrow{
  position:absolute;
  top:40px;
  left:40px;

  width:42px;              /* equal width & height */
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:20px;
  color:#ffffff;
  font-family: 'Inter', sans-serif;

  background:#091B32;      /* solid circle */
  border-radius:50%;

  cursor:pointer;
  transition:0.3s ease;
}
.back-arrow:hover{
  background:#F7F8F9;
  border: 2px solid #091b32;
  color:#091B32;
}

/* ================= QUICK LINKS ================= */
.quick-content{
  margin-top:40px;
}
.quick-content ul{
  list-style:none;
  padding:0;
}

.quick-content li{
  margin-bottom:40px;
}

.quick-content li a{
  text-decoration:none;
  font-size:16px;
  font-weight:600;
  color:#071C34;
  position:relative;
  display:inline-block;
  font-family: 'Inter', sans-serif;
}

/* Line animation */
.quick-content li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0%;
  height:3px;
  background:#071C34;
  transition:0.4s ease;
}

.quick-content li a:hover::after{
  width:100%;
}


/* ------------------------------------------------- */

/* ================= DEMO SECTION ================= */

.demo-section{
  background:#132338;
  padding:40px 80px;
  color:#ffffff;
  
}

/* Top Content */

.demo-content{
  max-width:1400px;
  margin-bottom:60px;
  
}

.demo-label{
  color:#F3A804;
  font-size:40px;
  margin-bottom:20px;
  font-weight:700;
 font-family: 'DM Sans', sans-serif;
}

.demo-title{
  font-size:24px;
  font-weight:700;
  margin-bottom:25px;
   font-family: 'DM Sans', sans-serif;
}

.demo-subtext{
  font-size:16px;
  line-height:1.6;
  margin-bottom:30px;
font-family: 'DM Sans', sans-serif;
}

.demo-note {
  font-size: 14px;  
  font-family: 'DM Sans', sans-serif;      /* Increase size */
  line-height: 1.7;
  color: #ffffff;
  width: 100%;            /* Full width */
  max-width: 100%;        /* Remove width restriction */
  margin-top: 20px;
}
.privacy-link {
  color: #1E77BC;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.privacy-link:hover {
  text-decoration: underline;
}

/* =============================== */
/* FORM CARD CONTAINER */
/* =============================== */

.demo-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 60px;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 4px solid #F3A804;
  box-sizing: border-box;
}

.demo-form-card h3 {
  color: #091B32;
  font-size: 24px;
  margin-bottom: 40px;
  font-family: 'DM Sans', sans-serif;
}

/* =============================== */
/* FORM GROUP SPACING */
/* =============================== */

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #091B32;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}

/* * Red required star */ 
.required{
  color:#E10600;
  font-weight:600;
}


/* =============================== */
/* INPUT + SELECT + TEXTAREA */
/* =============================== */

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid #CFCFCF;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  background: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Focus State */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #091B32;
  box-shadow: 0 0 0 3px rgba(0, 36, 54, 0.2);
}

/* Textarea */
.form-group textarea {
  resize: none;
  height: 110px;
}

/* =============================== */
/* CUSTOM DROPDOWN ARROW */
/* =============================== */

.form-group select,
.phone-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #ffffff;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23091B32' height='40' viewBox='0 0 24 24' width='0' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  height: 44px;
  font-size: 14px;
  padding: 10px 36px 10px 14px;
  border-radius: 6px;
  

  padding-right: 45px;
  cursor: pointer;
}

/* =============================== */
/* PHONE FIELD LAYOUT */
/* =============================== */

.phone-wrapper {
  display: flex;
  gap: 12px;
}

.phone-wrapper select {
  width: 110px;
  
}

.phone-wrapper input {
  flex: 1;
}

/* =============================== */
/* CHECKBOX */
/* =============================== */

.form-agreement {
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #091B32;
  margin-top: 20px;
  line-height: 1.6;
}

.form-agreement a {
  color: #1E77BC;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
}

/* Smooth underline animation */
.form-agreement a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #1E77BC;
  transition: width 0.3s ease;
}

.form-agreement a:hover::after {
  width: 100%;
}


/* Privacy link */
.form-checkbox {
  display: flex;
  align-items: center;   /* ← this fixes vertical alignment */
  gap: 12px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #091B32;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;             /* remove browser default spacing */
  cursor: pointer;
   accent-color: #091B32;
    cursor: pointer;
  flex-shrink: 0;        /* prevents shrinking */
}

.form-checkbox label {
  cursor: pointer;
}

.form-checkbox a {
  color: #1E77BC;
  text-decoration: none;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

/* =============================== */
/* SUBMIT BUTTON */
/* =============================== */

.demo-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  background: #A5CBE1;
  color: #ffffff;
  cursor: not-allowed;
  transition: all 0.3s ease;
  opacity: 0.6;
  font-family: 'DM Sans', sans-serif;
}

/* Active state when form valid */

.demo-btn.active {
  background: #1E77BC;
  cursor: pointer;
  opacity: 1;
  font-family: 'DM Sans', sans-serif;
}

.demo-btn.active:hover {
  background: #1E77BC;
}
.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9,27,50,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 9999;
  font-family: 'DM Sans', sans-serif;
}

.success-popup.show {
  visibility: visible;
  opacity: 1;
}

.popup-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.popup-box button {
  margin-top: 20px;
  background: #1E77BC;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

/* ----------------------------------------------------------------- */
/* Contact Us */
/* ============================= */
/* ============================= */
/* SECTION BACKGROUND            */
/* ============================= */

.cta-section {
  position: relative;
  width: 100vw;              /* Full viewport width */
  left: 50%;
  right: 50%;
  margin-left: -50vw;        /* Break out of parent */
  margin-right: -50vw;

  padding: 100px 20px;
  background: #091B32;

  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

/* ============================= */
/* INNER GRADIENT CARD           */
/* ============================= */

.cta-container {
  width: 90%;
  max-width: 1600px;
  padding: 40px 40px;
  border-radius: 16px;
  text-align: center;
  background: linear-gradient(180deg, #1E77BC 0%,#1E77BC , #091B32 100%);
}

/* ============================= */
/* TEXT                          */
/* ============================= */

.cta-title {
  font-size: 40px;
  color: #F3A804;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}

.cta-subtitle {
  font-size: 20px;
  color: #ffffff;
  max-width: 1400px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
 font-family: 'DM Sans', sans-serif;
}

/* ============================= */
/* BUTTONS WRAPPER               */
/* ============================= */

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* ============================= */
/* COMMON BUTTON STYLE           */
/* ============================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

/* ============================= */
/* PRIMARY BUTTON (Blue)         */
/* ============================= */

.btn-primary {
  background-color: #1E77BC;
  color: #ffffff;
  
}

/* Hover + Click */
.btn-primary:hover,
.btn-primary:active {
  background-color: #ffffff;
  color: #1E77BC;
}
/* Change PNG icon color to blue on hover */
.btn-primary:hover .btn-icon {
  filter: brightness(0) saturate(100%)
          invert(32%) sepia(98%)
          saturate(2476%)
          hue-rotate(185deg)
          brightness(95%) contrast(95%);
}
/* ============================= */
/* OUTLINE BUTTON (White)        */
/* ============================= */

.btn-outline {
  
  color: #ffffff;
  border: 2px solid #1E77BC;
}

/* Hover + Click */
.btn-outline:hover,
.btn-outline:active {
  background-color: #ffffff;
  color: #1E77BC;

}

/* ============================= */
/* ICON                          */
/* ============================= */

.btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
/* --------------------------------------------- */
/* <!-- Footer --> */

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* FULL WIDTH FOOTER BACKGROUND */
.footer {
  width: 100vw;                         /* Force full viewport width */
  margin-left: calc(50% - 50vw);         /* Break out of parent */
  background: linear-gradient(180deg, #152131 0%, #091B32 100%);
  color: #ffffff;
  position: relative;
}

/* INNER CONTENT ALIGNMENT */
.footer-wrapper {
  max-width: 1440px;   /* Design width */
  margin: 0 auto;
  padding: 40px 40px;
  box-sizing: border-box;
}


/* FOOTER BACKGROUND
.footer {
  background: linear-gradient(90deg, #091B32 0%, #102B45 100%);
  color: #ffffff;
  position: relative;
  width: 100%;
} */

/* Wrapper Alignment */
.footer-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 40px;
}


/* Top Row */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  width: 150px; /* PNG Logo */
}

.footer-copy {
  font-size: 14px;
  opacity: 0.8;
  color:#F7F8F9;
  font-family: 'Inter', sans-serif;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: #323E4F;
  margin: 30px 0 50px 0;
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
}

.footer-about {
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  opacity: 0.9;
  color: #F7F8F9;
}

.footer-column h4 {
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* Links */
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #F7F8F9;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  position: relative;
  font-size: 14px;
}

/* Underline animation */
.footer-column ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #F7F8F9;
  transition: width 0.3s ease;
}

.footer-column ul li a:hover::after {
  width: 100%;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* ============================= */
/* SCROLL TO TOP CIRCLE         */
/* ============================= */

.scroll-top {
  position: absolute;
  right: 60px;
  bottom: 60px;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

/* Rotating SVG */
.rotating-text {
  width: 100%;
  height: 100%;
 
  animation: rotateText 15s linear infinite;
}

/* Rotation animation */
@keyframes rotateText {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Static Arrow Centered */
.scroll-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  pointer-events: none; /* ensures click works on parent */
}
/* ------------------------------------------------------------------------------------------------ */
/* =========================================
   GLOBAL RESPONSIVE SETTINGS
========================================= */

/* -------- Tablet (1024px and below) -------- */
@media (max-width: 1024px) {

  .navbar {
    padding: 0 40px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .apart-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reach-container {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* -------- Mobile (768px and below) -------- */
@media (max-width: 768px) {

  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none; /* Hide desktop menu */
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .story-title,
  .value-title,
  .core-title,
  .people-title,
  .leadership-title,
  .apart-header h2,
  .reach-title,
  .cta-title {
    font-size: 26px;
  }

  .reach-container {
    padding: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .scroll-top {
    right: 20px;
    bottom: 20px;
  }
}

/* -------- Small Mobile (480px and below) -------- */
@media (max-width: 480px) {

  .hero-content {
    padding: 20px;
  }

  .cta-container {
    padding: 30px 20px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .team-card img {
    width: 180px;
    height: 180px;
  }

}
/* =========================================
   GLOBAL RESPONSIVE SETTINGS
========================================= */

/* -------- Tablet (1024px and below) -------- */
@media (max-width: 1024px) {

  .navbar {
    padding: 0 40px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .apart-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reach-container {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* -------- Mobile (768px and below) -------- */
@media (max-width: 768px) {

  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none; /* Hide desktop menu */
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .story-title,
  .value-title,
  .core-title,
  .people-title,
  .leadership-title,
  .apart-header h2,
  .reach-title,
  .cta-title {
    font-size: 26px;
  }

  .reach-container {
    padding: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .scroll-top {
    right: 20px;
    bottom: 20px;
  }
}

/* -------- Small Mobile (480px and below) -------- */
@media (max-width: 480px) {

  .hero-content {
    padding: 20px;
  }

  .cta-container {
    padding: 30px 20px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .team-card img {
    width: 180px;
    height: 180px;
  }

}
/* =====================================================
   RESPONSIVE ADD-ON 
   ===================================================== */

/* Make images responsive everywhere */
img {
  max-width: 100%;
  height: auto;
}

/* Fix large section paddings on small devices */
@media (max-width: 992px) {
  .navbar {
    padding: 0 40px;
  }

  .value-section,
  .people-section,
  .leadership-section,
  .reach-section {
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* ================= TIMELINE MOBILE FIX ================= */
@media (max-width: 768px) {

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .timeline-item.right {
    left: 0;
  }

  .timeline-circle {
    left: 20px !important;
    transform: translateX(-50%);
  }

}
/* ================= ICON FIX ================= */
@media (max-width: 480px) {

  .icon-box {
    width: 36px;
    height: 36px;
  }

  .value-card,
  .core-card,
  .people-card {
    padding: 25px;
  }

}

/* ================= CTA FIX ================= */
@media (max-width: 480px) {

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

}

/* ================= FOOTER FIX ================= */
@media (max-width: 768px) {

  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

}
/* Desktop */
.nav-links {
  display: flex;
  gap: 32px;
}

/* Tablet & Below */
@media (max-width: 1024px) {

  .nav-links {
    display: none;
  }

  .menu-icon {
    display: flex;
  }

}
/* =====================================================
   FORM RESPONSIVE FIX
===================================================== */

/* =====================================
   CLEAN FORM RESPONSIVE
===================================== */

@media (max-width: 1024px) {

  .demo-section {
    padding: 40px 40px;
  }

  .demo-form-card {
    padding: 40px;
    max-width: 700px;
  }

}

@media (max-width: 768px) {

  .demo-section {
    padding: 30px 20px;
  }

  .demo-form-card {
    padding: 25px 20px;
    max-width: 100%;
    border-radius: 12px;
  }

  .phone-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .phone-wrapper select,
  .phone-wrapper input {
    width: 100%;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* prevents zoom */
  }

}

@media (max-width: 480px) {

  .popup-box {
    width: 90%;
    padding: 25px;
  }

}


