/* ==== Global Scrollbar Style ==== */
html {
  scroll-behavior: smooth;
}

/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px; /* scrollbar ki width */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* background of scrollbar area */
}

::-webkit-scrollbar-thumb {
  background-color: #5875dd; /* your main color */
  border-radius: 10px;
  border: 2px solid #f1f1f1; /* thoda white border for clean look */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #3c5bc0; /* darker shade on hover */
}

/* ==== For Firefox (cross-browser support) ==== */
* {
  scrollbar-width: thin;
  scrollbar-color: #5875dd #f1f1f1;
}


/* Optional smooth slide effect */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Logo color palette as root variables */
:root {
  --primary-color: #4380ef;
  /* Example: blue from logo */
  --secondary-color: #0056b3;
  /* Example: dark blue from logo */
  --bg-color: #5875dd;
  /* Example: accent yellow from logo */
  --background-color: #f8f9fa;
  --text-color: #5a5a5a;
  --button-hover-bg: #000;
  --white-color: #fff;
}

/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
html,
body {
  height: 100%;
  overflow-x: hidden;
  /* horizontal scroll hata de */
  overflow-y: auto;
  /* vertical scroll allow */
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  padding-top:60px;
}

img.fullscreen-img {
  width: 100%;
  height: auto;
  /* agar image viewport se badi hai to height auto scroll dega */
  display: block;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  text-decoration: none;
}

/*==button styles==*/
.our-primary-btn {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  color: #fff;
  border: none;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
}

.our-primary-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  /* shorthand for top:0;left:0;right:0;bottom:0 */
  background-color: var(--bg-color);
  /* normal background */
  z-index: 0;
  border-radius: 50px;
}

.our-primary-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--button-hover-bg);
  /* hover background */
  transition: width 0.3s ease;
  z-index: 0;
  border-radius: 50px;
}

.our-primary-btn:hover::after {
  width: 100%;
}

.our-primary-btn span {
  position: relative;
  z-index: 1;
}

.our-secondary-btn {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: var(--button-hover-bg);
  border: none;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
}

.our-secondary-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--bg-color);
  transition: width 0.3s ease;
  z-index: 0;
  border-radius: 50px;
}

.our-secondary-btn:hover::after {
  width: 100%;
}

.our-secondary-btn span {
  position: relative;
  z-index: 1;
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.float-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.float-btn:hover {
  transform: scale(1.1);
}

.whatsapp {
  background: #25D366;
}
.call {
    background: #5875dd;
}

.location {
  background: #ff5b5b;
}

/* Floating button */
/* Floating button style */
.go-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background-color: #5875dd;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.go-to-top:hover {
  background-color: #0056b3;
  transform: scale(1.1);
  color: #fff;
}

/*==end button styles===========================================*/
/*==heading-tittle-css==*/
.heading-tittle {
  text-align: center;
  padding: 0 0 30px;
  position: relative;
  z-index: 111;
}

.heading-tittle h6 {
  color: var(--text-color);
  font-size: 16px;
  position: relative;
}

.heading-tittle h2 {
  color: #080b39;
  font-size: 36px;
}

.heading-tittle p {
  color: var(--text-color);
  font-size: 18px;
  margin: 0;
}

.heading-tittle h6:after {
  content: "";
  width: 55px;
  height: 3px;
  background-color: var(--bg-color);
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}

/*==megamenu styles==*/
/* Mega Menu Styling */
.mega-dropdown .dropdown-menu {
  width: 100% !important;
  max-width: 1140px !important;
  /* container-xl size */
  margin: 0 auto;
  /* center align */
  left: 0 !important;
  right: 0 !important;
  top: 81px;
  transform: none !important;
  border-radius: 0;
  transition: opacity 0.2s ease-in-out;
  /* edges flat rakhne ke liye */
}

.mega-dropdown:hover .dropdown-menu {
  display: block !important;
  visibility: visible;
  opacity: 1;
}

.mega-dropdown {
  position: static !important;
  /* so that dropdown can expand */
}

.mega-menu ul li {
  margin-bottom: 10px;
}

.mega-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mega-menu ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.service-box h2 {
  color: var(--primary-color);
}

/* Right Side Box */
.mega-menu .service-box {
  background: #000;
  border-radius: 12px;
}

.mega-menu .service-box h6 {
  font-size: 14px;
  letter-spacing: 1px;
}

