/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  scroll-behavior: smooth;
  background-color: #f4f8fb;
  color: #333;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: rgb(255, 255, 255);
  color: white;
  padding: 15px 20px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5em;
}

.logo-img {
  height: 50px;
  width: auto;
}

.nav-boxes {
  display: flex;
  justify-content: center;
  gap: -1rem;
  padding: 1rem;
  flex-wrap: wrap;
}

.nav-boxes a {
  display: inline-block;
  background-color: #043751;
  color: white;
  margin-left: 8px;
  padding: 7px 10px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.95em;
  font: bold;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(0, 102, 153, 0.3);
  will-change: transform; 
}
.nav-boxes a {
  opacity: 0;
  transform: translateY(-20px);
  animation: slideIn 0.5s forwards;
}

.nav-boxes a:nth-child(1) { animation-delay: 0.1s; }
.nav-boxes a:nth-child(2) { animation-delay: 0.2s; }
.nav-boxes a:nth-child(3) { animation-delay: 0.3s; }
.nav-boxes a:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-boxes a i {
  margin-right: 5px;
}
.nav-boxes a:active {
  transform: scale(0.95);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.nav-boxes a:hover {
  background-color: rgba(5, 142, 211, 0.91);
  transform: translateY(-3px) scale(2.05);
  box-shadow: 0 8px 16px rgba(0, 102, 153, 0.);
    cursor: pointer;
}

.nav-boxes a:hover {
  color: #f6fbfc;
}
#typed-text {
  font-size: 1em;
  font-weight: bold;
  background: linear-gradient(90deg, #00c3ff, #ff00cc, #00cc66);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: -200% center;
  }
}

/* Hero Section with Video */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 60px;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.video-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.68);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.video-mask h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.video-mask p {
  font-size: 2.5em;
}

/* Section Content */
section {
  padding: 80px 20px;
}

.section-content {
  max-width: 1000px;
  margin: auto;
}

h2 {
  color: #1a1a2e;
  margin-bottom: 15px;
}

.box {
  background-color: #006699;
  color: white;
  padding: 20px;
  margin: 20px 0;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.box:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 102, 153, 0.3);
}

/* Footer */
footer {
  background-color: #1a1a2e;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

footer .social-icons {
  margin-bottom: 10px;
}

footer .social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 1.2em;
  transition: color 0.3s;
}

footer .social-icons a:hover {
  color: #00d4ff;
}

.info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
}

.info-box {
  background: transparent;
  border: 2px solid #033f5d;
  color: #333;
  max-width: 500px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 0 transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 102, 153, 0.05);
  transition: left 0.4s ease;
  z-index: 0;
}

.info-box:hover::before {
  left: 0;
}

.info-box:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  border-color: #0099cc;
}

.info-box h2 {
  margin-bottom: 12px;
  font-size: 1.6em;
  color: #006699;
  position: relative;
  z-index: 1;
}

