:root {
  --brand-color: #E39E38;
  --font-family-space-grotesk: "Space Grotesk", sans-serif;
  --font-family-inter: "Inter", sans-serif;

}


p {
  font-family: var(--font-family-inter);
  line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-space-grotesk);
}

section {
  padding: 100px 0px;
}
@media (max-width: 768px) {
  section {
  padding: 50px 0px;
}

}

.btn.btn-primary {
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 600;
  background-color: var(--brand-color);
  border-color: var(--brand-color);
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
  background-color: transparent;
  color: #000;
}



/* scroll to top css start here */
.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}


.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 50px;
  bottom: 10px;
  z-index: 99999;
  background-color: var(--brand-color);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: all 0.4s;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 768px) {
  .scroll-top {
    right: 15px;
    bottom: 10px;
  }

}


/* scroll to top css end here */



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 55px;
  /* background: #2f2f2f; */
  z-index: 997;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.021);
  border-bottom: 1px solid #e6e6e6;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  /* color: #E39E38; */
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}





#heroCarousel ol {
  list-style-type: none !important;

}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--brand-color);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: 100%;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--brand-color);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--brand-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(31, 53, 72, 0.9);
  transition: 0.3s;
  z-index: 998;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 10px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--brand-color);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--brand-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--brand-color);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}



/* hero section css start here */
/* .hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
  background: #000;
} */

.hero-tabs {
  height: fit-content;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  z-index: 10;
}

.tab-btn {
  background: transparent;
  border: none;
  color: #aaa;
  margin: 0 10px;
  font-size: 16px;
  cursor: pointer;
  padding-bottom: 5px;
}

.tab-btn.active {
  color: var(--brand-color);
  border-bottom: 2px solid var(--brand-color);
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: none;
}

.hero-slide.active {
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-slide .content {
  position: relative;
  z-index: 2;
  padding-left: 80px;
  color: #fff;
  max-width: 600px;
}

.hero-slide h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-slide p {
  font-size: 1.2rem;
  margin: 15px 0;
}

/* start */
.nvidia-hero {
  position: relative;
  height: 90vh;
  background: #1e1e1e;
  overflow: hidden;
}

.nvidia-hero .btn.btn-primary:hover {
  color: #fff !important;
}

@media (max-width:768px) {
  .nvidia-hero {
    height: 75vh;
  }
}

.nvidia-hero .slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.nvidia-hero .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  color: #fff;
  z-index: 2;
}

.nvidia-hero .slide.active {
  opacity: 1;
  z-index: 3;
}


.hero-tabs {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  z-index: 10;

}

@media (max-width:768px) {
  .hero-tabs {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    display: flex;
    gap: 40px;
    z-index: 10;

  }
}


.tab {
  width: 220px;
  max-width: 100%;
  color: #aaa;
  cursor: pointer;
  position: relative;
}


.tab::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #4a4a4a;
}


.tab .progress {
  position: absolute;
  top: -8px;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--brand-color);
  z-index: 2;
}

.tab.active .progress {
  animation: progress 5s linear forwards;
}


.tab span {
  font-size: 14px;
  font-weight: 600;
  display: block;
  color: #9e9e9e;
}

.tab p {
  font-size: 15px;
  color: #fff;
  margin-top: 6px;
  font-weight: 600;
}

.tab .progress {
  position: absolute;
  top: -8px;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--brand-color);
}

.tab.active span {
  color: var(--brand-color);
}

.tab.active .progress {
  animation: progress 5s linear forwards;
}

@keyframes progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}



 
 /* grid gallery section css start here */
 section#gallery {
    background: #efefef;
}
 #gallery .gallery-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#gallery .gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
 /* grid gallery section css end here */



/* another section css start here */

section.company-section .item {
  margin-bottom: 4rem;
}

section.company-section .item:last-child {
  margin-bottom: 0rem;
}
img.img-fluid.world{
  margin-bottom: 100px;
  border-radius: 10px;
  box-shadow: 1px 1px 10px 13px #9d9999;
  transition: all 0.5s ease-in-out;
}
img.img-fluid.world:hover{
  box-shadow: 1px 1px 10px 13px #e39e386e;
  transform: translateY(-10px);
}
.info-card {
  display: block;
  /* min-width: 250px; */
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.info-card:hover{
  transform: translateY(-10px);
}
.info-card img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.info-card .overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.55); */
  color: #000;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
}
.company-section h2{
  text-transform: uppercase;
  color: #e39e38;
  font-weight: 700;
}
.info-card .overlay small {
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  opacity: 1;
  font-weight: 700;
  font-size: 30px;
  color: #7a7878;
}

.info-card .overlay i {
  font-size: 28px;
  align-self: flex-end;
  transition: all 0.4s ease;
  text-align: right;
  display: block;
  color: #43403e;
}
.info-card .overlay i:hover{
  color: #e39e38;
}

