* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: block;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
}

* {
  scrollbar-width: none !important;
  scrollbar-color: #ffffff #ffffff !important;
}

/* navigation */
.navbar {
  transition: all 0.3s ease;
  background-color: transparent !important;
  font-weight: 700;
  height: 80px;
}

.navbar.scrolled {
  background-color: #14192d !important;
  backdrop-filter: blur(10px);
  height: 80px;
}

.navbar-nav .nav-link:hover {
  color: #ff6b6b !important;
}

.nav-logo {
  height: 25px;
}

.navbar-nav .nav-link.active {
  color: #e55a2b !important;
}

@media (min-width: 992px) {
  .navbar-collapse {
    border-radius: 0 !important;
    margin-top: 0 !important;
    height: 80px;
  }
}

@media (max-width: 991.98px) {
  .navbar.mobile-menu-open {
    background-color: #14192d !important;
  }
}

/* Mobile dropdown background */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #14192d;
  }
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Video Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* Vector Image */
.vector-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.vector-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  background: #000;
}

/* Content Layer */
.content-layer {
  position: relative;
  z-index: 15;
  color: white;
}

/* Typography */
.tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f37423;
  margin-bottom: 1rem;
  padding-left: 100px;
}

.tagline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 80px;
  height: 1px;
  background: white;
  transform: translateY(-50%);
}

.main-heading {
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: Caladea;
  font-weight: 400;
  font-size: 90px;
}

.main-heading .highlight {
  color: #f37423;
  position: relative;
  font-family: Satisfy;
  font-weight: 400;
  font-style: Regular;
  font-size: 60px;
}

