@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Teko:wght@300..700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
/********** Template CSS **********/
:root {
  --primary: #e2b007; 
  --secondary: #3b0073;
  --light: #f4f5f8;
  --dark: #222429;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
  font-size: inherit;
  margin-left: 0;
}

/*.sticky-header-wrapper {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  width: 100%;*/
/*  z-index: 1050;*/
/*}*/
/* Make wrapper sticky */
.sticky-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1050;
  background-color: #000; /* or whatever your top background is */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* optional */
}


h1,
h2,
.font-weight-bold {
  font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
  font-weight: 500 !important;
}

.btn {
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn-primary{
  color: var(--secondary);
  background-color: inherit;
  border-color: #f5b42a;
  background: linear-gradient(160deg, #f5d365, #f5ba36, #ffd700, #e2b007);
  transition: 0.1s;
}
.btn-primary:hover {
  color: var(--white);
  background: linear-gradient(190deg, #f5d365, #f5ba36, #ffd700, #e2b007);
  transition: 0.10s;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 0;
  border-radius: 0;
  z-index: 99;
}

.navbar-brand img {
  max-height: 110px !important;
}
.navbar-dark .navbar-nav .nav-link {
  font-family: "Oswald", sans-serif;
  margin-right: 32px;
  /*padding: 40px 0;*/
  padding: 15px 0;
  color: var(--light);
  font-size: 16px;
  text-transform: uppercase;
  outline: none;
  border-bottom: 0px;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
    border-bottom: 1px solid #a78cc0;
  }
}

/* drodown nav submenu css */
/* Nested dropdown styling */
.dropdown-submenu {
  position: relative;
}
.navbar-expand-lg .navbar-nav .dropdown-menu{
    margin-top: -1px!important;
}
.dropdown-submenu > .dropdown-menu {
  display: none;
  top: 0;
  left: 100%;
  margin-top: -1px!important;
  position: absolute;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Enable click-toggle in mobile */
.dropdown-submenu.show > .dropdown-menu {
  display: block !important;
}
/* Enable click-toggle in mobile */
.dropdown-submenu.show > .dropdown-menu.show > .dropdown-submenu{
  display: block !important;
}

/* Mobile-specific adjustments */
@media (max-width: 991.98px) {
  .dropdown-menu {
    position: static !important;
    float: none;
    box-shadow: none;
    border: none;
  }

  .dropdown-submenu {
    margin-left: 1rem;
  }

  .dropdown-submenu .dropdown-toggle::after {
    content: " ▾";
    float: right;
  }

  .dropdown-submenu .dropdown-submenu {
    margin-left: 1rem;
  }

  .dropdown-submenu > .dropdown-menu {
    margin-left: 1rem;
  }
}
.display-lg {
    display: block!important;
  }
@media (max-width: 1099px) {
  .display-lg {
    display: none!important;
  }
}
/* ./drodown nav submenu css */


/* Ensure sticky header stays on top */
.sticky-top {
  top: 0;
  z-index: 1030; /* ensure it stays above other elements */
}

/* Optional: Add shadow for separation when scrolling */
.sticky-top.shadow {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


/*** Topbar Start **
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar **
.navbar-light .navbar-nav .nav-link {
     font-family: "Oswald", sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 15px 0;
    color: var(--bs-white) !important;
    font-size: 16px;
    outline: none;
    transition: .5s;

}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}*/

body.act-home  a.act-home,
body.act-about  a.act-about,
body.act-itservices a.act-itservices,
body.act-designing a.act-designing,
body.act-visual  a.act-visual,
body.act-rd a.act-rd,
body.act-otherventures a.act-otherventures,
body.act-businessdevelopment a.act-businessdevelopment,
body.act-contact a.act-contact {
    font-weight: 600 !important;
    color:var(--primary) !important
}

/*** Carousel Hero Header Start ***/
#header-carousel .carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
   /*background: rgb(9, 11, 10); */
  z-index: 1;
}
#header-carousel .carousel-caption img {
  object-fit: cover;
  height: auto;
  width: 100%;
}
@media (min-width: 450px) {
  #header-carousel .carousel-caption h5 {
    font-size: 25px !important;
    font-weight: 600 !important;
  }
}
@media (max-width: 450px) {
  #header-carousel .carousel-caption h5 {
    font-size: 18px;
    font-weight: 500 !important;
  }
#header-carousel .carousel-caption h1 {
    font-size: 25px;
    font-weight: 600 !important;
  }
}
@media (max-width: 576px) {
  #header-carousel .carousel-caption h4 {
    font-size: 18px;
    font-weight: 500 !important;
  }
  #header-carousel .carousel-caption h5 {
    font-size: 18px !important;
    font-weight: 500 !important;
  }
  #header-carousel .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
  width: 10%;
  z-index:99!important;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}