.info-box p {
  font-size: 1em;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.info-box h2 i {
  margin-right: 10px;
  color: #006699;
  transition: color 0.3s;
}

.info-box:hover h2 i {
  color: #0099cc;
}
.info-box ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.info-box ul li {
  margin-bottom: 8px;
  font-size: 0.95em;
}

.info-box ul li i {
  color: #0099cc;
  margin-right: 8px;
}

.ribbon-section {
  padding: 40px 20px;
}

.ribbon-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.ribbon-box {
  background: #fff;
  height: 250px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 4, 6, 0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
    opacity: 0.8;
  transform: translateY(20px);
}

.ribbon-box:hover {
    opacity: 1;
  transform: translateY(1px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.15);
}

.ribbon-box .icon-img {
  font-size: 40px;
  color: #004085;
  margin-bottom: 15px;
}

.ribbon-box h3 {
  font-size: 20px;
  color: #006699;
  margin-bottom: 10px;
}
.ribbon-section h4 {
  text-align: center;
  font-size: 30px;
  color: #006699;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.ribbon-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive for mobile */
@media screen and (max-width: 768px) {
  .ribbon-container {
    grid-template-columns: 1fr;
  }
}

.footer {
  background: #063f5b;
  color: #eee;
  padding: 40px 20px 20px;
  font-family: sans-serif;
}

.footer-socials {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.footer-socials a {
  background: rgba(42, 166, 228, 0.57);
  color: #ccc;
  border-radius: 50%; /* Make it circular */
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: inline-block;
  margin: 0 10px;
  font-size: 18px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: relative;
}

.footer-socials a:hover {
  color: #006699;
  background: #fefefe;
  box-shadow: 0 6px 18px rgba(255,255,255,0.2), 0 0 12px #fff2 inset;
  transform: scale(1.15) rotate(360deg);  /* 🔄 ROTATE ON HOVER */
}

.footer-headings {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto 20px;
  padding: 0 10px;
}

.footer-headings h4 {
  font-size: 20px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #444;
}

.left {
  text-align: left;
}

.center-left {
  text-align: center;
}

.center-right {
  text-align: center;
}

.right {
  text-align: right;
}

.footer-container {
  display: grid;
  font-size: 20px;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  padding: 0 10px;
}

.footer-column a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 6px 0;
  position: relative;
}


.footer-column a:hover {
  color: #006699;
  padding-left: 10px;
  text-shadow: 0 0 5px rgba(255,255,255,0.3);
  background: rgba(255, 255, 255, 0.77);
  border-left: 3px solid #ffffff;
}

.footer-column a:active {
  transform: scale(0.97);
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 0 5px rgba(255,255,255,0.2);
}

.footer-column i {
  margin-right: 8px;
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  font-size: 15px;
  color:  #d5cece;
  padding-top: 15px;
}
.footer-column a i {
  transition: transform 0.3s ease;
}

.footer-column a:hover i {
  transform: translateX(3px) scale(1.1);
  color: #006699;

}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-headings,
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-headings h4 {
    text-align: center !important;
  }
}

.story-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.story-box {
  max-width: 1000px;
  height: auto;
  margin: auto;
  padding: 50px;
  background: linear-gradient(135deg,   #e5e5e5 0%, #e9ecef 100%);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.story-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(250, 241, 241, 0.15);
}

.story-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(196, 190, 190, 0.51) 0%, transparent 70%);
  animation: rotateGlow 6s linear infinite;
  z-index: 0;
}

.story-box h2 {
  font-size: 28px;
  color: #006699;
  margin-bottom: 20px;
  position: relative;
}

.story-box h2 i {
  color: #006699;
  margin-right: 10px;
}

.story-box p {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}
@keyframes rotateGlow {
  from {
    transform: rotate(40deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.story-box > * {
  position: relative;
  z-index: 1;
}

.reveal-box {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
  will-change: transform, opacity;
}
.from-left {
  transform: translateX(-60px);
}

.from-right {
  transform: translateX(60px);
}
.from-bottom {
  transform: translateX(60px);
}

.reveal-box.active {
  opacity: 1;
  transform: translateY(0);
}

#backToTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background: #3faadf;
  color: #fff;
  font-size: 20px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  overflow: visible;
}

#backToTop:hover {
  background: #006699;
  color: #3faadf; 
  stroke: #b6e5fc;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

#backToTop .circle {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

#backToTop .circle circle {
  fill: none;
  stroke: #addbf9;
  stroke-linecap: round;
  stroke-dasharray: 138;
  stroke-dashoffset: 138;
  transition: stroke-dashoffset 0.2s ease-out;
}

.recovery-counter-section {
  text-align: center;
  margin: 4rem auto;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #f0f4f8, #e0f7fa);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  max-width: 600px;
}

.about-intro-box {
  display: flex;
  justify-content: center;
  padding: 8rem 1rem;
}

.intro-box {
  max-width: 900px;
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #006699;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.intro-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.intro-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.75rem;
}

.intro-header i {
  font-size: 1.8rem;
  color: #006699;
}

.intro-header h2 {
  font-size: 1.8rem;
  margin: 0;
  color: #333;
}

.intro-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}