.mega-menu .service-box h2 {
  font-size: 28px;
}

.mega-menu .service-box img {
  max-height: 140px;
  object-fit: cover;
}

.dropdown-toggle::after {
  border: none;
}

/*==end megamenu styles==*/
/*=====================top header css========================*/
#topHeader {
    background: linear-gradient(90deg, #5875dd 0%, #5875dd 50%, #3965d1 100%);
}

#topHeader a {
  text-decoration: none;
}

.divider {
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  vertical-align: middle;
}

.social-icons a {
  color: var(--secondary-color);
  background-color: #ffffff;
  border-radius: 4px;
  padding: 0 6px;
  margin: 4px;
  display: inline-block;
}

.social-icons a:hover {
  color: var(--text-color);
}

.social-icons {
  display: inline-block;
}

/* alignment fix */
.left-info span,
.right-info span {
  display: flex;
  align-items: center;
}

/* responsive fix */
@media (max-width: 768px) {
  .left-info, .right-info {
    justify-content: center;
    text-align: center;
  }
  .divider {
    display: none;
  }
}


/*============================header nav css========================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.top-header {
  background-color: var(--bg-color);
  transition: all 0.3s ease;
}

header .navbar-nav .nav-link {
  position: relative;
  transition: color 0.2s;
  text-decoration: none !important;
}

header li.nav-item {
  padding: 0 10px;
}

header .navbar-nav .nav-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #0d6efd;
  position: absolute;
  left: 0;
  bottom: -4px;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header nav.navbar {
  padding: 12px 0;
}

header .navbar-nav .nav-link:hover::after,
header .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

header .navbar-nav .nav-link:not(:hover):not(.active)::after {
  transform: scaleX(0);
}

/* === Sticky Navbar === */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-in-out;
}

body.nav-fixed {
  padding-top: calc(80px + var(--top-header-height, 50px));
  /* adjust if needed */
}

#topHeader {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/*============================end header nav css========================*/
/*============================Hero section  Styles========================*/
.hero-content h1 {
  font-size: 42px;
  line-height: 52px;
}

section.hero-section {
  background-color: #080b39;
  box-sizing: border-box;
  padding: 50px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.nested-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  height: 300px;
  margin: 0 0 0 auto;
  padding: 10px;
  position: relative;
  scrollbar-width: none;
  z-index: 1;
  animation: scrollUp 25s linear infinite;
}

.trusted-customer {
  position: relative;
  z-index: 222;
  background-color: #080b39;
  padding: 10px 0 16px;
}

.nested-item {
  background-color: #fff;
  border-radius: 5px;
  width: 13rem;
  height: auto;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nested-item img {
  max-width: 100px;
  height: auto;
  object-fit: contain;
  display: block;
  padding: 5px 0px;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
  }
}

/*==about-tech-section-css==============================================*/
.about-img img {
  max-width: 500px;
  margin: auto;
  width: 100%;
}

.about-img::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: 0;
  z-index: 1;
  background-image: url(../images/20785.jpg);
  max-width: 200px;
  width: 100%;
  height: 200px;
  background-size: cover;
  border: 3px solid #fff;
  border-radius: 14px;
}

.about-img {
  text-align: center;
  position: relative;
}

