* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: #f6f7fb;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #1e3a8a;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #e60000;
}

.contact-btn {
  background-color: #e02424;
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1f2937;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background-color: #f6f7fb;
    text-align: center;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .contact-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}


/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(rgba(0, 24, 64, 0.6), rgba(0, 24, 64, 0.6)),
              url('image/hero.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 120px 20px 80px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #ff714d;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #f0f0f0;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.hero .btn {
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

.btn.primary {
  background-color: #ff714d;
  color: #fff;
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.services {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.service {
  text-align: center;
  color: #fff;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff33;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  font-size: 24px;
}
/* #about  */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f9f9f9;
  color: #1e2b50;
  line-height: 1.6;
}

.about {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about .subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.about-content .text {
  flex: 1 1 55%;
  text-align: left;
}

.about-content .text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e2b50;
  margin-bottom: 20px;
}

.about-content .text p {
  margin-bottom: 15px;
  color: #333;
}

.about-content .image {
  flex: 1 1 40%;
}

.about-content .image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-content .text {
    text-align: center;
  }
}
.reliable-section {
  background-color: #fff;
  padding: 4rem 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.reliable-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.reliable-left {
  flex: 1 1 60%;
  padding-right: 2rem;
}

.reliable-left h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.highlight-red {
  color: #c62828;
  font-weight: bold;
}

.reliable-left ul {
  list-style-type: disc;
  padding-left: 1.2rem;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
}

.reliable-left ul li {
  margin-bottom: 1rem;
}

.reliable-right {
  flex: 1 1 35%;
  background-color: #2f4e66;
  color: #fff;
  padding: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px;
}

.reliable-right p {
  margin-bottom: 1.5rem;
}

/* #counter */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  background: #f9fafa;
  padding: 40px 20px 20px; /* ↓ Reduced bottom padding */
  text-align: center;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card .icon {
  background: #193b9b;
  color: white;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 24px;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 20px;
}

.stat-card h3 {
  font-size: 1.8rem;
  color: #193b9b;
  margin-bottom: 5px;
}

.stat-card p {
  color: #444;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .stat-card {
    width: 100%;
    max-width: 320px;
    margin: auto;
  }

  .stats {
    flex-direction: column;
    align-items: center;
  }
}

/* #services  */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

.services-section {
  padding: 30px 20px; /* ↓ Reduced top/bottom padding */
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #1a237e;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #555;
  margin-bottom: 40px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.icon {
  background-color: #d32f2f;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #1a237e;
  margin: 10px 0;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
}

.service-card li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
  color: #444;
}

.service-card li::before {
  content: "•";
  color: #d32f2f;
  position: absolute;
  left: 0;
}
/* #additionalservice */
.additional-services {
  background-color: #f1f7ff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px auto;
  max-width: 1300px;
}

.additional-services h2 {
  font-size: 28px;
  color: #0c1a6b;
  margin-bottom: 40px;
}

.additional-services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-items: center;
}

.additional-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  max-width: 270px;
}

.additional-card:hover {
  transform: translateY(-5px);
}

.additional-icon {
  background-color: #e4efff;
  color: #0c1a6b;
  font-size: 22px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.additional-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0c1a6b;
  margin-bottom: 8px;
}

.additional-card p {
  font-size: 14px;
  color: #555;
}

/* #whychooseus */
.why-dsj-section {
  background-color: #f4f6f9;
  padding: 60px 20px;
  text-align: center;
}

.why-dsj-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.why-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-icon {
  background-color: #1a237e;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.why-card h3 {
  color: #1a237e;
  margin-bottom: 10px;
}

.why-card p {
  color: #555;
  font-size: 15px;
}
/* #blog  */
.blog-section {
  padding: 60px 20px;
  background-color: #f9fbff;
}

.blog-title {
  text-align: center;
  font-size: 32px;
  color: #0c1a6b;
  margin-bottom: 10px;
}

.blog-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 18px;
  color: #0c1a6b;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.read-more:hover {
  text-decoration: underline;
}
/* #contact  */
.contact-section {
  padding: 60px 20px;
  background: #fff;
}

.contact-section h2 {
  text-align: center;
  font-size: 32px;
  color: #0a1c61;
  margin-bottom: 10px;
}

.contact-section p {
  text-align: center;
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.contact-info {
  flex: 1 1 40%;
}

.contact-info h3 {
  font-size: 24px;
  color: #0a1c61;
  margin-bottom: 20px;
}

.info-block {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.red-icon {
  color: #e53935;
  font-size: 24px;
  margin-right: 15px;
}

.contact-form {
  flex: 1 1 50%;
  background: #f6f8fc;
  padding: 30px;
  border-radius: 10px;
}

.contact-form h3 {
  font-size: 22px;
  color: #0a1c61;
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.contact-form textarea {
  margin-top: 20px;
}

.contact-form button {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #0a1c61;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #f41e07;
}

/* #footer  */
.site-footer {
  background-color: #183178;
  color: #fff;
  padding: 60px 20px 30px;
  font-size: 15px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-col h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #c0d3f5;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-col p {
  color: #c0d3f5;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-info i {
  color: #ff6f61;
  margin-right: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 10px;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #fff;
  color: #183178;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #c0d3f5;
}

.footer-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-links a {
  color: #c0d3f5;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
/* #whatsapp  */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
  text-decoration: none;
}
/* #testonomial  */
.testimonials {
  padding: 3rem 1rem;
  text-align: center;
  background: #fff;
}

.testimonials h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0a2a6c;
  margin-bottom: 2rem;
}

.slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.slides-wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 1rem;
}

.testimonial-card {
  background: #f9f9fb;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.profile {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.profile-img {
  background: #822be9;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.profile-info h3 {
  color: #0a2a6c;
  margin: 0;
}

.profile-info p {
  margin: 2px 0;
  color: #666;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.quote {
  font-style: italic;
  color: #333;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

.nav-btn i {
  font-size: 1rem;
  color: #0a2a6c;
}

.nav-btn.prev {
  left: -30px;
}

.nav-btn.next {
  right: -30px;
}

.pagination {
  margin-top: 1.5rem;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  transition: background 0.3s;
}

.dot.active {
  background: #0a2a6c;
}

.slide-count {
  font-size: 0.9rem;
  color: #444;
}
/* #pricing  */
/* .pricing-section {
  padding: 4rem 1rem;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.badge {
  background-color: #ff5e00;
  color: white;
  padding: 0.5rem 1rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
  border-radius: 2px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
}

.highlight {
  color: #ff5e00;
}

.ceo-quote {
  margin-top: 2rem;
  font-style: italic;
  color: #555;
}

.ceo-quote blockquote {
  quotes: "“" "”";
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.ceo-quote p {
  margin-top: 0;
  font-weight: 500;
  color: #222;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
  border-top: 2px solid #ccc;
  padding: 2rem 1rem;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border-radius: 8px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #111;
}

.price {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.amount {
  color: #ff5e00;
  font-weight: bold;
}

.period {
  color: #999;
  font-size: 1rem;
}

.desc {
  color: #777;
  font-size: 0.95rem;
  margin: 1rem 0;
}

.pricing-card ul {
  list-style: disc;
  text-align: left;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.pricing-card ul li {
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-block;
  background: #ff5e00;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 16px rgba(255, 94, 0, 0.25);
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e04d00;
} */