.page-header {
    background: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url(../img/banner-home-2.jpg) center center no-repeat;
    background-size: cover;
}
.page-header-digital {
    background: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url(../img/banner-digital.jpg) center center no-repeat;
    background-size: cover;
}
.page-header-web-development {
    background: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url(../img/banner-web-development.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}




.bg-hero {
  background: linear-gradient(rgba(34, 36, 41, 0.8), rgba(34, 36, 41, 0.8)),
    url(../img/carousel-1.jpg) top center no-repeat;
  background-size: cover;
}

.programe::after {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 45px);
  top: 135px;
  left: 0;
  background: var(--dark);
  z-index: -1;
}

/*** Team ***/
.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.2);
}

/*.team-item .team-overlay {*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  right: 50%;*/
/*  bottom: 50%;*/
/*  left: 50%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  background: rgba(59, 0, 115, 0.85);*/
/*  transition: 0.5s;*/
/*  opacity: 0;*/
/*}*/

/*.team-item:hover .team-overlay {*/
/*  top: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  opacity: 1;*/
/*}*/

.team-carousel .team-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: #fff; /* optional: to avoid layout shift */
    border: 1px solid #eee; /* optional */
}
.team-carousel .team-content {
    flex-grow: 1;
    overflow:hidden;
}

/*** Carousel Hero Header Start ***/
.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    /*background: var(--bs-white);*/
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.team-carousel .owl-nav .owl-prev {
    top: 50%;
    left: -70px;
    transform: translateY(-50%);
}
.team-carousel .owl-nav .owl-next {
    top: 50%;
    right: -70px;
    transform: translateY(-50%);
}
@media(max-width:1200px){
    .team-carousel .owl-item img {
        width: 30px;
        height: 30px;
    }
    
    .team-carousel .owl-nav {
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }
    
    .team-carousel .owl-nav .owl-prev,
    .team-carousel .owl-nav .owl-next {
        position:relative;
        margin-right: 15px;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        /*border: 2px solid var(--primary);*/
        border-radius: 50px;
        font-size: 18px;
        transition: .5s;
    }
}

/*** Carousel Hero Header End ***/

/* General styles for both banners */
#header-carousel .carousel-item {
    height: auto;
    /*max-height: 475px;*/
    overflow: hidden;
    position: relative;
    
}

#header-carousel .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Specific for second banner: fix visibility and layout */
#header-carousel .carousel-item:nth-child(2), #header-carousel .carousel-item:nth-child(3) {
    background: none !important; /* remove bg image */
}

#header-carousel .carousel-item:nth-child(2) img, #header-carousel .carousel-item:nth-child(3) img {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive behavior */
@media (max-width: 768px) {
    #header-carousel .carousel-item {
        max-height: 75vh;
    }
    #hero-section-content {
        flex-direction: column !important;
        text-align: center;
    }
    #hero-section-img img {
        width: 100% !important;
        max-width: 320px;
        margin-top: 1rem;
    }
} 





/*** ./Team ***/


/*** Team 2 ***/
.team2 .card-social {
  position: absolute;
  width: 100%;
  height: 0;
  top: 100%;
  left: 0;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}
.team2 .card:hover .card-social {
  top: 0;
  height: calc(100% - 100px);
  opacity: 1;
  background: rgba(0, 0, 0, 0.3);
}
.team2 .card-body {
  position: relative;
  z-index: 2;
}

.team2  .team-carousel .owl-item img{
    width:100% !important;
    height:auto!important;
}
/*** ./Team 2 ***/