.counter-box h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  transition: transform 0.3s;
}

.counter-box p {
  font-size: 2.2rem;
  color: #555;
}

.counter-box:hover h2 {
  transform: scale(1.1);
  color: #006699;
}

.services-provided h2 {
  font-size: 2rem;
  color: #006699;
  margin-bottom: 1rem;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.value-box {
  flex: 1 1 30%;
  background: #fff;
  padding: 1.5rem;
  border-left: 5px solid #006699;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}

.value-box:hover {
  transform: translateY(-10px);
}

.services-list {
  list-style: none;
  padding: 0;
}

.services-list li {
  padding: 0.75rem 1rem;
  background: #ffffff;
  border-left: 4px solid #006699;
  margin-bottom: 1rem;
  border-radius: 5px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.services-list li:hover {
  background: #e0edf2;
  transform: scale(1.02);
}

.about-footer {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.43);
  color: #000000;
}

.about-footer a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}
.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #006699;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: rgba(49, 176, 239, 0.65);
  transform: scale(1.05);
}

.why-choose ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.why-choose ul li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.why-choose ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #006699;
}
.about-intro-image {
  flex: 1 1 400px;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-container {
  padding: 5rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #006699;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #333;
}

.service-card i {
  color: #006699;
  margin-right: 0.5rem;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.features {
  background: #f9fdfd;
  padding: 3rem 4rem;
  text-align: center;
}

.features-list {
  list-style: none;
   padding: 1rem 13rem;
  max-width: 800px;
  margin: auto;
}

.features-list li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #006699;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 5rem 1rem;
  gap: 2rem;
}

.contact-form, .contact-info {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  flex: 1 1 320px;
  max-width: 500px;
}

.contact-form h2, .contact-info h2 {
  color: #006699;
  margin-bottom: 1rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input, .contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  background-color: #006699;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form input {
  color: #006699;
}

.contact-form button:hover {
  color: #006699;
  background-color: #71c9e5;
  border: #006699;
}

.contact-info p {
  color: #006699;
  margin: 0.5rem 0;
}

.contact-info i {
  color: #006699;
  margin-right: 8px;
}
.social-icons i:hover{
  color: #81cff5;
  font-size: 26px;
 
}
.tele-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 6rem 1rem;
}

.tele-box {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  max-width: 350px;
  flex: 1 1 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tele-box h2 {
  color: #006699;
  margin-bottom: 1rem;
}

.tele-box i {
  margin-right: 10px;
  color: #006699;
}

.tele-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.tele-contact-prompt {
  background-color: #e0f2f1;
  text-align: center;
  padding: 3rem 1rem;
}

.cta-button {
  display: inline-block;
  background-color: #006699;
  color: white;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #006699;
}

footer {
  background-color: #006699;
  color: #006699;
  padding: 1rem;
  text-align: center;
}

.tele-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem 4rem;
  background-color: #fefefe;
}

.tele-detail-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  max-width: 340px;
  flex: 1 1 300px;
  transition: all 0.3s ease;
}

.tele-detail-box h2 {
  font-size: 1.3rem;
  color: #006699;
  margin-bottom: 1rem;
}

.tele-detail-box i {
  color: #006699;
  margin-right: 10px;
}

.tele-detail-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.hero-support {
  background: linear-gradient(to right, #00374d, #006699);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.hero-support h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.support-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  background: #ffffff;
}

.support-box {
  background: #d5ecf8;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.support-box i {
  font-size: 2.5rem;
  color: #006699;
  margin-bottom: 1rem;
}

.support-box h2 {
  font-size: 1.25rem;
  color: #064361;
  margin-bottom: 0.5rem;
}

.support-box:hover {
  transform: translateY(-5px);
  background-color: #aeddf4;
}

.support-cta {
  text-align: center;
  padding: 4rem 2rem;
  color: #000000;
}

.support-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  background: #006699;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background: #a6d6ee;
  color: #006699;
}