.info-card .overlay p {
    font-weight: 400;
    font-size: 16px;
}

.info-card:hover .overlay {
  background: transparent;
}

.info-card:hover img {
  transform: scale(1.1);
}

/* .info-card:hover .overlay i {
  color: ;
} */

.united-kingdom .info-card {
  position: relative;
  background: #e39e381c;
  overflow: hidden;
}

.united-kingdom .info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/uk.jpg") center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  filter: grayscale(70%);
}

.united-kingdom .info-card:hover::before {
  opacity: 0.2;
}


.europe .info-card {
  position: relative;
  background: #e39e381c;
  overflow: hidden;
}

.europe .info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/europ.png") center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  filter: grayscale(70%);
}

.europe .info-card:hover::before {
  opacity: 0.2;
}

.south-asia .info-card {
  position: relative;
  background: #e39e381c;
  overflow: hidden;
}

.south-asia .info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/south-asia.jpg") center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  filter: grayscale(70%);
}
.south-asia .info-card:hover::before {
  opacity: 0.2;
}
.east-africa .info-card {
  position: relative;
  background: #e39e381c;
  overflow: hidden;
}

.east-africa .info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/east-africa.jpg") center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  filter: grayscale(70%);
}
.east-africa .info-card:hover::before {
  opacity: 0.2;
}
/* another section css end here */


/* .content-scroll {
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
} */

.content-scroll::-webkit-scrollbar {
  height: 6px;
}

.content-scroll::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 10px;
}

.content-card {
  /* min-width: 280px;
  max-width: 280px; */
  /* scroll-snap-align: start; */
}

.content-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width:991px) {
  .content-card img {
    height: 280px;
  }

}


@media (max-width:768px) {
  .content-card img {
    height: 350px;
  }

}

.content-card .card-body {
  padding: 15px 5px;
  transition: all 0.5s ease-in-out;
}

.content-card h6 {
  font-weight: 500;
  margin-bottom: 8px;
}

.content-card a {
  text-decoration: none;
  font-size: 14px;
  color: var(--brand-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.scroll-line {
  height: 3px;
  background: #eee;
  position: relative;
}

.scroll-line span.active {
  position: absolute;
  left: 0;
  width: 25%;
  height: 100%;
  background: var(--brand-color);
}




/* slider section css start  here */


section.slider-section .wrapper {
  color: #000;
}

section.slider-section .wrapper .item {
  display: block;
  text-decoration: none;
  color: #000;
  border: 1px solid #ccc;
  /* border-radius: 14px; */
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
}

section.slider-section .wrapper .item:hover {
  border-color: transparent;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}


section.slider-section .wrapper .item .img-container {}

section.slider-section .wrapper .item .img-container img {}

section.slider-section h2 {
  margin-bottom: 2rem;
}

section.slider-section .wrapper .item .content {
  padding: 0.8rem;
}

section.slider-section .wrapper .item .content .tags {
  margin-bottom: 1rem;
}

section.slider-section .wrapper .item .content .tags span {
  font-size: 14px;
  display: inline-block;
  position: relative;
  padding-right: 12px;
  margin-right: 12px;
  font-weight: 600;
}

section.slider-section .wrapper .item .content .tags span::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  width: 1px;
  background-color: #ccc;
}


section.slider-section .wrapper .item .content .tags span:last-child {
  padding-right: 0;
  margin-right: 0;
}

section.slider-section .wrapper .item .content .tags span:last-child::after {
  display: none;
}

section.slider-section .wrapper .item .content h3 {
  font-size: 16px;
  font-weight: 600;

}

section.slider-section .wrapper .item .content p {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 24px;
}

.owl-nav {
  position: absolute;
  top: -55px;
  right: 0;
  display: flex;
  gap: 10px;
}

.owl-nav button {
  display: inline-block;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-color) !important;
  border-radius: 50%;
}

.owl-nav button i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}




/* slider section css end here */


/* footer section css start here */
section.footer-section {
  background-color: #000;
}

section.footer-section ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  list-style-type: none;
  gap: 10px;
}

section.footer-section ul li a {
  display: inline-block;
  color: var(--brand-color);
  text-decoration: none;
  font-size: 14px;
  transition: all .3s ease-in-out;
}


section.footer-section ul li a:hover {
  color: var(--brand-color) !important;
}


section.footer-section ul.menu li a:hover {
  text-decoration: underline;
}

section.footer-section .heading-container {
  width: 100%;
  border-bottom: 0.3px solid #706f6f;
  margin-bottom: 1rem;
}

section.footer-section .heading {
  color: #fff;
  font-size: 22px;
  font-weight: 500;


}

section.copy-right-section ul.social-links {
  flex-direction: row;
  gap: 1rem;
  display: flex;
  list-style-type: none;
  margin-bottom: 0px;
}

