/* Main Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* Header */
header {
  transition: all 0.3s ease;
  z-index: 1050;
}
header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
header.default {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}

/* Brand Logo */
.brand-logo img {
  max-height: 70px;
  width: auto;
  display: block;
}

/* Nav links */
.nav-link {
  font-weight: 500;
  color: #374151;
  position: relative;
  transition: color 0.3s;
  text-decoration: none;
}
.nav-link:hover {
  color: #1e3a8a;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #facc15, #ca8a04);
  transition: width 0.3s;
}
.nav-link:hover::after {
  width: 100%;
}

/* Remove default Bootstrap caret */
.dropdown-toggle::after {
  display: none !important;
}

/* Rotate chevron when dropdown is open */
.dropdown-toggle .fa-chevron-down {
  transition: transform 0.3s ease;
}
.dropdown.show .fa-chevron-down {
  transform: rotate(180deg);
}
/* Mobile dropdown fix */
#mobileNav .collapse .dropdown-item {
  padding: 0.5rem 0;
  color: #374151;
}
#mobileNav .collapse .dropdown-item:hover {
  color: #1e3a8a;
}

/* Gradient button */
.btn-gradient {
  background: linear-gradient(to right, #facc15, #ca8a04);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: none;
}
.btn-gradient:hover {
  background: linear-gradient(to right, #eab308, #a16207);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  color: #fff;
}

/* Mobile menu button */
.mobile-menu-btn {
  font-size: 1.5rem;
  color: #000 !important;
  background: none;
  border: none;
  outline: none;
}
.mobile-menu-btn:hover {
  color: #000 !important;
}

/* Mobile nav */
#mobileNav a {
  color: #374151;
  font-weight: 500;
  transition: color 0.3s;
}
#mobileNav a:hover {
  color: #1e3a8a;
}
#mobileNav .btn-gradient {
  margin-top: 1rem;
}

/* Hero + Mission/Vision Section - Light Blue Gradient */
#hero-mission-vision {
  background: linear-gradient(135deg, #f8fafc, #ffffff, #ebf4ff);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
#hero-mission-vision{
    margin-top: 40px;
  }
/* Values Section - White with Light Gray Accent */
#values {
  background-color: #f9fafb;
}

/* Team Section - Purple Gradient */
#team {
  background: linear-gradient(135deg, #eff6ff, #fff, #fef9c3);
}

/* Achievements Section - Dark Blue */
#achievements {
  background: linear-gradient(135deg, #0a1d3a, #123c66, #0a1d3a);
}