.description {
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;
  font-family: Microsoft Sans Serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

/* talk-button Button */
.talk-button {
  font-family: Sansation;
  padding: 10px 30px;
  color: #ffffff;
  background: transparent;
  border: 2px solid #f37423;
  outline: none;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.talk-button:hover {
  background: #f37423;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(243, 116, 35, 0.3);
}

.archivement-description {
  text-align: justify;
  line-height: 2;
  font-family: poppins;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tagline {
    padding-left: 0;
  }

  .tagline::before {
    display: none;
  }

  .main-heading {
    font-size: 2.5rem;
  }

  .description {
    font-size: 1rem;
  }

  .hero-section {
    padding-top: 60px;
  }

  .services-section {
    padding: 20px 15px !important;
    background-color: #f8f9fa;
    position: relative;
  }

  .leading-description {
    text-align: justify;
    padding: 20px 15px;
    font-size: 14px;
  }

  .leading-header {
    padding: 20px 15px;
    font-size: 25px;
  }

  .archivement-section {
    padding: 20px 15px;
  }

  .archivement-description {
    font-size: 14px !important;
    text-align: justify;
  }

  .how-dev-des {
    padding: 20px 15px;
    font-size: 14px;
    text-align: justify;
  }

  .header-sec {
    padding: 20px 15px;
    font-size: medium;
  }

  .computer-img {
    height: 100px;
    width: 250px;
  }
}

@media (max-width: 576px) {
  .main-heading {
    font-size: 2rem;
  }

  .tagline {
    font-size: 12px;
  }
}

.services-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  position: relative;
}

.services-left-shape-svg {
  position: absolute;
  left: 0;
  top: 0;
}

.services-right-shape-svg {
  position: absolute;
  bottom: 0;
  right: 0;
}

.service-card {
  background: white;
  border-radius: 15px 0;
  padding: 40px 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card h5 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  z-index: 2;
}

.service-card p {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.service-arrow {
  width: 35px;
  height: 35px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-card:hover .service-arrow {
  transform: scale(1.1);
}

.services-content {
  padding-left: 50px;
}

.services-label {
  color: #2f327d;
  font-family: Poppins;
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.services-label span {
  color: #f57c00;
}

.services-title {
  color: #000000;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 25px;
  font-family: poppins;
}

.services-description {
  color: #646464;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
  font-family: "Poppins", sans-serif;
}

.services-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.services-list li {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.services-list li::before {
  content: "●";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ff6b35;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
}

.get-started-btn {
  background: #ff6b35;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  font-size: 16px;
  margin-top: 20px;
}

.get-started-btn:hover {
  background: #e55a2e;
  color: white;
  transform: translateY(-2px);
}

.decorative-dots {
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, #ff6b35 2px, transparent 2px);
  opacity: 0.1;
  z-index: 1;
}

@media (max-width: 768px) {
  .services-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .services-description {
    font-size: 14px;
  }

  .service-card {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
}

.geopixpro-section {
  background-color: #f5f5f5;
  position: relative;
  overflow: hidden;
  padding: 46px 0;
}

.dot-pattern {
  position: absolute;
  top: -52px;
  left: 0;
  width: 404px;
  height: 300px;
  background-image: url("Image/Dot-img3.png");
  background-repeat: no-repeat;
  background-position: top left;
  z-index: 1;
}

.dot-pattern2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 404px;
  height: 300px;
  background-image: url("Image/Dot-img4.png");
  background-repeat: no-repeat;
  background-position: top left;
  z-index: 1;
}

.section-title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 22px;
  color: #2f327d;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.section-title .highlight {
  color: #f57c00;
  font-style: normal !important;
}

.section-description {
  font-size: 16px;
  color: #646464;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
  font-family: "Poppins", sans-serif;
}

.circular-image {
  width: 100%;
  max-width: 500px;
  height: 500px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.content-wrapper {
  position: relative;
  z-index: 2;
}

.text-content {
  padding-right: 30px;
}

.image-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .text-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .circular-image {
    max-width: 350px;
    height: 350px;
  }

  .dot-pattern {
    width: 150px;
    height: 150px;
  }

  .get-started-btn {
    display: flex;
    justify-content: center;
    margin: 20px auto 0;
  }

  .section-description {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }

  .circular-image {
    max-width: 280px;
    height: 280px;
  }

  .geopixpro-section {
    padding: 20px 15px;
  }
}

.background-3 {
  background: url("Image/background-3.png") center/cover no-repeat;
  min-height: 80vh;
}

/* Color utility classes - consolidated */
.text-orange {
  color: #ff6b35;
}

.text-blue {
  color: #2563eb;
}

/* leading companies */
.leading-header {
  font-family: Poppins;
  font-weight: 600;
  font-size: 35px;
}

.leading-description {
  text-align: justify;
  font-size: 16px;
  line-height: 2;
  font-family: poppins;
}

.trust-us {
  color: #f57c00;
  font-family: Satisfy;
  font-weight: 500;
}

.partners-content p {
  font-size: 16px;
  color: #696984;
  font-weight: 400;
  margin-bottom: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .partners-content h2 {
    font-size: 2rem;
  }

  .full-width-card-2 {
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .partners-content h2 {
    font-size: 1.8rem;
  }

  .partner-logo {
    min-height: 80px;
  }
}

/* Agile cards styling */
.agile-card {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.agile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.agile-cards-container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .agile-card {
    width: 100%;
  }

  .background-3 {
    background: url("Image/background-3.png") center/cover no-repeat;
    min-height: 600px;
  }
}

@media (max-width: 991px) {
  .display-5 {
    font-size: 2rem;
  }

  .Section-6 {
    padding: 40px 0;
  }

  .full-width-container {
    padding: 20px;
  }

  .leadingdiv {
    width: 100% !important;
  }

  .square-3 {
    display: none;
  }

  .square-image-2 {
    display: none;
  }

  .agile-row-gap {
    margin-top: 20px !important;
  }

  .agile-cards-container .row {
    display: block !important;
  }

  .redline {
    display: none;
  }
}

.footer-content {
  padding-top: 20px;
}

/* footer */
.company_infor_footer {
  margin: 30px 0 0 30px !important;
}

.quick_link_footer {
  margin: 30px 0 0 50px !important;
}

.service_footer_sec {
  margin: 30px 0 0 30px !important;
}

@media (min-width: 768px) and (max-width: 991px) {
  .company_infor_footer {
    margin: 30px 0 0 30px !important;
  }

  .quick_link_footer {
    margin: 30px 0 0 30px !important;
  }

  .service_footer_sec {
    margin: 30px 0 0 30px !important;
  }
}

@media (max-width: 1400px) {
  .company_infor_footer {
    margin: 30px 0 0 0 !important;
  }

  .quick_link_footer {
    margin: 30px 0 0 0px !important;
  }

  .service_footer_sec {
    margin: 30px 0 0 30px !important;
  }
}

@media (max-width: 1200px) {
  .company_infor_footer {
    margin: 30px 0 0 0 !important;
  }

  .quick_link_footer {
    margin: 30px 0 0 0px !important;
  }

  .service_footer_sec {
    margin: 30px 0 0 30px !important;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 40px 0 20px;
    background-color: #14192d;
  }

  .footer-background {
    display: none !important;
  }

  .footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
  }

  .footer-section .col-lg-4,
  .footer-section .col-lg-3 {
    margin: 20px 0 0 0 !important;
  }

  .section-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

/* buttons for service cards */
.arrow-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  color: inherit;
}

.arrow-btn:hover {
  opacity: 0.8;
}