
body {
    font-family:  sans-serif;
    background: #001F54;
    color: #fff;
    overflow-x: hidden !important;
}

/* Navbar */
.navbar {
    background: #fff;
    padding: 16px 50px;
}

.navbar-nav .nav-link {
    color: #001F54 !important;
    margin: 0 12px;
    font-weight: 500;
}

/* Hero */
.hero {
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
    text-align: center;
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

/* Background dots */
.hero::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34,197,94,0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: moveBg 25s linear infinite;
}

@keyframes moveBg {
    from { transform: translate(0,0); }
    to { transform: translate(-60px,-60px); }
}

/* Badge */
.badge-custom {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 30px;
}

/* Heading (Tailwind Converted) */
.hero-heading {
    font-size: 96px;
    font-family: sans-serif;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

/* Responsive sizes */
@media (min-width: 0px) { .hero-heading { font-size: 28px; }}
@media (min-width: 480px) { .hero-heading { font-size: 36px; } }
@media (min-width: 576px) { .hero-heading { font-size: 48px; } }
@media (min-width: 768px) { .hero-heading { font-size: 60px; } }
@media (min-width: 992px) { .hero-heading { font-size: 72px; } }
@media (min-width: 1200px) { .hero-heading { font-size: 96px; } }

/* Gradient */
.gradient-text {
    background: linear-gradient(90deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraph */
.hero p {
    font-size: 1.5rem;
    font-family: sans-serif;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

/* Buttons */
.hero-buttons {
    margin-top: 40px;
}

.btn-green {
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border: none;
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 500;
}

.btn-outline-custom {
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    margin-left: 15px;
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}
/* Section */
.stats-section {
    position: relative;
    background: #f3f4f6;
    padding: 80px 0;
    overflow: hidden;
}

/* Wave Background */
.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e5e7eb;
    border-radius: 0 0 50% 50% / 0 0 20% 20%;
    z-index: 0;
}

/* Numbers */
.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #001F54;
    margin-bottom: 10px;
}

/* Text */
.stat-text {
    font-size: 14px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 576px) {
    .stat-number {
        font-size: 32px;
    }
}
.services-section {
background-color: #fff;
}

.service-main-heading{
    font-size: 36px;
    color: #001F54;
    font-weight: bold;
}
.text-muted{
    font-size: 20px;
}
/* Card Default (Image 1) */
.service-card {
  
    background: #fff;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Hover (Image 2) */
.service-card:hover {
    border-color: #22c55e;
    box-shadow: 0 15px 40px rgba(34,197,94,0.15);
}

/* Icon */
.icon-box {
    width: 60px;
    height: 60px;
    background: #22c55e;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

/* Title Default */
.service-title {
    color: #001F54; /* dark blue */
    font-weight: 700;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* Title Hover */
.service-card:hover .service-title {
    color: #22c55e;
}

/* Description */
.service-desc {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
}

/* List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-list li {
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
    color: #374151;
}

/* Green Check Icon */
.service-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background: #22c55e;
    color: #fff;
    font-size: 11px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Learn More */
.learn-more {
    text-decoration: none;
    color: #001F54;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}
.btn-custom {
    padding: 14px 24px;
    border-radius: 10px;
  border: 1px solid #001F54;
  color: #001F54;
}

.btn-custom:hover {
  background-color: #001F54;
  color: #fff;
}

/* Hover link */
.service-card:hover .learn-more {
    color: #22c55e;
    gap: 10px;
}
.service-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* SECTION BACKGROUND */
.how-it-works {
  background: linear-gradient(to right, #041C3C, #052A5A);
  color: #fff;
}

/* BADGE */
.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #22C55E;
  font-size: 14px;
  margin-bottom: 15px;
}

.process-badge .dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
}

/* TITLE */
.process-title {
  font-size: 42px;
  font-weight: bold;
}

.process-title span {
  color: #22C55E;
}

/* SUBTITLE */
.process-subtitle {
  color: #cbd5e1;
}

/* ================= CARD ================= */
.process-card {
  position: relative;
  padding: 35px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0a1f44, #0d2a5c);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s;
  overflow: hidden;
}

/* NUMBER */
.card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(34, 197, 94, 0.1);
  color: #22C55E;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: bold;
}

/* TEXT */
.process-card p {
  color: #cbd5e1;
}

/* LIST */
.process-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.process-card ul li {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
  color: #cbd5e1;
}

.process-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #64748b;
}

/* EXPLORE BTN */
.explore-btn {
  display: inline-block;
  margin-top: 10px;
  color: #22C55E;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}

/* ========== HOVER EFFECT ========== */
.process-card:hover {
  border-color: #22C55E;
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.2);
}

.process-card:hover .card-number {
  background: #22C55E;
  color: #fff;
}

.process-card:hover h4 {
  color: #22C55E;
}

.process-card:hover ul li::before {
  color: #22C55E;
}

.process-card:hover .explore-btn {
  opacity: 1;
  transform: translateY(0);
}

/* GLOW CIRCLE */
.process-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  opacity: 0;
  transition: 0.4s;
}

.process-card:hover::after {
  opacity: 1;
}
.btn-custom-process {
    padding: 14px 24px;
    border-radius: 10px;
  border: 1px solid #22C55E;
  color: #22C55E;
}

.btn-custom-process:hover {
  background-color: #001F54;
  color: #fff;
}
.custom-hover:hover{
  font-size: 18px;
  color: #16a34a;
  border-color: #22C55E;

}
body {
  background: #041C3C;
  font-family: Arial, sans-serif;
}

/* CARD */
.project-card {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0a1f44, #0d2a5c);
  border: 1px solid rgba(255,255,255,0.1);

  transition: 0.4s ease;
}

/* IMAGE */
.project-img img {
  width: 100%;
  display: block;
}


/* CONTENT */
.project-content {
  padding: 25px;
  color: #fff;
}

/* TAG */
.tag {
  display: inline-block;
  background: rgba(34, 197, 94, 0.1);
  color: #22C55E;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

/* TITLE */
.project-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* DESC */
.project-content p {
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 15px;
}

/* TECH TAGS */
.tech span {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  margin-right: 8px;
  font-size: 13px;
}

/* VIEW BTN */
.view-btn {
  display: inline-block;
  margin-top: 15px;
  color: #22C55E;
  text-decoration: none;
  transition: 0.3s;
}

/* ================= HOVER ================= */
.project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.2);
}

/* Title green */
.project-card:hover h3 {
  color: #22C55E;
}

/* Glow effect */
.project-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -60px;
  bottom: -60px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  opacity: 0;
  transition: 0.4s;
}

