/* Application: Flutter Application Developer */

* {
  box-sizing: border-box;
}


body {
  margin: 0;
 font-family: 'Inter', sans-serif;
  background: #132338;
  color: white;
}
/* =========================
   Inter
========================= */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_28pt-Medium.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;
}

/* -------------------------------------------------------------------------------------------- */


/* ================= TOPBAR ================= */

.topbar {
  width: 100%;
  height: 60px;
  background: #091B32;
  border-bottom: 4px solid #1D3555;
  

}

.topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
   font-family: 'Inter', sans-serif;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 14px;
   font-family: 'Inter', sans-serif;
}

.breadcrumb a {
  color: #ffffffaa;
  text-decoration: none;
   font-family: 'Inter', sans-serif;
}

.breadcrumb span {
  color: #ffffff;
   font-family: 'Inter', sans-serif;
}

.exit-btn {
  background: #1E77BC;
  padding: 8px 20px;
  border-radius: 4px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
   font-family: 'Inter', sans-serif;
  transition: 0.3s ease;
}


/* * Make PNG blue on hover */ 
.btn-primary:hover .btn-icon {
  filter: brightness(0) saturate(100%)
          invert(35%) sepia(95%)
          saturate(2000%)
          hue-rotate(180deg);
}
/* ================= CONTAINER ================= */

.policy-container{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;  /* reduce side padding */
  box-sizing: border-box;
}


/* ================= TITLE ================= */

.policy-title{
  color:#F3A804;
  font-size:40px;
  margin-bottom:20px;
   font-family: 'DM Sans', sans-serif;
}

.policy-date{
  font-weight:600;
  margin-bottom:25px;
  font-size:16px;
  color: #F7F8F9;
   font-family: 'DM Sans', sans-serif;
}

/* ================= LINKS ================= */

.link{
  color:#1E77BC;
  text-decoration:none;
  transition:0.3s ease;
}

.link:hover{
  text-decoration:underline;
}

/* ================= SECTIONS ================= */
 

.policy-section{
  margin-bottom:35px;
   font-family: 'DM Sans', sans-serif;
}

.policy-section h2{
  font-size:20px;
  margin-bottom:15px;
  color:#ffffff;
   font-family: 'DM Sans', sans-serif;
}

.policy-section p{
  margin-bottom:15px;
  font-size:16px;
   font-family: 'DM Sans', sans-serif;

}

.policy-section ul{
  padding-left:20px;
   font-family: 'DM Sans', sans-serif;
}

.policy-section ul li{
  margin-bottom:8px;
  font-size:16px;
   font-family: 'DM Sans', sans-serif;
  
}


/* ---------------------------------------------------------------------------------------------------------------------------- */
/* Contact Us */
/* ============================= */
/* SECTION BACKGROUND            */
/* ============================= */

.cta-section {
  width: 100%;
  padding: 80px 20px;
  background: #091B32;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

/* ============================= */
/* INNER GRADIENT CARD           */
/* ============================= */

.cta-container {
  width: 90%;
  max-width: 100%;
  padding: 30px 20px;
  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;
  text-align: center;
}

/* ============================= */
/* COMMON BUTTON STYLE           */
/* ============================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
   font-family: 'DM Sans', 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;
}

/* ============================= */
/* 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;
   font-family: 'Inter', sans-serif;
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
  color: #F7F8F9;
   font-family: 'Inter', sans-serif;
}

.footer-column h4 {
  margin-bottom: 20px;
  font-weight: 500;
   font-family: 'Inter', sans-serif;
}

/* Links */
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
   font-family: 'Inter', sans-serif;
}

.footer-column ul li a {
  color: #F7F8F9;
  text-decoration: none;
  position: relative;
  font-size: 14px;
   font-family: 'Inter', sans-serif;
}

/* 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 */
}
/* ------------------------------------------------------------------------------------------------ */
 /* =====================================================
   CLEAN FULL RESPONSIVE – COOKIES PAGE
===================================================== */


/* ===============================
   FIX FULL-WIDTH OVERFLOW ISSUE
=============================== */

.cta-section,
.footer {
  width: 100%;
  margin-left: 0;
}

/* ===============================
   GLOBAL IMAGE SAFETY
=============================== */

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* ===============================
   TABLET (1024px)
=============================== */
@media (max-width: 1024px) {

  .policy-container {
    padding: 30px 40px;
  }

  .policy-title {
    font-size: 32px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-container {
    padding: 35px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

}


/* ===============================
   MOBILE (768px)
=============================== */
@media (max-width: 768px) {

  /* Container */
  .policy-container {
    padding: 20px;
  }

  /* Titles */
  .policy-title {
    font-size: 26px;
  }

  .policy-section h2 {
    font-size: 18px;
  }

  .policy-section p,
  .policy-section ul li {
    font-size: 15px;
    line-height: 1.6;
  }

}




/* ===============================
   SMALL MOBILE (480px)
=============================== */
@media (max-width: 480px) {

  .policy-title {
    font-size: 22px;
  }

  .policy-date {
    font-size: 14px;
  }

  .policy-section p,
  .policy-section ul li {
    font-size: 14px;
  }

  .cta-title {
    font-size: 20px;
  }

}
/* ================= 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;
  }

}

