/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  line-height: 1.6;
  background: #f5f7fa;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: linear-gradient(90deg, #0a3d62, #3c6382);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 17px;
  transition: 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  width: 0%;
  height: 2px;
  background: orange;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d") no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero button {
  padding: 12px 30px;
  border: none;
  background: orange;
  color: white;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background: #ff8c00;
  transform: scale(1.05);
}

/* Sections */
section {
  padding: 70px 20px;
  text-align: center;
}

section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0a3d62;
}

/* About */
.about p {
  max-width: 700px;
  margin: auto;
  font-size: 17px;
}

/* Services */
.service-box {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  width: 250px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  background: #0a3d62;
  color: #fff;
}

/* Testimonials */
.testimonial {
  background: #0a3d62;
  

}

.test-box {
  margin-top: 20px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.test-box p {
  font-style: italic;
  margin-bottom: 10px;
}

/* Contact */
.contact form {
  display: flex;
  flex-direction: column;
  width: 350px;
  margin: auto;
}

.contact input,
.contact textarea {
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  transition: 0.3s;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #0a3d62;
  box-shadow: 0 0 5px rgba(10,61,98,0.3);
}

.contact button {
  padding: 12px;
  background: #0a3d62;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.contact button:hover {
  background: #3c6382;
}

/* Footer */
footer {
  background: #0a3d62;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}

/* Responsive */
@media(max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 20px;
  }

  .nav-links {
    flex-direction: column;
    margin-top: 10px;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .contact form {
    width: 90%;
  }
}
/* About Hero page */
.about-hero {
  height: 50vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d") center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.about-hero h1 {
  font-size: 40px;
}

/* About Content */
.about-content .container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-top: 20px;
  color: #0a3d62;
}

.about-image {
  flex: 1;
}



/* Why Us */
.why-us {
  background: #f5f7fa;
  padding: 60px 20px;
  text-align: center;
}

.features {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.feature-box {
  background: white;
  padding: 20px;
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-8px);
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-around;
  background: #0a3d62;
  color: white;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  margin: 10px;
}

.stat-box h2 {
  font-size: 32px;
}

/* Active Nav Link */
.nav-links .active {
  border-bottom: 2px solid orange;
}

/* Responsive */
@media(max-width: 768px) {
  .about-content .container {
    flex-direction: column;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }
}
/* Service Hero */
.service-hero {
  height: 50vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d") center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.service-hero h1 {
  font-size: 40px;
}

/* Services Page */
.services-page {
  padding: 60px 20px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.service-card i {
  font-size: 30px;
  color: #0a3d62;
  margin-bottom: 10px;
}

.service-card:hover {
  transform: translateY(-10px);
  background: #0a3d62;
  color: white;
}

.service-card:hover i {
  color: orange;
}

/* Process */
.process {
  background: #f5f7fa;
  padding: 60px 20px;
  text-align: center;
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.step {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 150px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.step h3 {
  background: #0a3d62;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: auto;
  margin-bottom: 10px;
}

/* CTA */
.cta {
  background: white;
  color: black;
  text-align: center;
  padding: 60px 20px;
}

.cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: orange;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #ff8c00;
}
/*contact page */
/* Contact Hero */
.contact-hero {
  height: 40vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d") center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

/* Contact Page */
.contact-page {
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

/* Form */
.contact-form {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
  margin-bottom: 15px;
  color: #0a3d62;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #0a3d62;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #3c6382;
}

/* Errors */
.error {
  color: red;
  font-size: 13px;
}

/* Map */
.map {
  flex: 1;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

/* Responsive */
@media(max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
/* footer */
/* Footer */
.footer {
  background: #0a3d62;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer-box h2,
.footer-box h3 {
  margin-bottom: 15px;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin: 8px 0;
}

.footer-box ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: orange;
}

/* Social Icons */
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  background: rgba(255,255,255,0.1);
  padding: 8px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: orange;
  color: white;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
}

/* Responsive */
@media(max-width: 768px) {
  .footer {
    text-align: center;
  }
}
.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #0a3d62;
  color: white;
  border-radius: 25px;
  text-decoration: none;
}

.btn-outline {
  border: 2px solid white;
  padding: 10px 20px;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  margin-left: 10px;
}

.hero-buttons {
  margin-top: 20px;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

.cta {
  background: #0a3d62;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.btn-nav {
  background: orange;
  padding: 6px 15px;
  border-radius: 20px;
}
/* Partners */
/* ===== Trusted Partners Section ===== */
.partners {
  padding: 70px 20px;
  background: #0a3d62;
  text-align: center;
}

.partners h2 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 10px;
}

.partners p {
  color: #666;
  margin-bottom: 40px;
}

/* Container */
.partners-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Card */
.partner-card {
  background: #fff;
  padding: 20px;
  width: 160px;
  height: 90px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Glow Effect */
.partner-card::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: linear-gradient(120deg, transparent, rgba(255,165,0,0.2), transparent);
  top: -100%;
  left: -100%;
  transition: 0.5s;
}

.partner-card:hover::before {
  top: 100%;
  left: 100%;
}

/* Logo */
.partner-card img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.4s;
}

/* Hover Effects */
.partner-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===== Responsive ===== */
@media(max-width: 768px) {
  .partner-card {
    width: 130px;
    height: 80px;
  }
}
/* Team Section */
.team {
  padding: 60px 20px;
  text-align: center;
}

.team-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.team-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  width: 220px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.team-card img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
}

.team-card h3 {
  margin-top: 10px;
}

.team-card p {
  color: gray;
  font-size: 14px;
}

.team-card:hover {
  transform: translateY(-10px);
}
/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Service Card */
.service-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* Overlay Content */
.service-content {
  position: absolute;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  width: 100%;
  padding: 20px;
  transition: 0.3s;
}

.service-content h3 {
  margin-bottom: 5px;
}

/* Hover Effect */
.service-card:hover img {
  transform: scale(1.1);
}

.service-card:hover .service-content {
  background: linear-gradient(transparent, rgba(10,61,98,0.9));
}
/* Testimonials */
.testimonial {
  padding: 70px 20px;
  background: #0a3d62;
  text-align: center;
}
.testimonial h2{
    color: white;
}

.testimonial-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Card */
.testimonial-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: left;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

/* Text */
.testimonial-card p {
  font-style: italic;
  margin-bottom: 15px;
}

/* Client */
.client {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.client h4 {
  margin: 0;
}

.client span {
  font-size: 13px;
  color: gray;
}
/* ===== About Section ===== */
.about {
  padding: 60px 10px;
  background: #f9fbfd;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 110px;
  flex-wrap: wrap;
}


.about-image {
  flex: 1;
  position: relative;
}


.abo-image img {
  width: 100%;     
  height: 350px;  /* control height */
  object-fit: cover;      /* crop image nicely */
   border-radius: 15px;
  
} 
 /* Image Container */

/* Text */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  color: #0a3d62;
  margin-bottom: 15px;
}

.about-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Features */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.feature i {
  color: orange;
  font-size: 18px;
}

.feature:hover {
  transform: translateY(-5px);
}

/* Buttons */
.about-buttons {
  display: flex;
  gap: 15px;
}

.btn-outline-dark {
  border: 2px solid #0a3d62;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #0a3d62;
  transition: 0.3s;
}

.btn-outline-dark:hover {
  background: #0a3d62;
  color: white;
}

/* Responsive */
@media(max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}
/* ===== CTA Section ===== */
.cta-section {
  padding: 80px 20px;
  /* background: linear-gradient(rgba(10,61,98,0.85), rgba(10,61,98,0.9)),
    url("https://cdn.pixabay.com/photo/2016/11/29/05/45/box-1869420_1280.jpg") center/cover; */
    background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Wrapper */
.cta-wrapper {
  max-width: 900px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.08);
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Content */
.cta-content h2 {
  font-size: 36px;
  color: black;
  margin-bottom: 15px;
}

.cta-content p {
  color: black;
  font-size: 16px;
  margin-bottom: 25px;
}

/* Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-primary {
  background: orange;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.cta-primary:hover {
  background: #ff8c00;
  transform: scale(1.05);
}

.cta-secondary {
  border: 2px solid #ff8c00;
  color: black;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-secondary:hover {
  background: #fff;
  color: #0a3d62;
}

/* Responsive */
@media(max-width: 768px) {
  .cta-content h2 {
    font-size: 26px;
  }

  .cta-wrapper {
    padding: 30px 20px;
  }
}
/* ===== Contact Section ===== */
.contact-section {
  padding: 80px 20px;
  background: #f5f7fa;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 25px;
}

/* ===== Contact Info ===== */
.contact-info-box {
  background: linear-gradient(135deg, #0a3d62, #1e5f8a);
  color: white;
  padding: 30px;
  border-radius: 15px;
}

.contact-info-box h2 {
  margin-bottom: 10px;
}

.contact-info-box p {
  margin-bottom: 20px;
  color: #ddd;
}

/* Info Card */
.info-card {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.info-card i {
  background: orange;
  padding: 12px;
  border-radius: 50%;
}

/* ===== Form ===== */
.contact-form-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-box h2 {
  margin-bottom: 15px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.contact-form-box button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #0a3d62;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form-box button:hover {
  background: orange;
}

/* Error */
.error {
  font-size: 12px;
  color: red;
}

/* ===== Map ===== */
.contact-map-box iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  border: none;
}

/* ===== Responsive ===== */
@media(max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
/* ===== Main Section ===== */
.connect-area {
  padding: 80px 20px;
  background: linear-gradient(to right, #eef3f9, #f8fbff);
}

/* Container */
.connect-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.connect-left {
  flex: 1;
  background: linear-gradient(135deg, #0a3d62, #1e5f8a);
  color: white;
  padding: 40px;
  border-radius: 20px;
}

.connect-left h2 {
  margin-bottom: 10px;
}

.connect-left p {
  margin-bottom: 25px;
  color: #ddd;
}

/* Contact Detail */
.contact-detail {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.contact-detail i {
  background: orange;
  padding: 12px;
  border-radius: 50%;
}

/* RIGHT SIDE FORM */
.connect-right {
  flex: 1.2;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.connect-right h2 {
  margin-bottom: 20px;
}

/* Inputs */
.input-row {
  display: flex;
  gap: 10px;
}

.connect-right input,
.connect-right textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
}

.connect-right textarea {
  height: 120px;
  resize: none;
}

/* Button */
.connect-right button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #0a3d62;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.connect-right button:hover {
  background: orange;
  transform: scale(1.02);
}

/* MAP */
.connect-map {
  max-width: 1200px;
  margin: 40px auto 0;
}

.connect-map iframe {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  border: none;
}

/* Responsive */
@media(max-width: 768px) {
  .connect-container {
    flex-direction: column;
  }

  .input-row {
    flex-direction: column;
  }
}
/* ===== Footer ===== */
.main-footer {
  background: linear-gradient(135deg, #0a3d62, #1e5f8a);
  color: #fff;
  padding: 60px 20px 20px;
}

/* Grid Layout */
.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Blocks */
.footer-block h2,
.footer-block h3 {
  margin-bottom: 15px;
}

.footer-block p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 15px;
}

/* Links */
.footer-block ul {
  list-style: none;
}

.footer-block ul li {
  margin-bottom: 8px;
}

.footer-block ul li a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

.footer-block ul li a:hover {
  color: orange;
  padding-left: 5px;
}

/* Social Icons */
.footer-icons a {
  display: inline-block;
  margin-right: 10px;
  padding: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.footer-icons a:hover {
  background: orange;
  transform: scale(1.1);
}

/* Button */
.footer-action {
  margin-top: 10px;
  padding: 10px 18px;
  border: none;
  background: orange;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-action:hover {
  background: #ff8c00;
}

/* Bottom Bar */
.footer-bar {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
}

/* Responsive */
@media(max-width: 768px) {
  .footer-grid {
    text-align: center;
  }
}
/* ===== COMMON PAGE WRAPPER ===== */
.policy-page,
.help-page,
.terms-page,
.faq-page {
  padding: 80px 20px;
  background: linear-gradient(to right, #eef3f9, #f8fbff);
  font-family: 'Poppins', sans-serif;
}

/* ===== CONTAINER ===== */
.policy-container,
.help-container,
.terms-container,
.faq-container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  animation: fadeIn 0.6s ease-in-out;
}

/* ===== HEADINGS ===== */
.policy-container h1,
.help-container h1,
.terms-container h1,
.faq-container h1 {
  font-size: 32px;
  color: #0a3d62;
  margin-bottom: 15px;
  text-align: center;
}

.policy-container p,
.help-container p,
.terms-container p,
.faq-container p {
  color: #555;
  line-height: 1.7;
}

/* ===== SUB HEADINGS ===== */
.policy-container h3,
.terms-container h3 {
  margin-top: 25px;
  color: #222;
  position: relative;
}

.policy-container h3::after,
.terms-container h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: orange;
  display: block;
  margin-top: 5px;
}

/* ===== HELP CENTER CARDS ===== */
.help-box {
  background: #f4f7fb;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  transition: 0.3s;
  border-left: 4px solid #0a3d62;
}

.help-box:hover {
  transform: translateY(-5px);
  background: #eef5ff;
}

/* ===== FAQ SECTION ===== */
.faq-item {
  margin-top: 20px;
  padding: 18px;
  border-radius: 12px;
  background: #f9fbfd;
  border-left: 4px solid #0a3d62;
  cursor: pointer;
  transition: 0.3s;
}

.faq-item:hover {
  background: #eef5ff;
}

/* FAQ Question */
.faq-item h3 {
  margin: 0;
  font-size: 18px;
  color: #0a3d62;
}

/* FAQ Answer */
.faq-item p {
  margin-top: 10px;
  display: none;
  font-size: 14px;
}

/* Active FAQ */
.faq-item.active p {
  display: block;
}

/* ===== BUTTON STYLE (OPTIONAL) ===== */
.page-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background: #0a3d62;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.page-btn:hover {
  background: orange;
}

/* ===== ANIMATION ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
  .policy-container,
  .help-container,
  .terms-container,
  .faq-container {
    padding: 25px;
  }

  h1 {
    font-size: 24px;
  }
}