/* Thinking Grey - Option 3 Enhanced Design
   Premium look with proper logo integration, animations, and modern styling */

:root {
  --text-color: #111111;
  --muted-color: #555555;
  --bg-color: #ffffff;
  --section-alt: #f6f8fb;
  --primary: #41c0e0;
  --accent: #38b6ff;
  --border: #e6e9ef;
  --shadow: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-hover: 0 15px 40px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text-color);
  background: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
/* Preloader styles */
.se-pre-con {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff url('assets/img/loader.gif') no-repeat center center;
}

/* Optional: fade out animation */
.se-pre-con.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Enhanced Animated Background */

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
  filter: blur(1px);
}

.shape1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  top: -100px;
  right: -100px;
  animation: float 20s infinite ease-in-out;
}

.shape2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: -50px;
  left: -50px;
  animation: float 25s infinite ease-in-out reverse;
}

.shape3 {
  width: 200px;
  height: 200px;
  background: var(--primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 12s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(40px, 30px) rotate(180deg); }
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.03; }
  50% { transform: translate(-50%, -50%) scale(2); opacity: 0.01; }
}

/* Enhanced Navigation with Logo */
.navbar { 
  background: rgba(255, 255, 255, 0.95) !important; 
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 15px 0;
}

.navbar.scrolled {
  box-shadow: var(--shadow);
  padding: 10px 0;
}

.navbar .navbar-brand { 
  color: var(--text-color); 
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 52px;
  width: auto;
  transition: all 0.3s ease;
  border-radius: 4px;
  object-fit: contain;
}

.navbar-brand:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}

.navbar .nav-link { 
  color: var(--text-color) !important; 
  margin: 0 6px; 
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Jost', sans-serif;
  padding:20px 25px !important;

}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary) !important;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

.text-us-btn { 
  border: 2px solid var(--primary);
  color: var(--primary) !important;
  border-radius: 25px;
  padding: 8px 20px !important;
  font-weight: 600;
  margin-left: 15px;
  transition: all 0.3s ease;
}

.text-us-btn:hover { 
  background: var(--primary);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}

/* Enhanced Hero Section */
.hero-section { 
  padding: 70px 0 80px;
  background: linear-gradient(135deg, #fff 0%, var(--section-alt) 100%);
  position: relative;
  overflow: hidden;
}

.hero-title { 
  font-size: 3.5rem; 
  font-weight: 800; 
  margin-bottom: 20px; 
  line-height: 1.2;
}

.hero-title .highlight { 
  color: var(--primary);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.hero-description { 
  color: var(--muted-color); 
  max-width: 600px; 
  margin-bottom: 30px; 
  font-size: 1.2rem;
  line-height: 1.7;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(45deg, rgba(13, 110, 253, 0.1), rgba(56, 182, 255, 0.1));
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 1px;
  border: 1px solid rgba(13, 110, 253, 0.2);
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-item i {
  color: var(--primary);
  font-size: 20px;
  width: 20px;
}

.feature-item span {
  font-weight: 500;
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Enhanced Tech Showcase */
.tech-showcase-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
}

.showcase-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  animation: showcaseFloat 6s infinite ease-in-out;
}

.showcase-item:nth-child(2) { animation-delay: -1.5s; }
.showcase-item:nth-child(3) { animation-delay: -3s; }
.showcase-item:nth-child(4) { animation-delay: -4.5s; }

@keyframes showcaseFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.showcase-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.showcase-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
  transition: all 0.3s ease;
}

.showcase-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.showcase-item span {
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
}

/* Section Styles */
.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-color);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--muted-color);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.how-we-work-section { 
  padding: 100px 0; 
  background: var(--section-alt); 
}

.what-we-do-section { 
  padding: 100px 0; 
  background: #fff; 
}

.services-section { 
  padding: 100px 0; 
  background: var(--section-alt); 
}

.tech-stack-section {
  padding: 80px 0;
  background: #fff;
}

.stats-section { 
  padding: 80px 0; 
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
}

.contact-section { 
  padding: 100px 0; 
  background: var(--section-alt); 
}

