:root {
    --primary-purple: #7b2cff;
    --secondary-purple: #9b5cff;
    --white: #ffffff;
    --light-purple: #d8b4fe;
    --text-dark: #1f2937;
}

body {
    padding-top: 100px;
}
/* ===== NAVBAR BASE ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(123, 44, 255, 0.08);
}

/* Purple top border */
.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #7b2cff, #9b5cff);
}

/* Inner container */
.nav-inner {
    max-width: 1280px;
    margin: auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.logo img {
    height: 55px;
    width: auto;
}

/* ===== NAV MENU ===== */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 45px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
    
}

/* Underline animation */
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #7b2cff, #9b5cff);
    transition: width 0.3s ease;
}

/* Hover effect */
.nav-menu a:hover {
    color: #7b2cff;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Active page */
.nav-menu a.active {
    color: #7b2cff;
}

.nav-menu a.active::after {
    width: 100%;
}

/* ===== CALL BUTTON ===== */
.call-btn a {
    padding: 12px 26px;
    background: linear-gradient(135deg, #7b2cff, #9b5cff);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
}

.call-btn a::after {
    display: none;
}

/* ===== BODY OFFSET (FOR FIXED NAVBAR) ===== */
body {
    padding-top: 110px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .nav-inner {
        padding: 15px 25px;
    }

    .nav-menu {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* mobile menu later */
    }
}


.heading{
 display: flex;
  justify-content: center;
  color: blueviolet;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.7;
}

.policy-container {
  max-width: 900px;
  margin: 60px auto;       
  padding: 40px 30px;  
}


h1 {
  text-align: center;
  color: #5c2d91; /* secondary purple */
  margin-bottom: 40px;
}

h2 {
  color: #5c2d91;
  margin-bottom: 10px;
}

section {
  margin-bottom: 30px;
}

.highlight {
  background-color: #f6f3fb; /* light purple */
  padding: 20px;
  border-left: 4px solid #5c2d91;
  border-radius: 4px;
}

p {
  margin-bottom: 10px;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--white);
    padding: 30px 0 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}



.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
     gap: 28px;
    margin-bottom: 15px;
    align-items: start;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}
.footer-col:last-child {
    max-width: 300px;
}

.footer-col:nth-child(3),
.footer-col:nth-child(4) {
    margin-top: 0;
}
.footer-col:first-child p {
    max-width: 380px;
}


.footer-col a:hover {
    color: var(--light-purple);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 18px;
}

.newsletter-form input {
    flex: 1;
   padding: 10px 14px;
    border: none;
    border-radius: 30px 0 0 30px;
     font-size: 14px;
}

.newsletter-form button {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--white);
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
}

.newsletter-form button:hover {
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13.5px;
}





@media (max-width: 768px) {
  .policy-container {
    margin: 20px;
    padding: 15px;
  }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr;
        row-gap: 30px;
    }

    .footer-col:last-child {
        max-width: none;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        justify-content: center;
    }

    .newsletter-form input {
        border-radius: 30px;
    }

    .newsletter-form button {
        border-radius: 30px;
        margin-top: 10px;
    }
}
