
:root {
  --blue: #003264;
  --black: #202124;
  --white: #f8f9fa;
  --red: #8B0000;
}

/* Reset & Base Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Neue', cursive;
  background-color: #f4f4f4;
  padding-top: 80px;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 12px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  height: 80px;
  transition: all 0.3s ease;
}

.header-container {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  height: 55px;
  width: auto;
}

/* Hamburger menu - hidden by default on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  background-color: var(--blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* NAV MENU - Desktop version */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}

.nav-menu a {
  color: var(--blue);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  padding: 5px 5px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  background-color: rgba(0, 50, 100, 0.1);
}

.nav-menu a.active {
  background-color: var(--red);
  color: white;
}

/* DROPDOWN MENU - For both desktop and mobile */
.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: ' ▼';
  font-size: 0.6em;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--red);
  min-width: 200px;
  padding: 10px 0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.dropdown-content a {
  color: white;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s ease;
}

  .dropdown-content a:hover {
    background-color: var(--blue);
    /* background-color: rgba(255, 255, 255, 0.1); */
  }

/* Show dropdown when active class is added */
.dropdown-content.show {
  display: block;
}

/* Mobile styles */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background-color: var(--blue);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  
  .nav-menu.show {
    left: 0;
  }
  
  .nav-menu a {
    color: white;
    width: 100%;
  }
  
  .dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 10px;
    margin-top: 5px;
  }
  
  /* Animate hamburger to X when menu is open */
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}


/* About Page Styles */
:root {
  --blue: #003264;
  --black: #202124;
  --white: #f8f9fa;
  --red: #8B0000;
  --light-blue: #e6f0f9;
  --light-gray: #f5f5f5;
}

/* About Hero Section */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background: url('../images/privacypolicy.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  animation: bgShift 30s linear infinite;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  color: var(--red);
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease;
}

.about-hero h1 span {
  color: var(--blue);
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  margin-top: 20px;
}

.breadcrumbs a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--red);
}

.breadcrumbs span {
  margin: 0 10px;
  color: var(--white);
}

.breadcrumbs .active {
  color: var(--red);
  font-weight: bold;
}

    /* Privacy Policy Specific Styles */
    .privacy-policy {
      max-width: 1200px;
      margin: 50px auto;
      padding: 0 20px;
      color: #333;
    }
    
    .privacy-header {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .privacy-header h1 {
      color: #003264;
      font-size: 2.5rem;
      margin-bottom: 20px;
    }
    
    .privacy-header p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #555;
    }
    
    .toc {
      background-color: #f8f9fa;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 40px;
      border-left: 4px solid #8B0000;
    }
    
    .toc h2 {
      color: #003264;
      margin-bottom: 15px;
    }
    
    .toc ol {
      padding-left: 20px;
    }
    
    .toc li {
      margin-bottom: 8px;
    }
    
    .toc a {
      color: #8B0000;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .toc a:hover {
      color: #003264;
      text-decoration: underline;
    }
    
    .contact-box {
      background-color: #003264;
      color: white;
      padding: 25px;
      border-radius: 8px;
      margin: 30px 0;
      text-align: center;
    }
    
    .contact-box h3 {
      margin-bottom: 15px;
      font-size: 1.5rem;
    }
    
    .contact-box a {
      color: white;
      text-decoration: none;
      display: block;
      margin: 10px 0;
      font-size: 1.1rem;
    }
    
    .contact-box a:hover {
      text-decoration: underline;
    }
    
    .policy-section {
      margin-bottom: 40px;
    }
    
    .policy-section h2 {
      color: #003264;
      font-size: 2rem;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid #f0f0f0;
    }
    
    .policy-section h3 {
      color: #8B0000;
      font-size: 1.5rem;
      margin: 25px 0 15px;
    }
    
    .policy-section p, .policy-section ul {
      line-height: 1.7;
      margin-bottom: 15px;
      font-size: 1.1rem;
    }
    
    .policy-section ul {
      padding-left: 20px;
    }
    
    .policy-section li {
      margin-bottom: 10px;
    }
    
    .highlight-box {
      background-color: #f0f7ff;
      border-left: 4px solid #003264;
      padding: 20px;
      margin: 25px 0;
      border-radius: 0 8px 8px 0;
    }
    
    @media (max-width: 768px) {
      .privacy-header h1 {
        font-size: 2rem;
      }
      
      .policy-section h2 {
        font-size: 1.7rem;
      }
      
      .policy-section h3 {
        font-size: 1.3rem;
      }
    }


/* CTA SECTION */
.cta-section {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  background: url('../images/cta.jpg') center/cover no-repeat;
  animation: bgShift 30s linear infinite;
  min-height: 400px;
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  margin: auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-btn {
  font-size: 1.2rem;
  padding: 12px 30px;
  background-color: var(--red);
  border-radius: 30px;
  text-decoration: none;
}

.cta-btn:hover {
  background-color: var(--blue);
}

/* BUBBLES */
.bubble-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -100px;
  width: 40px;
  height: 40px;
  background: rgb(49, 10, 111);
  border-radius: 50%;
  animation: bubbleFloat 15s linear infinite;
}

.bubble:nth-child(1) {
  left: 20%;
  animation-duration: 12s;
  width: 30px; height: 30px;
}
.bubble:nth-child(2) {
  left: 40%;
  animation-duration: 18s;
}
.bubble:nth-child(3) {
  left: 60%;
  animation-duration: 16s;
  width: 50px; height: 50px;
}
.bubble:nth-child(4) {
  left: 75%;
  animation-duration: 20s;
  width: 25px; height: 25px;
}
.bubble:nth-child(5) {
  left: 90%;
  animation-duration: 22s;
  width: 35px; height: 35px;
}

@keyframes bubbleFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.1;
  }
  50% {
    opacity: 0.3;
    transform: translateY(-50vh) scale(1.2);
  }
  100% {
    transform: translateY(-100vh) scale(1);
    opacity: 0;
  }
}


/* Footer Styling */
.main-footer {
  background-color: #003264;
  color: #ffffff;
  padding: 40px 20px 20px 20px;
  font-family: 'Comic Neue', cursive;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  gap: 40px;
}

.footer-logo,
.footer-links,
.footer-contact {
  flex: 1 1 300px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 1rem;
  color: #ffffff;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a,
.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #ffffff;
}

/* Hover Underline Animation */
.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #8B0000;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Social Media Icons */
.social-media-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.social-media {
  display: flex;
  gap: 20px;
}

.social-media a {
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #8B0000;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }

  .social-media {
    flex-wrap: wrap;
    justify-content: center;
  }
}