section.copy-right-sectionul.social-links li a {
  transition: all .3s ease-in-out;
}

section.copy-right-section ul.social-links li a i {
  color: #000;
}

section.copy-right-section ul.social-links li a:hover i {
  color: var(--brand-color);
}

section.footer-section .social-links-container p {
  font-size: 14px;
  color: #ccc;
  font-weight: 500;
}

/* footer section css end here */







/* copy right section css start here */
.section.copy-right-section {}


.copy-right-section .logo {
  width: 100px;
}

.copy-right-section ul.copy-right-links {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.copy-right-section ul.copy-right-links li a {
  text-decoration: none;
  color: #4a4a4a;
  font-size: 14px;
  position: relative;
  padding-right: 12px;
  margin-right: 12px;
  display: inline-block;
}


.copy-right-section ul.copy-right-links li a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background-color: #4a4a4a;
}

.copy-right-section ul.copy-right-links li a:hover {
  color: var(--brand-color);
}

.copy-right-section ul.copy-right-links li:last-child a::after {
  display: none;
}


.copy-right-section ul.copy-right-links {
  display: flex;
  align-items: center;
}

p.copy-right {
  color: #4a4a4a;
  font-size: 14px;
}

/* copy right section css end here */




/* about section css start here */
section.about-section {}

section.about-section h2 {
  /* margin-bottom: 1rem; */
  font-weight: 600;
}

section.about-section p {
  line-height: 24px;
}


section.about-section .img-item img {
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
}

section.about-section {}


.video-thumbnail {
  cursor: pointer;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
}

video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video-thumbnail img {
  height: 100%;
  width: 100%;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  transition: 0.3s;
}

.play-icon {
  font-size: 70px;
  color: #fff;
}

.video-thumbnail:hover .video-overlay {
  background: rgba(0, 0, 0, 0.7);
}



.button-container .btn.btn-primary.second {
  background-color: transparent;
  color: #000;
}

.button-container .btn.btn-primary.second:hover {
  background-color: var(--brand-color);
  color: #fff;
}

section.about-section .card {
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

section.about-section .card:hover {
  color: #fff;
  background-color: var(--brand-color);
  transform: translateY(-10px);
}

section.about-section .card h3 {
  color: #000;
  font-size: 22px;
  transition: all 0.3s ease-in-out;

}
section.about-section .card h3 P {
  color: #000;
  transition: all 0.3s ease-in-out;

}

section.about-section .card:hover h3 {
  color: #fff;
}

section.about-section .card:hover p {
  color: #fff;
}

section.about-section .card:hover i{
  color: #fff;
}

/* about section css end here */

/* ========Start Blog PAge =============*/
.why-aws {
    position: relative;
    height: 30vh;
    overflow: hidden;
    background: linear-gradient(90deg, #f0f5fa 0%, #007fff29 100%);
    display: flex;
    align-items: center;
}
@media (max-width: 768px) {
 .why-aws {
    height: 50vh;
}

}

/* CONTENT */
.content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}
.content p {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

section.bg-light.slider-section.allblog {
    padding: 50px 0px;
}
@media(max-width:675px){
    section.bg-light.slider-section.allblog {
    padding-top: 70px;
}
}
/* ========Start project-details PAae=============*/
/* Hero Section */
.hero-section-project-details{
    background:linear-gradient(135deg, #f8fafc, #dceaf0);
    color:#ffffff;
    padding:100px 0;
}
.hero-section-project-details h1{
    color: #000;
    font-weight: 600;
}
.hero-section-project-details .hero-image{
    text-align: center;
}


.hero-section-project-details .hero-text h1{
    font-size:44px;
    margin-bottom:20px;
    line-height:1.2;
}

.hero-section-project-details .hero-text p{
    font-size:18px;
    color:#7e8289;
    margin-bottom:30px;
}

.hero-section-project-details .hero-btn{
    display:inline-block;
    background:#2563eb;
    color:#ffffff;
    padding:14px 30px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.hero-section-project-details .hero-btn:hover{
    background:#1d4ed8;
}

.hero-section-project-details .hero-image img{
    max-width:420px;
    width:100%;
}

/* Responsive */
@media(max-width:900px){
    .hero-section-project-details .hero-image img{
        max-width:300px;
        margin-top:30px;
    }
}

/* Light sections */
.light{
    background:#f8fafc;
}

/* Services grid */
.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
    margin-top:30px;
}

.service-box{
    background:#ffffff;
    padding:25px;
    border-radius:8px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    border-left:4px solid #2563eb;
    transition: all 0.4s ease-in-out;
}
.service-box:hover{
  transform: translateY(-10px);
  border-left:4px solid #dfecf1;
}

.approch h2{
    font-weight: 600;
}



