body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

body,
p,
div,
span,
a {
  font-family: "Inter", sans-serif;
}

/* home page hero section start */
/* ================= HERO SECTION ================= */
.hero {
  min-height: 100vh;
  padding: 80px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.3;
}

.hero-content h1 span {
  color: #00ffd5;
}

.hero-content p {
  margin: 20px 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.btn.primary {
  background: #00ffd5;
  color: #000;
}

.btn.primary:hover {
  background: #00c2a6;
}

.btn.secondary {
  border: 2px solid #00ffd5;
  color: #00ffd5;
}

.btn.secondary:hover {
  background: #00ffd5;
  color: #000;
}

.hero-image img {
  width: 420px;
  max-width: 100%;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* home page hero section end */

/* home about section start */
/* ========== ABOUT SECTION ========== */
.home-about-section {
  padding: 120px 0;
  background: #ffffff;
}

.home-about-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ========== GRID ========== */
.home-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* ========== LEFT CONTENT ========== */
.home-about-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 40px;
  background: #eef2ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}

.home-about-heading {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.home-about-heading span {
  background: linear-gradient(90deg, #2563eb, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.home-about-description {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 24px;
}

.home-about-highlight {
  font-weight: 600;
  color: #0f172a;
}

/* ========== CTA ========== */
.home-about-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  border-radius: 50px;
  background: linear-gradient(90deg, #2563eb, #22c55e);
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.4s;
}

.home-about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35);
}

/* ========== RIGHT CARDS ========== */
.home-about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.home-about-card {
  padding: 34px 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.08),
    0 8px 16px rgba(15, 23, 42, 0.04);
  transition: 0.45s;
  position: relative;
  overflow: hidden;
}

.home-about-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.12),
    rgba(34, 197, 94, 0.12)
  );
  opacity: 0;
  transition: 0.45s;
}

.home-about-card:hover::after {
  opacity: 1;
}

.home-about-card:hover {
  transform: translateY(-12px);
}

/* Accent */
.home-about-card-accent {
  width: 42px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #2563eb, #22c55e);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.home-about-card-title {
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.home-about-card-text {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .home-about-heading {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .home-about-section {
    padding: 90px 0;
  }

  .home-about-heading {
    font-size: 28px;
  }

  .home-about-cards {
    grid-template-columns: 1fr;
  }
}
/* 
  home about section end  */

/* ================= SERVICES SECTION strat ================= */
.services {
  padding: 80px 8%;
  background: #f8f9fa;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #0f2027;
}

.service-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.card {
  padding: 40px 20px;
  background: #fff;
  border-radius: 15px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  background: #00ffd5;
}

/* ================= CTA SECTION ================= */
.cta {
  padding: 70px 8%;
  background: #0f2027;
  color: #fff;
  text-align: center;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-image {
    margin-top: 40px;
  }
}

/* SERVICES SECTION end  */

/* development preocess section start  */
/* ===== Process Section ===== */
.process_section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f4f7fb, #ffffff);
  font-family: "Segoe UI", sans-serif;
}

.process_heading {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.process_heading span {
  color: #004290;
  font-weight: 700;
}

.process_flow {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.process_step {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.process_step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #004290, #f39313);
  opacity: 0;
  z-index: 0;
  transition: 0.35s;
}

.process_step * {
  position: relative;
  z-index: 1;
}

.process_step:hover {
  transform: translateY(-12px);
  color: #ffffff;
}

.process_step:hover::before {
  opacity: 1;
}

.step_icon {
  width: 75px;
  height: 75px;
  margin: auto;
  border-radius: 50%;
  background: #004290;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 22px;
  transition: 0.35s;
}

.process_step:hover .step_icon {
  background: #ffffff;
  color: #004290;
}

.process_step h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .process_heading {
    font-size: 2rem;
  }
}

/* development process section endd */
/* 
website with full ownership section start */
.ownership_section_2025 {
  padding: 80px 20px;
  font-family: "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1a0433, #0d021a);
}

.ownership_content_wrapper_2025 {
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.ownership_left_text_2025 {
  flex: 1 1 460px;
  padding: 20px;
}

.ownership_left_text_2025 h5 {
  color: #ffffff;
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.ownership_left_text_2025 h2 {
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #ffffff;
}

.ownership_left_text_2025 p {
  color: #cfcfcf;
  font-size: 1rem;
  max-width: 520px;
}

.ownership_features_2025 {
  flex: 1 1 520px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ownership_feature_box_2025 {
  background: linear-gradient(145deg, #2b0a4a, #3a0f63);
  border: 1px solid rgba(255, 79, 109, 0.3);
  padding: 16px 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.35s ease;
  cursor: default;
}

.ownership_feature_box_2025:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(255, 79, 109, 0.25);
}

.ownership_feature_box_2025 i {
  font-size: 1.4rem;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .ownership_content_wrapper_2025 {
    flex-direction: column;
    text-align: center;
  }

  .ownership_left_text_2025 h2 {
    font-size: 1.7rem;
  }

  .ownership_left_text_2025 p {
    margin: auto;
  }

  .ownership_features_2025 {
    grid-template-columns: 1fr;
  }
}
/* 
website with full ownership section end */

/* why choose section start  */

/* ========== SECTION ========== */
.white-modern-why-section {
  padding: 120px 0;
  background: #ffffff; /* parent stays WHITE */
}

.white-modern-why-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ========== HEADER ========== */
.white-modern-why-header {
  text-align: center;
  margin-bottom: 80px;
}

.white-modern-why-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 40px;
  background: #eef2ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
}

.white-modern-why-title {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.white-modern-why-title span {
  background: linear-gradient(90deg, #2563eb, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.white-modern-why-subtitle {
  max-width: 780px;
  margin: auto;
  font-size: 17px;
  color: #475569;
}

/* ========== GRID ========== */
.white-modern-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ========== CARD ========== */
.white-modern-why-card {
  position: relative;
  padding: 42px 36px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.08),
    0 8px 16px rgba(15, 23, 42, 0.04);
  transition: 0.5s;
  overflow: hidden;
}

.white-modern-why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.15),
    rgba(34, 197, 94, 0.15)
  );
  opacity: 0;
  transition: 0.5s;
  z-index: 0;
}

.white-modern-why-card:hover::after {
  opacity: 1;
}

.white-modern-why-card:hover {
  transform: translateY(-14px);
}

/* Accent line */
.white-modern-why-accent {
  width: 54px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #2563eb, #22c55e);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Card content */
.white-modern-why-card-title {
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.white-modern-why-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  position: relative;
  z-index: 1;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .white-modern-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .white-modern-why-title {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .white-modern-why-grid {
    grid-template-columns: 1fr;
  }
  .white-modern-why-title {
    font-size: 28px;
  }
  .white-modern-why-section {
    padding: 80px 0;
  }
}
/* why choose section end  */

/* arrow */

.scroll-top {
  z-index: 10000;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  /* background: #e10d25;
  color: white; */
  /* border: none;
  border-radius: 50%; */
  font-size: 24px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
/* 
.scroll-top:hover {
  background: #0056b3;
} */

.scroll-top.show {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* icons */
/* Floating Icons Styling */
.floating-icons {
  position: fixed;
  right: 15px;
  top: 70%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

/* Common icon style */
.floating-icons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.floating-icons a:hover {
  transform: scale(1.1);
}

.phone-icon {
  background-color: #4285f4;
}

.whatsapp-icon {
  background-color: #25d366;
}

/* Responsive visibility */
@media (min-width: 768px) {
  .phone-icon {
    display: none;
  }
}

a .fab.fa-whatsapp {
  color: #ffffff;
  font-size: 24px;
}
