/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #07897e;
  padding: 0;
  margin: 0;
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background: radial-gradient(circle at 40% 60%, #07897e, #070707);
  /* Transparent effect */
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  /* Smooth height transition */
  height: 70px;
}

/* Smaller navbar when scrolling */
.navbar.scrolled {
  height: 70px;
  /* Reduced height when scrolled */
  padding: 15px;
  background-color: rgba(0, 0, 0, 1);
  /* Full opaque background when scrolled */
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo a {
  text-decoration: none;
  color: #ffffff;
}

.logo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

#logo-text {
  font-size: 20px;
  font-weight: bold;
  display: flex;
}

#logo-text span {
  display: inline-block;
  transform: translateY(-50px);
  opacity: 0;
  animation: drop-letter 0.5s ease-in-out forwards;
}




.menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.menu li {
  position: relative;
  font-size: 18px;
  cursor: pointer;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

.menu li:hover {
  color: gold;
}

.menu li a {
  text-decoration: none;
  color: white;
}

.menu li a:hover {
  color: gold;
}

.menu li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: gold;
  transition: width 0.3s ease;
}

.menu li:hover::after {
  width: 100%;
}



/* From Uiverse.io by ShrinilDhorda */
.btn {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border: none;
  outline: none;
  border-radius: 0.4rem;
  cursor: pointer;
  text-transform: uppercase;
  background-color: rgb(14, 14, 26);
  color: rgb(234, 234, 234);
  font-weight: 700;
  transition: 0.6s;
  box-shadow: 0px 0px 60px #1f4c65;
}

.btn:active {
  scale: 0.92;
}

.btn:hover {
  background: rgb(2, 29, 78);
  background: linear-gradient(270deg, rgba(2, 29, 78, 0.681) 0%, rgba(31, 215, 232, 0.873) 60%);
  color: rgb(4, 4, 38);
}

.call-icon {
  font-size: 18px;

}



/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  position: absolute;
  top: 20px;
  /* Set top position of hamburger */
  right: 20px;
  /* Align hamburger to the right */
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: transform 0.3s;
}

/* Responsive Styles */
@media (max-width: 950px) {

  /* Menu Settings for Small Screens */
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    /* Adjust the top margin */
    right: 10px;
    background-color: #07897e;
    width: 100%;
    /* Decrease width for mobile view */
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
  }

  /* Contact Button inside hamburger (keeps existing style) */
  .btn {
    display: none;
    margin-top: 20px;
  }

  /* Show Hamburger Icon */
  .hamburger {
    display: flex;
  }

  /* Show Menu when Active */
  .menu.show {
    display: flex;
  }

  /* Cross Icon When Menu is Active */
  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 6px;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -6px;
  }
}


/* Animations */
@keyframes drop-letter {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes line-grow {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}


/* ===== General Section Wrapper ===== */
.data-entry-section {
  text-align: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 1000px;
  margin: 40px auto;
}

.data-entry-section h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #005e6b;
}