.about-us-sec {
  background-image: url(../images/bg-about.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-content h2 {
  color: #080b39;
}

.about-tech .tech-logos li:hover {
  border: 1px solid var(--bg-color);
}

/*=========================end about-tech-section-css=================*/
/*====Services section styles==*/
.our-services .heading-tittle p,
.our-services .heading-tittle h2,
.our-services .heading-tittle h6 {
  color: #fff;
}

section.our-services {
  position: relative;
  background-image: url(../images/web-application.jpg);
  background-size: cover;
}

.service-card svg {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.service-card a h5 {
  font-size: 18px;
  color: #080b39;
  cursor: pointer;
}

.servicelist {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.servicelist li {
  margin-bottom: 10px;
}

.servicelist li a {
  display: block;
  padding: 8px 8px 8px 40px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  font-size: 10px;
  color: #333333;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  font-weight: 500;
  max-width: 220px;
  margin: auto;
  position: relative;
  text-align: left;
}

/* Blue Dot Icon Before Text */
.servicelist li a::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #2563eb;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  top: 13px;
}

/* Hover Effect */
.servicelist li a:hover {
  background-color: #f3f6ff;
  border-color: #2563eb;
  color: #2563eb;
  box-shadow: 0 3px 8px rgba(37, 99, 235, 0.15);
}

.service-card {
  border-radius: 12px;
  border: 2px solid #080b39;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background-color: #fff;
  overflow: visible !important;
  margin: 20px 10px;
  min-height: 440px;
}

.service-card:hover {
  transform: scale(1.05) rotateX(3deg) rotateY(3deg);
  border: 1px solid var(--bg-color);
}

.icon:after {
  position: absolute;
  background: linear-gradient(45deg, #1e13c9, #048efe);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  left: 60%;
  /* center align */
  top: 25px;
  transform: translateX(-50%);
  /* perfect center */
  content: "";
  opacity: .15;
  animation: leftright 3s infinite alternate;
}

.icon {
  position: relative;
}

@keyframes leftright {
  0% {
    transform: translateX(-20px);
    /* thoda left */
  }

  50% {
    transform: translateX(20px);
    /* thoda right */
  }

  100% {
    transform: translateX(0);
    /* center */
  }
}

.service-carousel {
  position: relative;
}

.service-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  pointer-events: none;
  z-index: 10;
  display: flex;
  justify-content: space-between;
}

.service-carousel .owl-nav button.owl-prev,
.service-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  /* fallback color */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(7, 43, 131, 0.15);
  transition: background 0.2s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  /* add padding for arrow visibility */
  background: var(--primary-color);
  /* base color */
}

/* Position left and right arrows */
.service-carousel .owl-nav button.owl-prev {
  left: -40px;
  ;
  right: auto;
  background: var(--primary-color) url(../images/left-arrow-carousel.png) no-repeat center center;
  background-size: 20px 20px;
}

.service-carousel .owl-nav button.owl-next {
  right: -40px;
  left: auto;
  background: var(--primary-color) url(../images/right-arrow-carousel.png) no-repeat center center;
  background-size: 20px 20px;
}

.service-carousel .owl-nav span {
  display: none;
}

/*=================end Services section styles=================*/
/*====================protfolio-secation styles================*/
/* ===== Portfolio Section ===== */

/* ===== Portfolio Card ===== */
.portfolio-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

/* Header part */
.portfolio-head {
  background: linear-gradient(90deg, #3445d8, #091c5c);
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-head h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.portfolio-head a span {
  background: #fff;
  color: #470047;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 15px;
  text-transform: uppercase;
}

/* Image section */
.webiste-img {
  margin: 10px;
  overflow: hidden;
  height: 220px;
  position: relative;
}

.webiste-img figure {
  margin: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.webiste-img img {
  width: 100%;
  height: auto;
  /* natural height maintain karega */
  transform: translateY(0);
  transition: transform 6s ease-in-out;
  /* smooth scroll speed */
}

/* Hover effect: image top se bottom scroll karegi */
.portfolio-card:hover .webiste-img img {
  transform: translateY(-50%);
  /* adjust % according to image height */
}


/* Bottom info */
.portfolio-bottom {
  padding: 15px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio-bottom a {
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

.portfolio-bottom a:hover {
  color: #080b39;
}

.portfolio-bottom h5 {
  font-size: 14px;
  margin: 0;
  color: #222;
}

/*==================why choose us section styles=================*/
section.why-choose-us {
  background-image: url(../images/001.jpg);
  background-size: cover;
  position: relative;
  height: auto;
  padding: 50px 0;
  background-position: center center;
}

.overlay {
  background-color: rgb(23 49 82 / 66%);
  opacity: 1;
  transition: background .3s, border-radius .3s, opacity .3s;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.why-choose-us .heading-tittle {
  padding: 0 0 10px;
}

.why-choose-us-content {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid #5875dd;
  min-height: 170px;
}

.why-choose-us-content:hover {
  border-bottom: none;
}

.why-choose-us-content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #5875dd;
  transition: bottom 0.4s ease-in-out;
  border-radius: 12px;
  z-index: 1;
}

.why-choose-us-content:hover::after {
  bottom: 0;
}

.why-choose-us-text h5 {
  color: #080b39;
  font-size: 16px;
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
}

.why-choose-us-text p {
  color: #000;
  font-size: 14px;
  position: relative;
  z-index: 2;
  margin: 0;
}

.why-choose-us-icon i {
  font-size: 40px;
  color: #080b39;
  position: relative;
  z-index: 2;
}

.why-choose-us-content:hover h5,
.why-choose-us-content:hover p,
.why-choose-us-content:hover i {
  color: #fff;
}

.why-choose-us-text {
  padding-left: 20px;
}

/*==================end why choose us section styles=================*/
/* Tabs ke default border ko hatakar ek clean look denge */
.technologies-sec {
  background-image: url(../images/bg-card-tecno.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.nav-tabs {
  border-bottom: none;
}

/* Nav Link ko customize karein */
.nav-tabs .nav-link {
  border: none;
  color: #333;
  /* Default text color */
  padding: 10px 15px;
  margin: 0 10px;
  border-bottom: 3px solid transparent;
  /* Bottom underline ke liye */
  transition: all 0.3s ease;
}

/* Jab tab select ho (Active State) */
.nav-tabs .nav-link.active {
  color: #333;
  /* Text ko darker rakhein */
  background-color: transparent;
  /* Background hata dein */
  border-color: #080b39;
  /* Pink underline (apna primary color use karein) */
  font-weight: 600;
  /* Font ko thoda bold karein */
}

/* Hover state */
.nav-tabs .nav-link:hover {
  border-color: #5875dd;
  /* Halka sa border dikhayein hover par */
}

/* Agar aap chahte hain ki content mein logos aur text ek box mein dikhein, to .col-lg-2 mein thodi styling add kar sakte hain */
.tab-pane .row .col-lg-2 {
  padding: 20px 10px;
}

/*========================end-sec========================================*/
/*==================technology section styles=================*/
figure.brand-logo img {
  max-width: 130px;
  height: 40px;
  margin: auto;
}

figure.brand-logo {
  padding: 10px;
  background-color: #fff;
  border: 2px solid var(--secondary-color);
  border-radius: 3px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.technology-brands .owl-dots {
  display: block;
  /* override default none */
  text-align: center;
  margin-top: 10px;
}

.technology-brands {
  background-color: #F3F8FF;
}

.technology-brands .owl-dot span {
  width: 16px;
  height: 12px;
  background: var(--bg-color);
  display: block;
  margin: 4px;
}

.technology-brands .owl-dot.active span {
  background: var(--secondary-color);
}

/*==================end technology section styles=================*/
/*==================exepirience section styles=================*/
.bussiness-exp {
  background-image: url(../images/bg-card-tecno.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.annivarsary-img figure img {
  max-width: 320px;
  width: 100%;
}

.annivarsary-info h2 {
  color: #080b39;
  font-size: 30px;
}

/*==================end exepirience section styles=================*/
/*====================our-process===================================*/

/*=====================end-sec======================================*/
/*==================testimonials section styles=================*/
section.our-testimonials {
  background-color: #F3F8FF;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 40px 40px 40px 40px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.07);
  max-width: 500px;
  margin: 10px auto;
  position: relative;
  transition: transform 0.3s ease;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card:after {
  position: absolute;
  content: "";
  background-image: url(../images/inverted-commas.png);
  right: 20px;
  bottom: 20px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}

.testimonial-content {
  text-align: center;
}

.testimonial-image img {
  max-width: 180px;
  height: 110px;
  object-fit: cover;
  border: 3px solid rgb(240, 240, 240);
  margin: auto;
  border-radius: 20px;
}

.testimonial-text {
  flex: 1;
  margin-top: 20px;
}

.testimonial-message {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 8px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
}

.testimonial-role {
  font-size: 14px;
  color: #999;
}

/* Testimonial Carousel Navigation Arrows */
.testimonial-carousel {
  position: relative;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  pointer-events: none;
  z-index: 10;
  display: flex;
  justify-content: space-between;
}

.testimonial-carousel .owl-nav button.owl-prev,
.testimonial-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  /* fallback color */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(7, 43, 131, 0.15);
  transition: background 0.2s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  /* add padding for arrow visibility */
  background: var(--primary-color);
  /* base color */
}

/* Position left and right arrows */
.testimonial-carousel .owl-nav button.owl-prev {
  left: -20px;
  right: auto;
  background: var(--primary-color) url(../images/left-arrow-carousel.png) no-repeat center center;
  background-size: 20px 20px;
}

.testimonial-carousel .owl-nav button.owl-next {
  right: -20px;
  left: auto;
  background: var(--primary-color) url(../images/right-arrow-carousel.png) no-repeat center center;
  background-size: 20px 20px;
}

.testimonial-carousel .owl-nav span {
  display: none;
}

/*===========================end testimonials section styles=================*/
/*===================contact-form--styles============================*/
.contact-section {
  background-image: url(../images/);
  background-position: center center;
  background-size: cover;
}

.contact-box h4 {
  color: #080b39;
}

/*====================end-styles========================================*/

/*===========================footer section styles=================*/
footer {

  background-color: #F3F8FF;
}

.footer-links h5 {
  color: var(--button-hover-bg);
  position: relative;
}

.footer-links h5:after {
  content: "";
  width: 50px;
  height: 4px;
  background-color: var(--bg-color);
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  border-radius: 10px;
}

ul.list-unstyled li a {
  color: var(--text-color);
}

ul.list-unstyled li a:hover {
  color: var(--secondary-color);
}

ul.list-unstyled li a i {
  padding-right: 8px;
}

/*===========================end footer section styles=================*/
/*==about-page-css-start====================================================================*/
/*======================================about-page-banner-css===========================*/
.sub-page-banner {
  position: relative;
  background-image: url(../images/page-banner.jpg);
  background-size: cover;
  background-position: center;
  padding: 100px 0 80px;
  text-align: center;
  z-index: 1;
}

.sub-page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(25 40 59 / 60%);
  z-index: 1;
}

.sub-page-banner .container {
  position: relative;
  z-index: 2;
}

section.sub-page-banner {
  color: var(--white-color);
}

section.sub-page-bannerh1 {
  font-size: 52px;
}

.breadcrumb-info {
  list-style: none;
  padding: 0;
}

.breadcrumb-info li a {
  color: #0e00ff;
  transition: color 0.3s ease;
}

.breadcrumb-info li a:hover {
  color: var(--bg-color);
  /* darker blue on hover */
  text-decoration: underline;
}

.breadcrumb-info li+li::before {
  content: "›";
  /* separator arrow */
  color: #aaa;
  margin: 0 8px;
  font-weight: 400;
}

/*===what-we-do-sec-style=================*/
.what-we-do {
  padding: 50px 0;
  background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
  text-align: center;
}

.heading-title h6 {
  text-transform: uppercase;
  color: #0d47a1;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 15px;
}

.what-we-do p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  color: #4a4a4a;
}

.counter-box {
  background: #ffffff;
  border: 2px solid #080b39;
  padding: 10px 20px;
  border-radius: 15px;
  width: 200px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.counter-box h3 {
  font-size: 36px;
  color: #080b39;
  margin-bottom: 10px;
  font-weight: 700;
}

.counter-box p {
  font-size: 16px;
  color: #4a4a4a;
}

/* Hover Animation */
.counter-box:hover {
  background: #080b39;
  color: #fff;
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.counter-box:hover h3,
.counter-box:hover p {
  color: #fff;
}

/*==============end-style===================*/
/*================our-story====================*/
.our-story {
  padding: 100px 0;
  background: #f9f9f9;
}

.our-story h6 {
  text-transform: uppercase;
  color: #0d47a1;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 15px;
}

.our-story h2 {
  font-size: 36px;
  color: #0d1b2a;
  font-weight: 700;
  margin-bottom: 20px;
}

.our-story p {
  font-size: 18px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 15px;
}

.our-story .btn {
  background: #ff6f61;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.our-story .btn:hover {
  background: #e0554d;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
  .our-story h2 {
    font-size: 28px;
  }
}

/*==============end-about-page-style==========================*/
/*==================website-development-design-page-style============================*/
.services-section {
  background-color: #F3F8FF;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0d1b3e;
  text-align: center;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  /* All cards stay centered */
}

.service-block {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 30px;
  max-width: 350px;
  /* Fixed card width for alignment */
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-block:hover {
  border-color: #007bff;
  box-shadow: 0 6px 16px rgb(0 48 255 / 20%);
  transform: translateY(-5px);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: #5875dd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 20px;
}

.service-block h3 {
  font-size: 20px;
  color: #0d1b3e;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-block p {
  font-size: 14px;
  color: #5a5a5a;
  margin-bottom: 20px;
  line-height: 1.6;
}

.learn-more {
  font-size: 14px;
  font-weight: 500;
  color: #0055ff;
  text-decoration: none;
  transition: 0.3s;
}

.learn-more:hover {
  padding-left: 5px;
}

.benefit-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #5875dd;
  margin-bottom: 10px;
}

.benefit-title {
  font-size: 34px;
  font-weight: 700;
  color: #0d1b3e;
  margin-bottom: 20px;
}

.benefit-text {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.benefit-item {
  margin-top: 20px;
}

.benefit-item .benefit-icon {
  width: 50px;
  height: 50px;
  background: #dbe3ff;
  color: #5875dd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 22px;
  margin-right: 15px;
}

.benefit-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0d1b3e;
}

.benefit-item p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

/* Responsive Fix for Mobile */
@media (max-width: 768px) {
  .benefit-title {
    font-size: 28px;
  }

  .benefit-subtitle {
    font-size: 14px;
  }

  .benefit-item {
    flex-direction: row;
  }
}

/*==================end-website-development-design-page-style============================*/
/*========================mobile-application-development-page-style=================*/
.about-video video {
  height: 520px;
  object-fit: cover;
}

/*==================================end-sec=======================================*/
/*=================web-development-page-style=================*/
section.ourview-secation {
  background-color: #f3f8ff;
}

.s-page-card {
  background-color: #fff;
  padding: 15px 10px;
  border-radius: 10px;
  text-align: center;
  min-height: 300px;
  border-bottom: 5px solid #5875dd;
}

.s-page-card img {
  max-width: 70px;
  padding: 10px;
  margin: auto;
  background-color: #5875dd;
  border-radius: 10px;
}

.s-page-card h2 {
  color: #000000;
  font-weight: 500;
  margin-top: 16px;
  font-size: 20px;
}

section.features.development-services {
  background-color: #fff;
}

.feature-card {
  background-color: #fdfdfd;
  border-bottom-left-radius: 40px;
  border-top-right-radius: 40px;
  border: 1px solid #5875dd;
  box-shadow: 0 6px 18px rgba(88, 117, 221, 0.15),
    0 3px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.feature-card:hover {
  box-shadow: 0 10px 25px rgba(88, 117, 221, 0.25),
    0 6px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

/*==================== Package Section ====================*/
.package-section {
  background: #f9fafc;
  font-family: 'Poppins', sans-serif;
}

.heading-tittle h6 {
  color: #5875dd;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.heading-tittle h2 {
  color: #0d1b3e;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.heading-tittle p {
  color: #5a5a5a;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Card Design */
.package-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #5875dd, #3d5af1);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(88, 117, 221, 0.2);
}

.package-card h3 {
  color: #0d1b3e;
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 25px;
  font-weight: 700;
}

.package-features li {
  font-size: 15px;
  color: #444;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-card:hover h3 {
  color: #5875dd;
}

/* Responsive Design */
@media (max-width: 992px) {
  .heading-tittle h2 {
    font-size: 28px;
  }

  .package-card {
    padding: 25px 20px;
  }
}

@media (max-width: 576px) {
  .package-card h3 {
    font-size: 20px;
  }

  .package-features li {
    font-size: 14px;
  }
}

/*======================Accordion Section=====*/
.accordion-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e9ef;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(13, 27, 42, 0.15);
}

/* Accordion button */
.accordion-button {
  background-color: #fff;
  color: #0d1b2a;
  font-size: 1.05rem;
  padding: 1rem 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: none;
}

/* Remove Bootstrap default arrow completely */
.accordion-button::after {
  display: none !important;
}

/* Add our custom + and − icon */
.accordion-button::before {
  content: '+';
  font-size: 22px;
  font-weight: 700;
  color: #0d1b2a;
  margin-right: 10px;
  transition: all 0.3s ease;
}

/* When open (expanded) */
.accordion-button:not(.collapsed) {
  background-color: #080b39;
  color: #fff;
  box-shadow: 0 4px 10px rgba(13, 27, 42, 0.2);
}

.accordion-button:not(.collapsed)::before {
  content: '−';
  color: #fff;
}

/* Accordion body style */
.accordion-body {
  background: #fff;
  border-top: 1px solid #eee;
  color: #333;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Smooth animation */
.accordion-collapse {
  transition: all 0.4s ease;
}