.project-card:hover::after {
  opacity: 1;
}
.footer {
  color: #fff;
  padding: 60px 0;
  font-family: Arial, sans-serif;
}

.footer-logo {
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-text {
  color: #cbd5e1;
  font-size: 14px;
}

/* Newsletter */
.newsletter-box {
  display: flex;
  margin-top: 10px;
}

.newsletter-box input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px 0 0 8px;
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.newsletter-box button {
  padding: 10px 25px;
  border: none;
  background: #22C55E;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
}

/* Headings */
.footer h6 {
  margin-bottom: 15px;
}

/* Links */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
  color: #cbd5e1;
  cursor: pointer;
  transition: 0.3s;
}

.footer ul li:hover {
  color: #22C55E;
}

/* Divider */
.footer-line {
  margin: 40px 0;
  border-color: rgba(255,255,255,0.1);
}

/* Bottom */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  color: #22C55E;
}

/* Social */
.socials a {
  margin: 0 8px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.socials a:hover {
  color: #22C55E;
}

/* Extra links */
.extra-links a {
  margin-left: 15px;
  color: #cbd5e1;
  text-decoration: none;
}

.extra-links a:hover {
  color: #22C55E;
}

/* Badges */
.footer-badges {
  margin-top: 30px;
  text-align: center;
  color: #cbd5e1;
  font-size: 14px;
}

.footer-badges span {
  margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/* Placeholder */
.newsletter-box input::placeholder {
  color: #94a3b8;
}

/* BUTTON */
.send-btn {
  
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  background: #22C55E;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.send-btn:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

/* INPUT HOVER / FOCUS */
.newsletter-box input:focus {
  box-shadow: 0 0 10px #16a34a;
}

 .contact-section {
  padding: 70px 0;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

/* CARDS */
.contact-card,
.form-card {
  background: linear-gradient(135deg, #0a1f44, #0d2a5c);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}

/* HOVER CARD EFFECT */
.contact-card:hover,
.form-card:hover {
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.15);
}

/* TEXT */
.sub-text {
  color: #94a3b8;
  margin-bottom: 25px;
}



/* CONTACT ITEM */
.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.icon-box {
  width: 45px;
  height: 45px;
  background: rgba(34, 197, 94, 0.1);
  color: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
}

/* SOCIAL */
.social-section {
  margin-top: 40px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  color: #22C55E;
  border-radius: 8px;
  transition: 0.3s;
}

.social-icons a:hover, .icon-box:hover {
  background: #22C55E;
  color: #fff;
}

/* FORM */
.form-card label {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #041C3C;
  color: #fff;
  outline: none;
  transition: 0.3s;
}

/* FOCUS */
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: #22C55E;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
}

/* BUTTON */
.sendform  {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, #22C55E, #16a34a);
  color: #fff;
  font-weight: 600;
  margin-top: 10px;
  transition: 0.3s;
}

.sendform :hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}
.about-section {
  padding: 80px 0;
  font-family: 'Segoe UI', sans-serif;
}

/* TITLE */
.about-title {
  font-size: 42px;
  font-weight: bold;
  color: #0f2a5c;
  margin-bottom: 20px;
}

/* TEXT */
.about-text {
  color: #6b7280;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* TAGS */
.about-tags span {
  border: 1px solid #22C55E;
  border-color: #22C55E;
  color: #22C55E;
  display: inline-block;
  padding: 8px 14px;
  margin: 5px 5px 0 0;
  border-radius: 20px;
  font-size: 13px;
}

/* IMAGE */
.about-img {
  border: 2px solid #22C55E;
  border-radius: 15px;
  border-radius: 100%;
  max-width: 100%;
  transition: 0.4s;
}

/* HOVER EFFECT */
.about-img:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-title {
    font-size: 28px;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}

/* CARD */
.testimonial-card {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 25px;
  max-width: 350px;
   transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.testimonial-card:hover{
  border-color: #22c55e;
    box-shadow: 0 15px 40px rgba(34,197,94,0.15);
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* TOP */
.top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.quote {
  font-size: 30px;
  color: #22C55E;
}

.stars {
  color: #facc15;
}

/* TEXT */
.testimonial-card p {
  color: #4b5563;
  font-size: 14px;
  margin-bottom: 15px;
}

/* USER */
.user {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}

.user img {
  border-radius: 50%;
}

.user h6 {
  margin: 0;
}

.user span {
  font-size: 12px;
  color: #6b7280;
}

.user small {
  color: #052A5A;
}

/* AMOUNT BOX */
.amount-box {
  display: flex;
  justify-content: space-between;
  background: #e5e7eb;
  padding: 12px;
  border-radius: 10px;
}

.amount {
  color: #16a34a;
  font-weight: bold;
}

/* SWIPER */
.swiper {
  padding: 40px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  color: #22C55E;
  background: rgba(0, 255, 136, 0.1); /* transparent effect */
  border: 2px solid #22C55E;
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

/* Hover effect */
.float-btn:hover {
  color: #001F54;
  transform: scale(1.1);
}

/* Different colors (optional) */
.call {
  border-color: #22C55E;
}

.whatsapp {
  border-color: #22C55E;
  color: #22C55E;
}

.whatsapp:hover {
  background: #22C55E;
  color: #fff;
}

.top {
  border-color: #22C55E;
}
.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: #001f54;
}

.arrow {
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  text-align: start;
  overflow: hidden;
  padding: 0 10px;
  font-size: 14px;
  color: #555;
  transition: 0.3s ease;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}