.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  font-size: 22px;
  border-radius: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.testimonial-carousel .owl-item img {
  width: 90px;
  height: 90px;
}

.blog-item img {
  transition: 0.5s;
}

.blog-item:hover img {
  transform: scale(1.2);
}

@media (min-width: 991.98px) {
  .credit {
    background: var(--primary);
  }
}

/* Added by Sagar */

/* Added by SAGAR */
.whychoosebg {
  background: linear-gradient(
      rgba(136, 180, 78, 0.85),
      rgba(136, 180, 78, 0.85)
    ),
    url(../img/carousel-1.jpg) center center no-repeat;
  /* background: linear-gradient(rgba(32, 32, 32, 0.85), rgba(24, 24, 23, 0.85)); */
  background-size: cover;
  background-attachment: fixed;
}

.brandName {
  background: linear-gradient(rgba(223, 189, 0, 0.9), rgba(205, 175, 9, 0.9)),
    url(../img/bg/2.jpg);
  background-attachment: fixed;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.overlay-top::before,
.overlay-bottom::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 15px;
  left: 0;
  z-index: 1;
}

.overlay-top::before {
  top: -1px;
  background: url(../img/overlay-top.png);
}

.overlay-bottom::after {
  bottom: -1px;
  background: url(../img/overlay-bottom.png);
}

/* Hero section 75% height */
#hero-section {
  position: relative;
  overflow: hidden;
  height: 75vh;
}


/* Background image fits the full space */
#hero-section .carousel-inner {
  object-fit: cover;
  height: 100%;
  width: 100%;
  overflow: hidden;
  height: 75vh;
  background-color: #000;
}

/* Caption content stays on top */
#hero-section .carousel-caption {
  z-index: 10;
  height: 100%;
  width: 100%;
}

/* Image inside caption (side image) */
#hero-section .carousel-caption img {
  object-fit: contain;
  height: auto;
  width: 100%;
  max-width:300px!important;
}

/* Skew background effect
@media (min-width: 992px) {
  #hero-section::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 100%;
    top: 0;
    right: -400px;
    background: var(--bs-primary);
    transform: skew(28deg);
    z-index: 1;
  }
}

@media (max-width: 991px) {
  #hero-section::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 100%;
    top: 0;
    left: -400px;
    background: var(--bs-primary);
    transform: skew(28deg);
    z-index: 1;
  }
}
 */
/* Content layering */
#hero-section #hero-section-content {
  position: relative;
  z-index: 9;
  overflow:hidden;
}

#hero-section #hero-section-img {
  position: relative;
  z-index: 1;
}


/*** About Us ***/
#about {
  background: url(../img/blue-bg.jpg) center center no-repeat;
  background-size: cover;
}
#about .yellow-container{
    width:50%;
    margin-top: -25%;
}
@media (max-width: 567px) {
    #about .yellow-container{
        width: 75%;
        margin-top: -15%;
    }
}
/*** Services ***/
.service-item .service-overlay {
  position: absolute;
  padding: 30px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(59, 0, 115, 0.85);
}

/*** Facts ***/
.facts-overlay {
  position: absolute;
  padding: 30px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(59, 0, 115, 0.85);
}

.facts-overlay h1 {
  font-size: 120px;
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
}


#contact a:hover {
  color: var(--primary) !important;
}


.footer a:hover {
  color: var(--primary) !important;
}

.gold-gradient-text {
  font-weight: bold;
  background: linear-gradient(360deg, #f5d365, #f5ba36, #ffd700, #e2b007);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-gradient-bg {
  background: linear-gradient(360deg, #f5d365, #f5ba36, #ffd700, #e2b007);
  color: #fff; /* Optional: adjust text color */
  padding: 20px;
  border-radius: 8px;
  font-weight: bold;
}

/*** IT Services ***/
.services-start,
.services-end {
    background: url(../img/about-1.jpg) center center no-repeat;
    background-size: contain;
}

@media (min-width: 992px) {
    .services-start {
        position: relative;
        margin-right: -90px;
        z-index: 1;
    }

    .services-end {
        position: relative;
        margin-left: -90px;
        z-index: 1;
    }
}