/***********************      Start Global Style       ***********************/
:root {
  --bg-body-color: #f5f5f5;
  --main-color: #0078ff;
  --white-color: #fff;
}
body {
  background-color: var(--bg-body-color);
}
a {
  text-decoration-line: none;
  color: inherit;
}
.header-title {
  position: relative;
  text-align: center;
}
.header-title::after {
  position: absolute;
  width: 35px;
  height: 5px;
  bottom: -10px;
  left: 50%;
  content: "";
  transform: translateX(-50%);
  background-color: var(--main-color);
}
.back-to-top {
  position: fixed;
  --radius-w-h: 40px;
  height: var(--radius-w-h);
  width: var(--radius-w-h);
  border-radius: 50%;
  background-color: var(--main-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  bottom: 15px;
  right: 15px;
  z-index: 99;
}
.back-to-top i {
  color: #fff;
  font-size: 28px;
}
div:has(div[data-aos]){
  overflow-x: hidden  ;
}
/***********************       End Global Style        ***********************/
/***********************      Start Navbar Style       ***********************/
.my-navbar {
  background: rgba(0, 0, 0, 0.9);
}
.my-navbar .dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
  background-color: black;
}
.my-navbar a.deep-drop-down:hover ~ ul {
  background-color: black;
  display: block;
  left: 100%;
  top: 0;
  margin-top: 0;
  margin-left: 0.125rem;
}
.my-navbar .container {
  padding-inline: 12px;
}
.my-navbar .container .collapse ul > li {
  padding: 10px 0 10px 30px;
}
.my-navbar .container .collapse ul > li > a {
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  letter-spacing: 0.4px;
  position: relative;
  text-transform: uppercase;
}
.my-navbar .container .collapse > ul > li > a::before {
  content: "";
  display: block;
  bottom: -5px;
  width: 0;
  left: 0px;
  height: 2px;
  background-color: var(--white-color);
  position: absolute;
  transition: 0.3s;
}
.my-navbar .container .collapse > ul > li > a.active::before,
.my-navbar .container .collapse > ul > li > a:hover::before {
  width: 80%;
}
.my-navbar .container .navbar-brand a {
  font-size: 28px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  letter-spacing: 1px;
}
/***********************       End Navbar Style        ***********************/
/***********************   Start Header Section Style  ***********************/
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7) 0% 100%),
    url(../images/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}
.hero h1 {
  color: var(--white-color);
}
.hero span {
  color: var(--white-color);
}

/***********************    End Header Section Style   ***********************/
/***********************   Start About Section Style   ***********************/
.content {
  background-color: #fff;
  padding: 3.25rem;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.skills-container > * {
  margin-block: 7px;
}
.about h2 {
  position: relative;
}
.about h2::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100px;
  bottom: -10px;
  left: 0;
  background-color: var(--main-color);
}
.progress,
.progress-stacked {
  --bs-progress-border-radius: 0;
}
/***********************    End About Section Style    ***********************/
/***********************  Start Services Section Style ***********************/
.services .icon-image {
  --radius-w-h: 100px;
  height: var(--radius-w-h);
  width: var(--radius-w-h);
  border-radius: 50%;
  box-shadow: 0 0 0 10px var(--main-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  transition: all 400ms ease-in;
}
.services .card:hover .icon-image {
  background-color: var(--main-color);
  box-shadow: 0 0 0 10px #cde1f8;
}
.services .card:hover .icon-image i {
  color: var(--white-color);
}
.our-number {
  background-image: linear-gradient(rgba(0, 119, 255, 0.7) 0% 100%),
    url(../images/counters-bg.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.circle-icon {
  --radius-w-h: 60px;
  height: var(--radius-w-h);
  width: var(--radius-w-h);
  border-radius: 50%;
  box-shadow: 0 0 0 10px #cde1f8;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
} 
/***********************   End Services Section Style  ***********************/
/*********************** Start Portfolio Section Style ***********************/
.work .card img {
  transition: transform 500ms;
}
.work .card p {
  font-size: 12px;
}
.work .card .card-image {
  overflow: hidden;
}
.work .card:hover img {
  transform: scale(1.25);
}
.work .slider {
  background-image: linear-gradient(rgba(0, 119, 255, 0.7) 0% 100%),
    url(../images/overlay-bg.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.work .carousel-indicators [data-bs-target] {
  --radius-w-h: 10px;
  height: var(--radius-w-h);
  width: var(--radius-w-h);
  border-radius: 50%;
} 
/***********************  End Portfolio Section Style  ***********************/
/***********************    Start Blog Section Style   ***********************/
.blog .card .card-body {
  position: relative;
}
.blog .card a {
  transition: all 500ms ease-in-out;
}
.blog .card a:hover {
  color: var(--main-color);
}
.blog .card h3.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.blog .card .auther img {
  --radius-w-h: 30px;
  height: var(--radius-w-h);
  width: var(--radius-w-h);
  border-radius: 50%;
}
/***********************     End Blog Section Style    ***********************/
/***********************  Start Contact Section Style  ***********************/
.contact {
  background-image: linear-gradient(rgba(0, 119, 255, 0.7) 0% 100%),
    url(../images/overlay-bg.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.contact h5 {
  position: relative;
  font-size: 2rem;
  margin-bottom: 40px;
}
.contact h5::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 3px;
  bottom: -12px;
  left: 0;
  background-color: var(--main-color);
}
.contact ul {
  list-style: none;
  padding: 0;
}
.contact .data-info ul li {
  margin-bottom: 10px;
}
.contact .social-links ul li .icon-circle {
  --radius-w-h: 40px;
  height: var(--radius-w-h);
  width: var(--radius-w-h);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--main-color);
  font-size: 19px;
  transition: all 300ms ease-in-out;
}
.contact .social-links ul li:hover .icon-circle {
  box-shadow: 0 0 0 3px #cde1f8;
  background-color: var(--main-color);
  color: #fff;
} 
/***********************   End Contact Section Style   ***********************/
footer {
  text-align: center;
  color: #fff;
  padding: 25px 0;
  background: #0062d3;
}

  footer p{
    margin: 0;
  } 