/* Work Items */
.work-item { 
  background: #fff; 
  border: 1px solid var(--border); 
  border-radius: 16px; 
  padding: 30px 25px; 
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.work-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.work-item .work-icon { 
  width: 60px; 
  height: 60px; 
  border-radius: 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: #fff; 
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.work-item:hover .work-icon {
  transform: scale(1.1) rotate(5deg);
}

.work-item h4 { 
  font-size: 1.3rem; 
  font-weight: 700; 
  margin-bottom: 15px;
  color: var(--text-color);
}

.work-item p { 
  color: var(--muted-color); 
  font-size: 0.95rem; 
  margin: 0; 
  line-height: 1.6;
}

/* Process Steps */
.process-step { 
  background: #fff; 
  border: 1px solid var(--border); 
  border-radius: 16px; 
  padding: 30px; 
  height: 100%; 
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.process-number { 
  position: absolute; 
  top: -15px; 
  left: -15px; 
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: #fff; 
  font-weight: 800; 
  font-size: 1.2rem; 
  border-radius: 50%; 
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.process-content h4 { 
  font-size: 1.4rem; 
  font-weight: 700; 
  margin: 10px 0 15px;
  color: var(--text-color);
}

.process-content p { 
  color: var(--muted-color); 
  font-size: 1rem; 
  margin: 0; 
  line-height: 1.6;
}

/* Service Items */
.service-item { 
  display: flex; 
  gap: 20px; 
  background: #fff; 
  border: 1px solid var(--border); 
  border-radius: 16px; 
  padding: 30px; 
  height: 100%;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.service-icon { 
  width: 60px; 
  height: 60px; 
  border-radius: 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: #fff; 
  flex: 0 0 auto;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-content h4 { 
  font-size: 1.4rem; 
  font-weight: 700; 
  margin-bottom: 15px;
  color: var(--text-color);
}

.service-content p { 
  color: var(--muted-color); 
  font-size: 1rem; 
  margin: 0; 
  line-height: 1.6;
}

/* Technology Stack */
.tech-category {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.tech-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.tech-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.tech-header i {
  font-size: 2.2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.tech-category:hover .tech-header i {
  transform: scale(1.2);
}

.tech-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-color);
}

.tech-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tech-tag {
  background: var(--section-alt);
  color: var(--primary);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(13, 110, 253, 0.2);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Stats */
.stat-item { 
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-number { 
  font-size: 3.5rem; 
  font-weight: 800; 
  color: #fff; 
  margin: 0; 
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.stat-label { 
  color: rgba(255,255,255,0.9); 
  margin: 10px 0 0; 
  font-size: 1.1rem;
  font-weight: 500;
}

/* Contact Methods */
.contact-methods { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 25px; 
  margin-top: 40px; 
}

.contact-method { 
  background: #fff; 
  border: 1px solid var(--border); 
  border-radius: 16px; 
  padding: 30px; 
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.contact-method i { 
  color: var(--primary); 
  font-size: 2.5rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-method:hover i {
  transform: scale(1.2);
}

.contact-method h5 { 
  font-size: 1.2rem; 
  font-weight: 700; 
  margin: 0 0 10px;
  color: var(--text-color);
}

.contact-method p { 
  color: var(--muted-color); 
  font-size: 1rem; 
  margin: 0; 
}

/* Buttons */
.btn-primary { 
  background: linear-gradient(45deg, var(--primary), var(--accent));
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover { 
  background: linear-gradient(45deg, #0b5ed7, #2ea3f2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Icon Animations */
@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@keyframes iconRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes iconWave {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(5deg) scale(1.05); }
  75% { transform: rotate(-5deg) scale(1.05); }
}

/* Apply animations to showcase items */
.showcase-item i {
  animation: iconPulse 2.5s ease-in-out infinite;
}

.showcase-item:nth-child(2) i {
  animation-delay: 0.3s;
}

.showcase-item:nth-child(3) i {
  animation-delay: 0.6s;
}

.showcase-item:nth-child(4) i {
  animation-delay: 0.9s;
}

/* Work item icons */
.work-icon {
  animation: iconFloat 3.5s ease-in-out infinite;
}

.work-item:nth-child(2) .work-icon {
  animation-delay: 0.5s;
}

.work-item:nth-child(3) .work-icon {
  animation-delay: 1s;
}

.work-item:nth-child(4) .work-icon {
  animation-delay: 1.5s;
}

/* Service icons */
.service-icon {
  animation: iconWave 4s ease-in-out infinite;
}

.service-item:nth-child(even) .service-icon {
  animation-delay: 0.6s;
}

/* Tech category icons */
.tech-header i {
  animation: iconFloat 3s ease-in-out infinite;
}

.tech-category:nth-child(2) .tech-header i {
  animation-delay: 0.8s;
}

/* Contact method icons */
.contact-method i {
  animation: iconPulse 3.2s ease-in-out infinite;
}

.contact-method:hover i {
  animation: iconRotate 0.7s ease-in-out;
}

.contact-method:nth-child(2) i {
  animation-delay: 0.4s;
}

.contact-method:nth-child(3) i {
  animation-delay: 0.8s;
}

/* Feature item icons */
.feature-item i {
  animation: iconPulse 2.8s ease-in-out infinite;
}

.feature-item:nth-child(2) i {
  animation-delay: 0.5s;
}

.feature-item:nth-child(3) i {
  animation-delay: 1s;
}

/* Process numbers */
.process-number {
  animation: iconWave 4s ease-in-out infinite;
}

.process-step:nth-child(2) .process-number {
  animation-delay: 0.7s;
}

.process-step:nth-child(3) .process-number {
  animation-delay: 1.4s;
}

/* Responsive Design */
@media (min-width: 1000px) and (max-width: 1099px) {
  .hero-title {
    font-size: 36px ;
    line-height: 1.25;
    max-width: 800px;
    margin: 0 auto;
  }
}
@media (min-width: 1100px) and (max-width: 1200px) {
  .hero-title {
    font-size: 38px;
    line-height: 1.25;
    max-width: 850px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .hero-title {
    font-size: 44px;  /* slightly smaller font to make it 2 lines */
    line-height: 1.3;
    max-width: 900px; /* adjust width so text wraps into 2 lines */
    margin: 0 auto;   /* center align */
  }
}

@media (max-width: 991px) {
  .hero-section { padding-top: 130px; }
  /* .hero-title { font-size: 2.8rem; } */
  .section-title { font-size: 2.2rem; }
  .tech-showcase-container { max-width: 300px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.2rem; }
  .hero-description { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; margin-bottom: 10px; }
  .tech-showcase-container { grid-template-columns: 1fr; max-width: 250px; }
  .contact-methods { grid-template-columns: 1fr; }
  .service-item { flex-direction: column; text-align: center; }
}
.navbar .navbar-brand .logo-display {
  display: block; }

.navbar .navbar-brand .logo-scrolled {
  display: none; }

.navbar.sticked.in .navbar-brand .logo-display {
  display: none; }

.navbar.sticked.in .navbar-brand .logo-scrolled {
  display: block; }


  /*-------- Scrollbar --------*/

::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background:#41c0e0; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--theme-color) !important;
	border-radius:5px;
	transition:all .4s ease;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-image: -moz-linear-gradient( 122deg, rgb(120,84,247) 0%, rgb(105,69,233) 100%);
  background-image: -webkit-linear-gradient( 122deg, rgb(120,84,247) 0%, rgb(105,69,233) 100%);
  background-image: -ms-linear-gradient( 122deg, rgb(120,84,247) 0%, rgb(105,69,233) 100%);
}
/*	mouse cursor animation
/*---------------------------------------------------*/

.mouse-cursor{
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
.cursor-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: #41c0e0;
  -webkit-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
  transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
}
.cursor-inner.cursor-hover {
  margin-left: -30px;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background-color: #41c0e0;
  opacity: .2;
}
.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid #41c0e0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: .5;
  -webkit-transition: all .08s ease-out;
  transition: all .08s ease-out;
}
.cursor-outer.cursor-hover{
  opacity: 0;
}
.mim_tm_all_wrap[data-magic-cursor="hide"] .mouse-cursor{
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -1111;
}
@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-moz-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


#scrtop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99999;
  font-size: 18px;
  outline: none;
  background-color: #41c0e0;
  color: #fff;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
  line-height: 1; }

#scrtop:hover {
  background-color: #fff; 
}
.header-serarch-btn{
    -webkit-border-radius: 5px;
  border-radius: 5px;
  /* height: 4rem; */
  font-weight: 500;
  font-size: 1.6rem;
  color: #fff;
  background-color: #41c0e0;
  line-height:1.7rem

}
a.header-serarch-btn{

  text-decoration:none
}
.header-serarch-btn:hover {
    background-color: var(--white-color);
    color: var(--heading-color);
    box-shadow: 0px 15px 20px 0px rgba(77, 65, 225, 0.15); 
  } 
.btn-2 {
  font-size: 10px;
}
/*For topbar*/
 a.btn-2 {
  text-decoration:none;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 130px;
  /* height: 2rem; */
  font-weight: 500;
  font-size: 16px;
  color: var(--white-color);
  background-color: var(--theme-color);
  display: inline-block;
  text-align: center;
  line-height: 2.5rem;
  text-transform: capitalize; }
  .btn-2:hover {
    background-color: var(--white-color);
    color: var(--heading-color);
    box-shadow: 0px 15px 20px 0px rgba(77, 65, 225, 0.15); 
  } 
  
  .it-solutions-wrapper {
  position: relative;
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.it-solutions-wrapper h1 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #222;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.it-solutions-wrapper p {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease 0.2s;
}

/* Animate when visible */
.it-solutions-wrapper.visible h1,
.it-solutions-wrapper.visible p {
  opacity: 1;
  transform: translateY(0);
} .about-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 3.5rem; }

.about-sub-title.wh,
.about-title.wh {
  color: var(--white-color); }

.top-title {
  font-size: 2rem;
  line-height: 3.542;
  color: var(--theme-color); }
  .se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: url(assets/img/logo/pre-loader.gif) center no-repeat var(--white-color);
  text-align: center; }

/* ============================
   📱 MOBILE RESPONSIVE (0–767px)
   ============================ */
@media (max-width: 767px) {

  /* General adjustments */
  
  /* Header and navbar */
  .navbar {
    padding: 0.5rem 1rem;
  }
  .navbar-brand img {
    width: 140px;
    height: auto;
  }
  .header-serarch-btn {
    margin-top: 10px;
  }
  .header-serarch-btn .btn-2 {
    display: inline-block;
    padding: 10px 18px;
    font-size: 14px;
  }

  /* Hero Section */
  .hero-section {
    padding: 80px 20px 40px;
  }
  .hero-content {
    margin-bottom: 40px;
  }
  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.5;
  }
  .hero-buttons {
    display: flex;
    flex-direction: column;
  }
  .hero-buttons a {
    width: 100%;
  }
  .ms-3 {
    margin-left: 0rem !important;
}
.process-step {
    padding: 80px 20px 40px;
    margin:5%;
  }

}
.navbar-toggler .navbar-toggler-icon, .navbar-toggler .navbar-toggler-icon::after, .navbar-toggler .navbar-toggler-icon::before{
  background-color: #111111 !important;
}

@media only screen and (max-width: 767px) {
    .navbar {
         padding: 1rem !important; 
    }
    .bsnav-sticky.bsnav-sticky-slide {
    position: static;
}
}
/*footer list*/
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 2rem; }
  .footer-list li a:hover {
    color: var(--theme-color-2); }

/*footer Gallery*/
.foter-img.grid-2 {
  grid-gap: 1.5rem; }
  .foter-img.grid-2 img {
    width: 100%;
    object-fit: cover;
    -webkit-border-radius: 5px;
    border-radius: 5px; }

/*footer copyright*/
.copyright {
  padding: 0 0 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .copyright p {
    margin-bottom: 0;
    text-transform: capitalize;
    color: var(--heading-color); }

/*footer social*/
.footer-social {
  display: flex;
  align-items: center;
  gap: 1.1rem; }

.footer-social li a i {
  font-size: 1rem;
  height: 2.5rem;
  width: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #41c0e0;
  color: #41c0e0; }
  .footer-social li a i:hover {
    background-color: #41c0e0;
    color: white; }
    /*White balance*/
.footer-widget-box p,
.footer-widget-box ul li a,
.foo-widget-title,
.re-post-desc h6,
.re-post-desc p {
  color: var(--body-color); }

.footer-widget-box.ab-us p,
.footer-widget-box ul li a,
.footer-contact p,
.copyright p,
.footer-widget-box.ab-us a {
  font-size: 1.8rem;
  font-family: var(--font-2); }

.footer-2 .footer-widget-wrapper .footer-widget-box.ab-us {
  padding-right: 4rem; }
  .footer-2 .footer-widget-wrapper .footer-widget-box.ab-us p {
    padding-right: 0; }
.footer-2 .footer-widget-wrapper .adr {
  gap: 10px;
  margin-bottom: 4rem; }
.footer-2 .copyright {
  justify-content: center; }
.footer-social {
  list-style: none;        /* Removes default bullet */
  padding: 0;              /* Removes extra padding */
  margin: 0;               /* Removes extra margin */
}

.footer-social li::marker {
  content: none;           /* Ensures no marker appears */
}