.container {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.support-services h2,
.why-support h2,
.support-stats h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #003145;
}

.service-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.service-box {
  background: #c9e7f7;
  border-radius: 10px;
  padding: 1.5rem;
  flex: 1 1 30%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-box:hover {
  background: #99d5f5;
  transform: translateY(-8px);
}

.why-support ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.why-support li {
  margin: 0.8rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.why-support li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #006699;
  font-weight: bold;
}

.container {
  max-width: 1200px;
  padding: 2rem;
}

.intro {
  text-align: center;
  margin-top: 5rem;
  margin-bottom: -1rem;
}

.intro h2 {
  font-size: 2rem;
  color: #006699;
}

.intro p {
  max-width: 700px;
  margin: auto;
  color: #555;
}

.blog-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 1.5rem;
  flex: 1 1 30%;
  min-width: 280px;
  height: 180px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.blog-card h3 {
  color: #006699;
}

.blog-card p {
  font-size: 0.95rem;
  color: #555;
}

.blog-card a {
  display: inline-block;
  margin-top: 1rem;
  color: #0f7db4;
  text-decoration: none;
  font-weight: bold;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

footer {
  background: #006699;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 4rem;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  animation: fadeIn 0.4s ease-in-out;
  position: relative;
}

.modal-content h3 {
  margin-top: 0;
  color: #006699;
}

.modal-content p {
  color: #333;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.featured-article {
  background: #f8f9fa;
  padding: 4rem 2rem;
  margin-top: 4rem;
  animation: fadeInUp 1s ease-in-out both;
}

.article-container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
  color: #333;
}

.article-container h2 {
  text-align: center;
  color: #006699;
  margin-bottom: 1rem;
}

.article-container h3 {
  margin-top: 2rem;
  color: #006699;
}

.article-container .quote {
  font-style: italic;
  color: #555;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.article-container ul {
  padding-left: 1.5rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-section {
    margin: -60px auto;
    padding: 40px 20px;
  margin-bottom: 10px;
}

.faq-header {
    text-align: center;
    padding: 40px 20px;
    color: #006699;
    font-size: 24px;
    margin-bottom: 20px;
}

.faq-container {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: linear-gradient(135deg, #006699, #00d4ff);
    color: white;
    border: none;
    padding: 25px;
    font-size: 16px;
    cursor: pointer;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #00d4ff, #006699);
    transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background: rgba(113, 224, 247, 0.63);
  color: balck;
    padding: 0 15px;
    font-size: 14px;
}

.faq-answer ul {
    padding-left: 20px;
}

.faq-answer p {
    margin: 10px 0;
}

.faq-question.active {
    background: #006699;
}
.container1 {
    width: 85%;
    margin: 40px auto;
    padding: 40px;
    background-color: rgba(53, 176, 210, 0.28);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.privacy-hero {
  background: linear-gradient(to right, #57c0f4, #006699);
  color: #fff;
  margin-top: 3rem;
  text-align: center;
  padding: 3rem 2rem;
}

.privacy-content {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.privacy-content h2 {
  margin-top: 2rem;
  color: #006699;
}

.privacy-content a {
  color: #006699;
  text-decoration: none;
}

.privacy-footer {
  background: #006699;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
}

.terms-header {
  background: linear-gradient(to right, #6db6da, #006699);
  color: white;
  margin-top: 2rem;
  text-align: center;
  padding: 3rem 1rem;
}

.terms-header h1 {
  margin: 0;
  font-size: 2.5rem;
}

.terms-content {
  padding: 3rem 10%;
}

.terms-content section {
  margin-bottom: 2.5rem;
}

h2 {
  color: #006699;
  margin-bottom: 0.5rem;
}

/* Animation */
.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

a {
  color: #006699;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