/* Hero Title Styles */
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.text-highlight {
  background: linear-gradient(90deg, #facc15, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.3rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* Mission & Vision Cards */
.mission-vision-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  transition: all 0.4s ease;
}

.mission-vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.icon-container {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.mission-vision-card:hover .icon-container {
  transform: scale(1.1);
}

.icon-mission {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.icon-vision {
  background: linear-gradient(135deg, #059669, #10b981);
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.card-description {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 1.1rem;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  text-align: center;
}

.section-description {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 4rem;
  text-align: center;
  line-height: 1.6;
}

/* Values Section */
.value-card {
  background: white;
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.4s ease;
  cursor: pointer;
  height: 290px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e3a8a;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  transform: scale(1.1);
}

.value-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.value-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Two-column team layout */
.team-image {
  max-width: 70%;   /* reduce size, adjust as needed */
  height: auto;
  border-radius: 1.5rem;
  object-fit: cover;
  border: 6px solid rgba(147, 51, 234, 0.2);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.team-image:hover {
  transform: scale(1.05);
  border-color: #9333ea;
}

.team-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.team-role {
  color: #9333ea;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.team-experience {
  color: #6b7280;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.team-expertise {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .team-image {
    max-width: 60%;   /* smaller on mobile too */
  }
}

/* Achievements Section */
.achievements-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.achievements-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  text-align: center;
}

.achievements-description {
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}

.achievement-item {
  display: flex;
  align-items: center;
  height: 100%; /* makes them equal height */
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(30, 58, 138, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-item:hover {
  background: rgba(30, 58, 138, 0.5);
  transform: translateX(10px);
}

.achievement-icon {
  font-size: 1.5rem;
    line-height: 1;
    color: #4ade80;
    margin-right: 1rem; 
    flex-shrink: 0;
}

.achievement-text {
   font-weight: 500;
    margin: 0;
    color: white;
    font-size: 1.05rem;
    line-height: 1.4;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-delay-1 {
  animation-delay: 0.1s;
}
.animate-delay-2 {
  animation-delay: 0.2s;
}
.animate-delay-3 {
  animation-delay: 0.3s;
}
.animate-delay-4 {
  animation-delay: 0.4s;
}
.animate-delay-5 {
  animation-delay: 0.5s;
}
.animate-delay-6 {
  animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }

  section {
    padding: 50px 0;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .achievements-title {
    font-size: 2.2rem;
  }

  .mission-vision-card,
  .team-card {
    padding: 2rem;
  }

  .value-card {
    padding: 1.5rem;
  }
 
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .achievements-title {
    font-size: 2rem;
  }

  .mission-vision-card,
  .team-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .value-card {
    margin-bottom: 1.5rem;
  }

  section {
    padding: 40px 0;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .team-name {
    font-size: 1.2rem;
  }
  .value-card {
   height: 240px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .achievements-title {
    font-size: 1.8rem;
  }

  .mission-vision-card,
  .team-card,
  .value-card {
    padding: 1.2rem;
  }

  .achievement-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .achievement-icon {
    margin: 0 0 0.5rem 0;
  }

  .team-avatar {
    width: 100px;
    height: 100px;
  }

  section {
    padding: 70px 0;
  }
  .value-card {
   height: 240px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .mission-vision-card,
  .team-card,
  .value-card {
    padding: 1rem; 
  }
  .value-card {
   height: 240px;
  }
}

/* Loading Animation */
.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Additional Enhancements */
.section-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.1),
    transparent
  );
  margin: 0;
}

/* COMPLETE FOOTER RESPONSIVE STYLES */

/* Base Footer Styles (Desktop) - Keep existing styles intact */
.footer {
  background: #111827;
  color: #fff;
}

.footer-logo {
  max-width: 60px;
  flex-shrink: 0;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-btn.linkedin {
  background: linear-gradient(to right, #0a66c2, #004182);
}
.social-btn.twitter {
  background: linear-gradient(to right, #1da1f2, #0d8ddb);
}
.social-btn.youtube {
  background: linear-gradient(to right, #ff0000, #cc0000);
}
.social-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
  color: #fff;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-link:hover {
  color: #facc15;
  text-decoration: underline;
}

.dot {
  width: 6px;
  height: 6px;
  background: linear-gradient(to right, #facc15, #2563eb);
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

.icon-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(to right, #facc15, #ca8a04);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Mobile Responsive Footer Styles */

/* Extra Small devices (< 576px) */
@media (max-width: 575.98px) {
  /* Header adjustments for mobile */
  header .container {
    padding: 8px 15px;
  }

  .brand-logo {
    width: 80px;
    height: 80px;
  }

  .fs-5 {
    font-size: 1rem !important;
  }

  .mobile-menu-btn {
    font-size: 1.2rem;
  }

  /* Footer mobile styles */
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Override center alignment for mobile */
  .footer .row {
    text-align: left !important;
  }

  .footer .col-lg-3,
  .footer .col-md-6 {
    text-align: left !important;
    margin-bottom: 2rem;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Company Info Section */
  .footer .col-lg-3:first-child .d-flex.align-items-center.mb-3 {
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-logo {
    max-width: 45px;
  }

  .footer .col-lg-3:first-child h3 {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.2;
  }

  .footer .text-light.small {
    text-align: left;
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  /* Social Media Section */
  .footer h5.fw-semibold.mt-4 {
    text-align: left;
    font-size: 1rem;
    margin-top: 1.5rem !important;
    margin-bottom: 0.75rem;
  }

  .footer .d-flex.gap-3.mt-2 {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem !important;
    margin-top: 0.75rem !important;
  }

  .social-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    font-size: 0.9rem;
  }

  /* Quick Links Section */
  .footer .col-lg-3:nth-child(2) h5 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-align: left;
  }

  .footer .list-unstyled {
    text-align: left;
    margin-bottom: 0;
  }

  .footer .list-unstyled li {
    margin-bottom: 0.5rem;
  }

  .footer-link {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  /* Services Section */
  .footer .col-lg-3:nth-child(3) h5 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-align: left;
  }

  .footer .col-lg-3:nth-child(3) .list-unstyled li {
    margin-bottom: 0.5rem;
  }

  .footer .d-flex.align-items-center.mb-2 {
    align-items: flex-start;
    margin-bottom: 0.5rem !important;
  }

  .footer .dot {
    margin-top: 0.25rem;
    margin-right: 8px;
    flex-shrink: 0;
  }

  /* Contact Information Section */
  .footer .col-lg-3:last-child h5 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-align: left;
  }

  .footer .d-flex.mb-3 {
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 1rem !important;
    gap: 12px;
  }

  .icon-box {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .icon-box i {
    font-size: 0.9rem;
  }

  .footer .d-flex.mb-3 .ms-3 {
    margin-left: 0 !important;
    flex: 1;
  }

  .footer .fw-semibold {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .footer .text-light.small {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  /* Security Badges Section */
  .footer .border-top.border-secondary.pt-4.mt-5 {
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
  }

  .footer .d-flex.flex-wrap.gap-4 {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem !important;
  }

  .footer .d-flex.align-items-center.gap-2.text-light.small {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    align-items: center;
  }

  .footer .fas.fa-shield-alt,
  .footer .fas.fa-lock {
    font-size: 0.8rem;
  }

  /* Compliance Disclaimer Section */
  .footer .border-top.border-secondary.pt-4.mt-4 {
    margin-top: 1.5rem !important;
    padding-top: 1.5rem !important;
  }

  .footer .bg-secondary.bg-opacity-25.rounded.p-4 {
    padding: 1.5rem !important;
    border-radius: 8px !important;
  }

  .footer h6.fw-semibold.text-warning.mb-3 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem !important;
  }

  .footer .bg-secondary p.small.text-light {
    font-size: 0.75rem !important;
    line-height: 1.4;
    margin-bottom: 0;
  }

  /* Copyright Section - Centered */
  .footer .border-top.pt-4.mt-4.text-center {
    text-align: center !important;
    margin-top: 1.5rem !important;
    padding-top: 1.5rem !important;
  }

  .footer .text-center p {
    text-align: center !important;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
  }

  .footer .text-center p.small {
    font-size: 0.75rem !important;
    margin-bottom: 0;
  }

  .footer .text-center a {
    color: #facc15;
    text-decoration: none;
  }

  .footer .text-center a:hover {
    text-decoration: underline;
  }
}

/* Small devices (576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .footer {
    padding: 3rem 0 2rem;
  }

  /* Keep left alignment but with better spacing */
  .footer .row {
    text-align: left !important;
  }

  .footer .col-lg-3,
  .footer .col-md-6 {
    text-align: left !important;
    margin-bottom: 2rem;
  }

  .footer-logo {
    max-width: 50px;
  }

  .footer h5 {
    font-size: 1.1rem;
  }

  .social-btn {
    width: 38px;
    height: 38px;
  }

  .icon-box {
    width: 38px;
    height: 38px;
  }

  /* Copyright stays centered */
  .footer .text-center {
    text-align: center !important;
  }

  .footer .text-center p {
    text-align: center !important;
  }
}

/* Medium devices (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .footer .col-md-6 {
    margin-bottom: 2rem;
  }

  /* On tablets, we can start using some centering for better balance */
  .footer .row {
    text-align: left;
  }
}

/* Ensure no horizontal overflow in footer */
.footer * {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

/* Fix for very long text in footer */
.footer .text-light.small,
.footer .footer-link {
  word-break: break-word;
  hyphens: auto;
}
@media (max-width: 767.98px) {
  #hero-mission-vision{
    margin-top: 80px;
  }
}
/* Ensure footer links are touchable on mobile */
@media (max-width: 767.98px) {
  .footer-link,
  .social-btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
  }

  .social-btn {
    min-height: 36px;
    justify-content: center;
  }
}

/* Dark mode compatibility */
@media (prefers-color-scheme: dark) {
  .footer {
    background: #0f172a;
  }
}


/* Privacy Policy Modal Styles */
        .privacy-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10001;
            animation: privacyFadeIn 0.3s ease-in-out;
        }

        @keyframes privacyFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes privacyFadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }

        .privacy-modal {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            max-width: 700px;
            width: 95%;
            max-height: 100vh;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            animation: privacySlideUp 0.4s ease-out;
            position: relative;
        }

        @keyframes privacySlideUp {
            from { 
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            to { 
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .privacy-modal-content {
            background: white;
            margin: 4px;
            border-radius: 16px;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .privacy-modal-header {
            text-align: center;
            padding: 30px 30px 20px;
            border-bottom: 2px solid #f0f0f0;
            flex-shrink: 0;
        }

        .privacy-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4facfe, #00f2fe);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 20px;
            color: white;
        }

        .privacy-modal-title {
            color: #2d3436;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .privacy-modal-subtitle {
            color: #636e72;
            font-size: 14px;
            font-weight: 500;
        }

        .privacy-modal-body {
            padding: 20px 30px;
            color: #2d3436;
            font-size: 15px;
            line-height: 1.6;
            overflow-y: auto;
            flex-grow: 1;
        }

        .privacy-section {
            margin-bottom: 20px;
        }

        .privacy-section h4 {
            color: #0984e3;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .privacy-section ul {
            margin-left: 20px;
            margin-top: 10px;
        }

        .privacy-section li {
            margin-bottom: 5px;
        }

        .privacy-highlight {
            background: linear-gradient(120deg, #e3f2fd 0%, #bbdefb 100%);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #2196f3;
            margin: 15px 0;
        }

        .privacy-contact {
            background: linear-gradient(135deg, #74b9ff, #0984e3);
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin: 15px 0;
            text-align: center;
        }

        .privacy-contact strong {
            color: #fff;
        }

        .privacy-modal-footer {
            padding: 20px 30px;
            border-top: 2px solid #f0f0f0;
            text-align: center;
            flex-shrink: 0;
        }

        .privacy-close-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        .privacy-close-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .privacy-modal-overlay {
                padding: 10px;
            }
            
            .privacy-modal {
                width: 100%;
                max-height: 85vh;
            }
            
            .privacy-modal-content {
                max-height: calc(85vh - 8px);
            }
            
            .privacy-modal-body {
                max-height: calc(85vh - 180px);
                padding: 15px 20px;
                font-size: 14px;
            }
            
            .privacy-modal-header {
                padding: 20px 20px 15px;
            }
            
            .privacy-modal-footer {
                padding: 15px 20px 20px;
            }
            
            .privacy-modal-title {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .privacy-modal {
                max-height: 90vh;
            }
            
            .privacy-modal-content {
                max-height: calc(90vh - 8px);
            }
            
            .privacy-modal-body {
                max-height: calc(90vh - 160px);
                padding: 15px;
            }
            
            .privacy-modal-header {
                padding: 15px;
            }
            
            .privacy-modal-footer {
                padding: 15px;
            }
        }
 /* Floating WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25d366;
      color: #fff;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
      z-index: 1000;
      cursor: pointer;
      transition: 0.3s;
    }

    .whatsapp-float:hover {
      background: #20b954;
      transform: scale(1.1);
    }