/* FONT */
/* FONT & BASE */
/* Base */
body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background-color: #fafafa;
  color: #2c2c2c;
  line-height: 1.8;
}

/* Header */
.policy-hero {
      background-color: #ffff;
    padding: 80px 20px 60px;
    color: black;
}

.policy-hero-inner {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.policy-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-divider {
  width: 120px;
  height: 1px;
  background-color: #c9a24d;
  margin: auto;
}

/* Content */
.policy-content {
  background-color: #fafafa;
  padding: 60px 20px;
}

.policy-wrapper {
  max-width: 1100px;
  margin: auto;
}

/* Intro */
.policy-intro {
  font-size: 18px;
  margin-bottom: 24px;
  color: black;
}

/* Blocks */
.policy-block {
  margin-top: 48px;
}

.policy-block h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: black;
}

.policy-block h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 18px;
  color: black;
}

.policy-block p,
.policy-block li {
  font-size: 16px;
  color: black;
}

/* Lists */
.policy-block ul {
  margin-top: 12px;
  padding-left: 22px;
}

.policy-block li {
  margin-bottom: 8px;
}



/* Responsive */
@media (max-width: 768px) {
  .policy-hero h1 {
    font-size: 32px;
  }
}

/* CTA */




/* RESPONSIVE */
@media (max-width: 768px) {
  .policy-container {
    padding: 35px 25px;
    margin: 30px 15px;
  }

  .policy-page-header h1 {
    font-size: 32px;
  }
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .policy-container {
    padding: 35px 25px;
    margin: 30px 15px;
  }

  .policy-header h1 {
    font-size: 30px;
  }
}
.navbar-custom {
    background: white;
    transition: all 0.4s ease-in-out;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-custom.scrolled {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}


.navbar-brand .logo {
    width: 150px;
    height: 60%;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
}

.navbar-brand .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.25));
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #000 !important;
}

.navbar-nav .nav-link::after {
    display: none;
}

.nav-btn a {
    text-decoration: none;
    color: #fff;
}

.nav-btn {
    background: linear-gradient(45deg, #1A73E8, #0D3B66);
    border: none;
    padding: 8px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 14px rgba(13, 59, 102, 0.4);
}


.navbar-toggler {
    border: none;
    background: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


@media (max-width: 991px) {
    .navbar-custom {
        background: #ffffff;
    }

    .navbar-nav {
        background: #ffffff;
        border-radius: 12px;
        padding: 15px 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
        font-size: 17px;
        display: block;
        color: #000 !important;
    }

    .nav-btn {
        width: 85%;
        margin: 12px auto;
        display: block;
        text-align: center;
    }

    .navbar-brand .logo {
        width: 120px;
    }}

  
.footer {
    background: linear-gradient(135deg, #0d3b66, #144b8b);
    color: #fff;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}


.footer::before {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -100%;
    left: -100%;
    animation: waveMove 20s infinite linear;
}

@keyframes waveMove {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-col {
    flex: 1 1 220px;
    margin: 20px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.footer-logo span {
    color: white;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #dcdcdc;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #3b82f6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #e6e6e6;
    display: flex;
    align-items: center;
}

.footer-col ul li i {
    margin-right: 10px;
    color: #3b82f6;
}

.footer-col ul li a {
    text-decoration: none;
    color: #e6e6e6;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3b82f6;
}

.footer-social {
    margin-top: 20px;
}

a {
    text-decoration: none;
}

.footer-social a {
    text-decoration: none;
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #3b82f6;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    font-size: 14px;
    color: #dcdcdc;
    z-index: 2;
    position: relative;
}


@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        margin: 25px 0;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social a {
        margin: 8px;
    }
}







@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        width: 100%;
        max-width: 350px;
        margin: 25px 0;
    }


    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }


    .footer-col ul li {
        justify-content: center;
        text-align: center;
    }

    .footer-col ul li i {
        margin-right: 8px;
    }


    .footer-col.contact ul li {
        justify-content: center;
        text-align: center;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-social a {
        margin: 8px;
    }


    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 600px) {

    .footer {
        padding-top: 50px;
    }

    .footer-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 15px;
       
    }

    .footer-col {
        width: 100%;
        margin: 20px 0;
    }

    /* Center heading underline */
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* List center */
    .footer-col ul li {
        justify-content: center;
        font-size: 14px;
    }

    /* Logos center */
    .footer-logo {
        font-size: 28px;
    }

    /* Social icons center + spacing */
    .footer-social a {
        width: 34px;
        height: 34px;
        line-height: 34px;
        margin: 6px;
    }

    /* Footer bottom */
    .footer-bottom {
        font-size: 13px;
        padding: 15px 10px;
    }
}



@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        margin: 25px 0;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social a {
        margin: 8px;
    }
}

.end-cta {
    max-width: 1500px;
    justify-items: center;
    text-align: center;
    background-color: rgb(37, 99, 235);
    color: rgb(255, 255, 255);
    margin: 80px 0px 40px;
    padding: 40px;
    border-radius: 22px;
}


.end-cta-btn {
    display: inline-block;
    color: rgb(37, 99, 235);
    font-weight: 600;
    background: rgb(255, 255, 255);
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s;
}
.end-cta {
    margin: 80px 0 40px;
    padding: 40px;
    text-align: center;
    background-color: #2563eb;
    color: #fff;
    border-radius: 22px;
}

.end-cta h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.end-cta p {
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto 24px;
    opacity: 0.95;
}

.end-cta-btn {
    display: inline-block;
    background: #fff;
    color: #2563eb;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.end-cta-btn:hover {
    transform: scale(1.08);
    text-decoration: none;
    color: #2563eb;
}


/* font */

.font-link {
    font-family: "Momo Trust Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}