.data-entry-section p {
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ===== Reasons Section ===== */
.data-entry-reasons {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.data-entry-reasons h2 {
  font-size: 2em;
  margin-bottom: 25px;
  color: #005e6b;
}

.data-entry-section h2 {
  font-size: 2em;
  margin-top: 10px;
  margin-bottom: 25px;
  color: #005e6b;
}

.data-entry-reasons .styled-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  text-align: left;
  max-width: 800px;
}

.data-entry-reasons .styled-list li {
  background: #f9f9f9;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.data-entry-reasons p {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* ===== Lists ===== */
.styled-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.styled-list li {
  background-color: #ffffff;
  padding: 20px;
  border-left: 6px solid #00b2a9;
  border-radius: 6px;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: left;
}

ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

ol li {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* ===== CTA Box ===== */
.cta-box {
  background: #f9ffff;
  padding: 2rem;
  margin-top: 3rem;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cta-box h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #005e6b;
}

.cta-box .btn-2 {
  margin-top: 1rem;
  background-color: rgb(14, 14, 26);
  color: rgb(234, 234, 234);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-box .btn-2:hover {
  background: linear-gradient(270deg, rgba(2, 29, 78, 0.7), rgba(31, 215, 232, 0.9));
  color: rgb(4, 4, 38);
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets (<= 1024px) */
@media (max-width: 1024px) {
  .data-entry-section {
    padding: 15px;
    margin: 30px auto;
  }

  .data-entry-section h1 {
    font-size: 2em;
  }

  .data-entry-section h2 {
    font-size: 1.6em;
  }

  .data-entry-reasons .styled-list {
    grid-template-columns: 1fr; /* stack items */
  }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  .data-entry-section {
    padding: 15px 10px;
  }

  .data-entry-section h1 {
    font-size: 1.8em;
  }

  .data-entry-section h2 {
    font-size: 1.4em;
  }

  .data-entry-section p {
    font-size: 0.95em;
  }

  .styled-list {
    grid-template-columns: 1fr; /* one per line */
  }

  .styled-list li {
    padding: 15px;
    font-size: 0.95em;
  }

  .cta-box {
    padding: 1.5rem;
  }

  .cta-box h3 {
    font-size: 1.3rem;
  }
}

/* Small Mobile (<= 480px) */
@media (max-width: 480px) {
  .data-entry-section h1 {
    font-size: 1.6em;
  }

  .data-entry-section h2 {
    font-size: 1.2em;
  }

  .data-entry-section p {
    font-size: 0.9em;
  }

  .styled-list li {
    font-size: 0.9em;
    padding: 12px;
  }

  .cta-box h3 {
    font-size: 1.1rem;
  }

  .cta-box .btn-2 {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}








/* Footer css */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #07897e, #003550);
  color: white;
  gap: 20px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-left: 5%;
  flex: 1;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

#logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.contact-info p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-top: 20px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.contact-info i {
  margin-right: 8px;
}

.footer-column-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgb(255, 255, 255);
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}


.social-icons-row {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icons-row a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons-row a:hover {
  color: gold;
}

.footer-links {
  display: flex;
  gap: 300px;
  margin-right: 5%;
  font-weight: 700;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 1rem;
  flex: 1;
  justify-content: flex-end;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-column a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: gold;
}

/* Bottom Footer Line and Copyright */
.footer-bottom {
  background: linear-gradient(135deg, #07897e, #003550);
  text-align: center;
  padding: 15px 30px;
}

.footer-line {
  border: none;
  border-top: 5px solid #ffffff;
  margin-bottom: 10px;
}

.footer-bottom p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.infonav-link {
  color: white;
  text-decoration: none;
}

.infonav-link:hover {
  color: gold;
  text-decoration: underline;
}





@media (max-width: 768px) {
  .footer-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
  }

  .footer-left {
    width: 100%;
    max-width: 48%;
    margin-left: 0;
  }

  .footer-links {
    width: 100%;
    max-width: 48%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
    margin-right: 0;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-info p {
    font-size: 0.95rem;
  }

  .footer-bottom p {
    font-size: 0.95rem;
  }
}


/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
  .footer-content {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    padding: 15px;
    gap: 20px;
  }

  .footer-left,
  .footer-links {
    width: 100% !important;
    max-width: 100%;
    align-items: center;
  }

  .footer-links {
    flex-direction: column !important;
    justify-content: center;
    gap: 30px;
  }

  .footer-column {
    width: 100%;
    align-items: center;
  }

  .footer-column-title {
    font-size: 1rem;
  }

  .logo-link {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  #logo-text {
    font-size: 1.3rem;
  }

  .contact-info {
    align-items: center;
  }

  .contact-info p {
    font-size: 0.9rem;
    margin-top: 10px;
  }

  .social-icons-row {
    justify-content: center;
    gap: 15px;
  }

  .footer-bottom {
    padding: 10px 15px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}