@font-face {
  font-family: 'PoppinsMedium';
  src: url('../font/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
body{
  margin: 0;
  padding: 0;
  /* font-family: "Nunito Sans"; */
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-style: normal;
}

h1{
  font-size:25px;
  line-height: 1.5;
  text-align: left;
  color: #017b8a;
}
h2{
  font-size:25px;
  line-height: 1.5;
  text-align: center;
  color: #017b8a;
}
p{
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: left;
}
h4{
  font-size:18px;
}
.para-short{
  text-align: center;
}
.tabs-content{
  color: #017b8a;
  font-weight: bolder;
}
.footer-addr{
  color: white;
}
.copyright{
text-align: -webkit-center;;  
    
}
:root {
  --secondary: #fdfbfc;
  --light: #ffffff;
  --dark: #141413;
}
/* 
---------------------------------------------
Navbar - Index
--------------------------------------------- 
*/
.header-bgc-4 {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 10px 30px rgba(1, 15, 28, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 0;
    padding: 0 15px;
}
.navbar-div{
  max-width:100%;
}
.navbar{
  height:80px;
}
.nav-item .dropdown-menu{
  position: relative;
  top:50px;
}
.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-left: 25px;
  padding: 10px 0;
  color:black;
  outline: none;
  transition: .5s;
  letter-spacing: 1px;
}
.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: black;
}
.navbar-light .navbar-brand h1 {
  color: #ec6d18;
}
.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: .5s;
}
.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}
@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
      position: relative;
      background: #FFFFFF;
  }
  .navbar-light .navbar-collapse {
      margin-top: 15px;
      border-top: 1px solid #DDDDDD;
      z-index: 99;
      background-color: #fffef5;
      box-shadow:1px 1px 3px 0px rgba(0, 0, 0, 0.452);
      /* border-left: 1px solid #DDDDDD; */
  }
  .dropdown-menu li{
    /* border-bottom:1px solid  #e4dfb4; */
  }
  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
      padding: 10px 0;
      margin-left: 15px;
      color: var(--dark) !important;
  }
  .navbar-light .navbar-brand h1 {
      color: var(--primary);
  }
  .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(256, 256, 256, .1);
      z-index: 999;
  }
  .sticky-top.navbar-light {
      position: fixed;
      background: #FFFFFF;
  }
  .navbar-light .navbar-nav .nav-link::before {
      position: absolute;
      content: "";
      width: 0;
      height: 2px;
      bottom: -1px;
      left: 50%;
      background: var(--secondary);
      transition: .5s;
  }
  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
      width: 100%;
      left: 0;
  }
  /* .navbar-light .navbar-nav .nav-link.nav-contact::before {
      display: none;
  } */
  .sticky-top.navbar-light .navbar-brand h1 {
      color: var(--primary);
  }
}
body{
  margin:0;
}
.dropdown-menu {
  display: none;
  max-height: 0;
  overflow-y: auto;
  transition: max-height 0.5s ease-in-out, visibility 0.5s ease-in-out;
  visibility: hidden;
}
.dropdown:hover .dropdown-menu {
  display: block; 
  max-height: 300px;
  visibility: visible;
}
.dropdown-menu::-webkit-scrollbar {
  width: 3px; 
}
.dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #fd7c04a2;
  border-radius: 10px; 
}
.dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
}
#collapse-menu {
  display: none;
  background-color: #eee;
  padding: 10px;
  text-align: center;
}
/* 
---------------------------------------------
header - Index
--------------------------------------------- 
*/
.header-area {
  position: fixed;
  top: 60px;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 50px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header-area .main-nav {
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  border-radius: 40px;
  min-height: 80px;
  background: #fff;
}
.header-area .main-nav .logo {
  float: left;
  margin-top: 37px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-left: 30px;
}
.header-area .main-nav .logo img {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header-area .main-nav .nav {
  float: right;
  margin-top: 27px;
  margin-left: 0px;
  margin-right: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}
.header-area .main-nav .nav li {
  padding-left: 20px;
  padding-right: 20px;
}
.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}
.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
  text-decoration: none;
}
.header-area .main-nav .nav li a:hover {
  color: #fa8910;
}
.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 23px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}
.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #3B566E;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #3B566E;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}
.header-area .main-nav .menu-trigger span {
  top: 16px;
}
.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}
.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}
.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}
.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #3B566E;
}
.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #3B566E;
}
.header-area.header-sticky {
  min-height: 80px;
}
.header-area.header-sticky .logo {
  margin-top: 25px;
}
.header-area.header-sticky .nav {
  margin-top: 20px !important;
}
.header-area.header-sticky .nav li a {
  color: #000000;
}
#navbarCollapse{
 
  position: relative;
}
#navbarCollapse a:hover{
  color: #ec6d18;
}
.header-area.header-sticky .nav li a.active {
  color: #fe7c37;
}
@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-area {
    padding: 0px 15px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-top: 27px !important;
    margin-left: 30px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    margin-top: 80px !important;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #fff !important;
    color: #3B566E !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
  }
}
@media (min-width: 992px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  #header-text {
      display: none;
  }
  #collapse-menu {
      display: block;
  }
}
/* 
---------------------------------------------
welcome - Index
--------------------------------------------- 
*/
.welcome-area {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; 
  height: 100vh;
  width:100%;
}
.main-banner{
  width:100%;
  height: 80vh;
  position: absolute;
  top:18%;
}
.coverdiv{
  width:100%;
  display: flex;
  position: relative;
  left:2%;
}
.main-content{
  width: 700px;
  height:500px;
  padding:10px;  
  display: flex;
  flex-direction: column;
}
.main-content h1{
  margin:0;
  color: black;
  /* font-size: 55px; */
  font-weight:700px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 80px;
  position: relative;
  left:5%;
  top:10%;
}
.main-content p{
  color:rgb(10, 123, 138);
}
.changing-text {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
@keyframes fade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; }
}
.main-explore-div{
  padding:10px;
  position: relative;
  left:3%;
  top:14%;
}
.main-explore-div button{
  border-radius: 25px;
  padding:10px 20px;
  border: none;
  background-color:rgb(255, 145, 0);
  font-weight:700;
}
.main-cover-img{
  height:500px;
  width:550px;
  /* background-image: url("../images/hero-image.png"); */
  background-image: url("../images/blob-combined.png");
  background-size: 110%;
  background-repeat: no-repeat;
  background-position: center 50%;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50px);
  }
}
.main-cover-img-rocket{
  height:500px;
  width:550px;
  background-image: url("../images/rocket.png");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: right 20%;
  animation: float 10s ease-in-out infinite;
}
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #ffffff;
}
.main-cover{
  width: 100%;
  height:100vh;
  background-color: transparent;
}
/* 
---------------------------------------------
About section - Index
--------------------------------------------- 
*/
.about-title{
  margin:0;
}
.ball {
  position: absolute;
  border-radius: 100%;
  opacity: 0.7;
}
.aboutcontent{
font-size: 16px;
line-height: 2;
padding-top: 10px;
text-align: justify;
font-family: "Nunito Sans";
}
.about_readmore .btn{
border-radius: 25px;
padding:10px 20px;
border: none;
background-color:rgb(255, 145, 0);
font-weight:700;
}
.btn {
font-weight: 500;
transition: .5s;
}
.btn-square {
width: 38px;
height: 38px;
}
.btn-sm-square {
width: 32px;
height: 32px;
}
.btn-lg-square {
width: 48px;
height: 48px;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
padding: 0;
display: flex;
align-items: center;
justify-content: center;
font-weight: normal;
border-radius: 50px;
}
/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
  font-weight: 700 !important;
}
h4,
h5,
h6,
.fw-medium {
  font-weight: 500 !important;
}
/* 
---------------------------------------------
Services - Index
--------------------------------------------- 
*/
.slider-container h2{
  padding-top: 30px;
}
.slider-container{
  overflow: hidden;
  width: 100%;
  height: 70vh;
  position: relative;
  background: linear-gradient(90deg, rgba(152, 243, 255, 0.493) 0%, rgba(255, 207, 176, 0.308) 100%, rgb(127, 58, 246) 100%);
}

.slider-container::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: repeat;
  height: 10px;
  background-size: 20px 20px;
  background-image:radial-gradient(circle at 10px -5px, transparent 12px, #fff 13px);
}
.slider-container::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: repeat;
  height: 15px;
  background-size: 40px 20px;
  background-image:radial-gradient(circle at 10px 15px, #fff 12px, transparent 13px);
}
.slider {
  display: flex;
  width: calc(40% * 6);
  position: relative;
  top:15%;
  animation: slide 25s linear infinite;
}
.services{
  flex: 0 0 16.666%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  
}
@keyframes slide {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-55%);
  }
}
.service-item {
  position: relative;
  height: 200px;
  width:400px;
  padding: 35px 20px;
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.336);
  transition: .5s;
  margin: 100px auto;
  border-radius:10px;
}
.service-item:hover{
  transform: translateY(-10px);
}
.service-content{
  margin:0 20px;

}
.service-item .service-icon {
  margin: 0 auto 20px auto;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius:50%;
  transition: .5s;
  background-color: #06809eec;
}
.service-icon .fa{
  color: rgb(255, 255, 255);
  font-size:20px;
}
.service-icon .fa-solid{
  color: rgb(255, 255, 255);
  font-size:20px;
}
.service-para{
  font-size: 14px;
  font-family: "Nunito Sans";
}
.service-para:hover{
font-size:14px;
}
.service-item:hover .service-icon {
    background:rgb(247, 136, 9);
    color: white;
}
.service-item h5
{
  transition: .5s;
  color:  #06809eec;;
}
.service-item:hover p {
  color: rgb(5, 5, 5);
}
.service-item:hover h5{
  color: rgb(247, 136, 9);
}
.service-item a.btn {
  position: relative;
  display: flex;
  color: #06809eec;
  transition: .5s;
  z-index: 1;
  background-color: #fdfdfdec;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.288);
  width:fit-content;
  border-radius: 20px;
}
.service-item:hover a.btn{
  color: rgb(247, 136, 9);
}
.service-item:hover a.btn::before {
  width: 100%;
  background: var(--light);
  border-top-right-radius: 35px;
  border-bottom-right-radius:35px;
}
.servicebtn{
  background-color: #ec6d18;
  text-decoration: none;
  color: white;
  transition-timing-function: ease-in-out;
}
.servicebtn:hover{
  background-color:rgb(247, 151, 9);
  border:1px solid white;
  color: white;
  transition-timing-function: ease-in-out;
}
/* 
---------------------------------------------
why choose us - Index
--------------------------------------------- 
*/
.whychoose{
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.whychoose-content {
  flex: 1;
  padding-right: 20px;
}
.whychoose-content h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}
.whychoose-content p {
  font-size: 14px;
  line-height: 2;
  padding-top: 10px;
  text-align: justify;
  font-family: "Nunito Sans";
}
.explore-button {
  border-radius: 25px;
  padding:10px 20px;
  border: none;
  background-color:rgb(255, 145, 0);
  font-weight:700;
  color: #020202;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}
.explore-button:hover {
  background-color:rgb(255, 145, 0);
  color: black;
}
.image {
  flex: 1;
  text-align: right;
}
.image img {
  max-width: 100%;
  height: auto;
}
/* Media Query for Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .content {
    padding-right: 0;
    margin-bottom: 20px;
  }
  .image {
    text-align: center;
  }
  .digital-text, .digital-content img{
    display: none;
  }
  .digital-types-image {
    display: none;
  }
  .arrow-button{
   max-width:50px;

  }
}
/* 
---------------------------------------------
Testimonials - Index
--------------------------------------------- 
*/
/*** Section Title ***/
/*.section-title::before {*/
/*  position: absolute;*/
/*  content: "";*/
/*  width: 100px;*/
/*  height: 4px;*/
/*  bottom: 0;*/
/*  left: 11px;*/
/*  background: var(--dark);*/
/*}*/

/*.section-title::after {*/
/*  position: absolute;*/
/*  content: "";*/
  /* width: 4px; */
/*  height: 4px;*/
/*  bottom: 0;*/
/*  left: 50px;*/
/*  background: var(--dark);*/
/*}*/

.section-title.text-center::before {
  left: 50%;
  margin-left: -25px;
}

.section-title.text-center::after {
  left: 50%;
  margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
  position: absolute;
  content: "*";
  width: 10px;
  height: 10px;
  top: 2px;
  left: 0;
  background: rgba(240, 75, 46, 0.5);
}
.section-title h6::after {
  top: 5px;
  left: 3px;
}
.testimonials{
  overflow: hidden;
  width: 100%;
  height: 80vh;
  position: relative;
  background: linear-gradient(90deg, rgba(228, 230, 230, 0.493) 0%, rgba(224, 224, 224, 0.308) 100%, rgb(127, 58, 246) 100%);
}

.testimonials::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: repeat;
  height: 10px;
  background-size: 20px 20px;
  background-image:radial-gradient(circle at 10px -5px, transparent 12px, #fff 13px);
}
.testimonials::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: repeat;
  height: 15px;
  background-size: 40px 20px;
  background-image:radial-gradient(circle at 10px 15px, #fff 12px, transparent 13px);
}
.testimonial-carousel {
  position: relative;
  width: 100%;
  text-align: center;
  background-image: url('../images/testi-bg-img.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x:center;
}
.carousel-inner {
  position: relative;
  width: 100%;
  }
.carousel-item {
  display: none;
  position: relative;
  width: 100%;
}
.carousel-item.active {
  display: block;
}
.carousel-caption {
  position: static;
  text-align: center;
  bottom: 0;
}
.carousel-caption h5{
  position: relative;
  top:10px;
  color: #0e0e0e;
  font-size:30px;
  font-family:'intern';
}
.carousel-caption p{
  position: relative;
  top:20px;
  color: #0e0e0e;
  text-align: center;
  text-wrap: wrap;
  font-size:20px;
  letter-spacing:1px;
  line-height:38px;
  font-family: "Nunito Sans";
}
.client-photo {
  /* border-radius: 50%; */
  width: 300px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
  /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.336); */
}
.floating-photos {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
}
.floating-photo {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.7;
}
.right-photo {
  right: 10%;
  animation: float-right 7s infinite;
}
.top-photo {
  top: 5%;
  left:5%;
  animation: float-top 7s infinite;
}
@keyframes float-right {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(70px);
  }
}
@keyframes float-top {
  0%, 100% {
      transform: translateY(-100px);
  }
  50% {
      transform: translateY(-200px);
  }
}
/* 
---------------------------------------------
Our Clients - Index
--------------------------------------------- 
*/
.ourclients{
  font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    margin: 0;
}
.clients-container {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 700px;
}
.client {
  border: 1px solid #1e1f1f42;
  border-radius: 10px;
  padding: 10px;
  width: 30%;
  height:100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
.client:hover {
  transform: translateY(-10px);
}
.client img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* 
---------------------------------------------
Back to Top - Index
--------------------------------------------- 
*/
.back-to-top {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 18px;
  font-weight: bolder;
  border: none;
  outline: none;
  background-color: #fcfbfa;
  box-shadow:0 0 5px rgba(0, 0, 0, 0.459);
  color: black;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.3s;
}

.back-to-top:hover {
  background-color: orange;
  transform: scale(1.1);
}
/* 
---------------------------------------------
Media Queries - Index
--------------------------------------------- 
*/
@media screen and (min-width:320px) and (max-width:500px){
  .main-cover-img-rocket,
  .main-cover-img{
    display: none;
  }

  .coverdiv{
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .main-banner{
    top:10%;
  }
  .main-content{
    height:100px;
    padding: 0;
  }
  .main-content h1{
    /* font-size:40px; */
    line-height: 60px;
    width:345px;
  }
  .main-content .changing-text{
    word-wrap: break-word;
    width:300px;
  }
  video{
    height:30vh;
  }
 .ball{
    display: none;
  }
.slider-container{
height: 220vh;
 
  }
.slider{
  display: flex;
  flex-direction: column;
  flex-flow: wrap;
  width: calc(23% * 5);
  height:auto;
  position: relative;
  top:3%;
gap:100px;
animation: none;
padding:0 12px;
}
.slider h5{
  font-size:15px;
}
.service-item{
  padding:20px auto;
  height:230px;
}
.whychoose{
  display: flex;
  flex-direction: column;
}
.whychoose .image{
  margin-top:20px;
}
.section-title::before{
  margin-top:0px;
  background-color: transparent;
}
.testimonials{
  height:70vh;
}
.carousel-caption p{
  font-size:16px;
  line-height:30px;
}
.floating-photo{
  display: none;
}
.clients-container{
  width:100%;
  display: flex;
  flex-direction: column;
  gap:20px;
}
.ourclients{
  height:50vh;
}
.ourclients .client{
  min-width:330px;
  padding:5px 50px;
  margin:0 20px;
}
.form-control::placeholder{
font-size:10px;
}
.formdiv{
  padding:100px;
}
.addressdiv h5,
.addressdiv span{
  font-size:15px;
}
.rounded-circle{
  width:43px;
  height:42px;
}

/*.contactdiv .section-title h2{
  margin-top:0;
  padding-top: -10px;
}
.contactdiv p{
  margin-top:10px;
}
.mapdiv{
  padding:0;
} */
.send-btn{
    width:275px;
}
.main-banner{
  height:300vh;
}
.main-cover-img{
  display: block;
  width:400px;
position:relative;
top:180px;
margin-left:-30px;
}
.main-cover-img-rocket{
    display:block;
    background-position: center 39%;
        width: 500px;
        position: unset;
        margin-left: 30px;
}
.digitalwellknown-image img{
  max-width:50%;
}
.tab-container {
  display: flex;
flex-wrap: wrap;
gap: 10px;
max-width: 400px;
}
.tab-button {
  flex: 0 1 auto; 
  padding: 10px;
}

.tab-container::-webkit-scrollbar {
  display: none;
}
.content-item img{
  display: none;
}
.digital-types-image-quality {
  display: none;
}
}

.formdiv{
  padding:30px;
}
.formdiv form textarea{
  height:250px;
}
/* .card-face{
  height:200px;
} */
/*
---------------------------------------------
Contact Page
---------------------------------------------
   /* Custom styles for the contact section */
   /* .contact-info {
    background-color: #f8f9fa;
}

.contact-info-item {
  height:auto;
  padding:5px;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.contact-info-item2{
  height:200px;
}
.contact-info-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.contact-info-item:hover .icon{
  color: orange;
}
.contact-info-item .icon {
    color: #25acb6;
    transition: color 0.3s ease-in-out;
}
.contact-info-item h5 {
    margin-bottom: 10px;
    font-weight: 600;
}
.contact-info-item p {
    margin: 0;
    color: #666;
}
.contact-form {
    background-color: #f8f9fa;
}
.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 15px;
}
.contact-form .btn-primary {
    border-radius: 30px;
    padding: 10px 30px;
    background-color: #25acb6;;
    border-color: #25acb6;;
}
.contact-form .btn-primary:hover {
    background-color:orange;
    border-color: orange;
}
.contact-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
} */
/*
---------------------------------------------
About Section - About Page
---------------------------------------------
*/
.aboutdiv{
  position: relative;
  top:100px;
  margin-bottom: 100px;
}
.aboutpage-image img {
  border-radius: 10px;
}

.aboutpage-content {
  padding: 20px;
}

.aboutpage-content h3 {
  margin-top: 20px;
  font-weight: bold;
}

.aboutpage-content p {
  margin-top: 10px;
  line-height: 1.6;
}
.about-footer{
position: relative;
top:100px;
}
/*
----------------------------------------
Web designing - Web services
----------------------------------------
*/

 .webdiv{
  position: relative;
  top:80px;
  margin-bottom: 60px;
  background: linear-gradient(90deg, rgba(152, 243, 255, 0.322) 0%, rgba(255, 208, 176, 0.151) 100%, rgb(127, 58, 246) 100%);
}
.webdiv {
  padding: 20px;
}
.webdiv h1{
  margin-top: 20px;
  font-weight: bold;
  text-align: center;
}
.webdiv p {
  margin-top: 10px;
  line-height: 1.6;
  color: black;
} 
/*
-----------------------------
Mobile App Development
-----------------------------
*/
.mob-banner {
  position: relative;
  background: linear-gradient(119deg, rgb(250, 250, 249) 0%, rgb(255, 251, 246) 22%, rgba(182,242,244,1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 105vh;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 90%);
  overflow: hidden;
}
.mob-banner .row {
  width: 100%;
  margin: 0;
}
.mob-banner .mob-content {
  padding: 0;
}
.mob-banner .text-left {
  z-index: 1;
  padding-left: 3rem;
}
.mob-content .lead {
  font-size: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #333;
}
.mob-content .img-fluid {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .text-left {
      padding: 1rem;
      text-align: center;
  }
  .mob-content img {
      margin-top: 2rem;
  }
}
@media screen and (min-width:320px) and (max-width:600px){

   .mob-banner{
    height: auto;
    overflow:hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
   
  }
  .mob-banner .row{
      height:0;
  }

    .page-title{
        font-size: 20px;
        padding: 29px 0;
        
    }
    .page-title-div{
    margin-bottom: 0;
    padding:0;
  }
}
/***
features
***/
.features-container {
  max-width: 90%; /* Adjusted to make it responsive */
  margin: 0 auto;
  padding: 20px;
}

.page-title-div {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px; /* Added margin for spacing */
}

.page-title {
  text-align: center;
  font-size: 2rem; /* Increased font size for better readability */
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  font-family: "nunito sans";
  color: black;
}
/*
.page-title::before,
.page-title::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 7px;
  border-top: 2px solid orange;
  border-bottom: 2px solid orange;
  top: 50%;
}

.page-title::before {
  left: -60px;
  transform: translateY(-50%) rotate(-45deg);
}

.page-title::after {
  right: -60px;
  transform: translateY(-50%) rotate(45deg);
}
*/

.features-row {
  display: flex;
  justify-content: space-between;
    margin-bottom: 20px;
  margin-bottom: 20px;
}

.feature-box {
  flex: 1 1 45%; /* Adjusted flex properties for responsiveness */
  max-width: 400px; /* Set a max-width to prevent boxes from getting too wide */
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2em;
  margin-bottom: 10px;
}

.icon-security::before {
  content: "\1F512"; /* Unicode for lock/security icon */
}

.icon-configurations::before {
  content: "\2699"; /* Unicode for gear/settings icon */
}

.icon-easy-usage::before {
  content: "\1F4BB"; /* Unicode for laptop icon */
}

.icon-performance::before {
  content: "\1F680"; /* Unicode for rocket icon */
}

.icon-support::before {
  content: "\1F4AC"; /* Unicode for speech bubble icon */
}

.icon-integration::before {
  content: "\1F517"; /* Unicode for link icon */
}

.icon-scalability::before {
  content: "\1F4C8"; /* Unicode for chart icon */
}

.icon-customization::before {
  content: "\270F"; /* Unicode for pencil icon */
}

.feature-title {
  margin: 15px 0;
  font-size: 1.2rem;
  font-family: "nunito sans";
}

.feature-description {
  font-size: 1rem;
  color: #666;
  font-family: "nunito sans";
}

@media screen and (min-width:320px) and (max-width:600px) {
  .feature-box {
    padding: 15px;
  }
.features-row{
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap:nowrap;
}
  .feature-title {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 768px) {
  .features-container {
    padding: 10px;
  }

  .feature-box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .page-title {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  .feature-box {
    padding: 15px;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }
}
/*
why choose
*/

.why-choose-mobile-app-development {
  padding: 50px 0;
  background-image: url("../images/why-mobile.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.why-choose-mob-div {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-reasons-left, .why-choose-reasons-right {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  max-width: 300px;
}

.why-choose-reason {
  margin: 20px 0;
}

.why-choose-reason h2 {
  font-size: 2.3em;
  color: transparent;
  background: linear-gradient(321deg, rgba(44,185,178,1) 0%, rgb(17, 119, 112) 51%, rgba(219,185,255,1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.why-choose-reason h3 {
  font-size:19px;
  margin: 10px 0;
  font-family: "nunito sans";
}

.why-choose-reason p {
  color: #727171;
  line-height: 2;
  font-size: 18px;
  font-family: "nunito sans";
}

.why-choose-mob-image-container {
  max-width: 500px;
  margin: 0 50px;
}

.why-choose-mob-image-container img {
  width: 100%;
  height: auto;
}
.why-cust-choose h2 {
  font-size: 2rem;
  color: #333;
  font-family:"nunito sans";
}
.reason-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
}

.reason-icon {
  max-width: 50px;
  margin-right: 15px;
  opacity: 0.7;
}
.why-cust-text{
  color: transparent;
  background: linear-gradient(142deg, rgba(14,120,115,1) 0%, rgb(201, 67, 67) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.why-cust-img{
  width:90%;
}
.reason-item h3 {
  font-size: 18px;
  font-family:"nunito sans";
  margin-bottom: 0.5rem;
}

.reason-item p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
  font-family:"nunito sans";
  margin:0 45px;
}
.reason-item h3>i {
  font-size: 20px;
  margin-bottom: 10px;
  /* color:rgb(45, 205, 226); */
  margin:0 10px;
}
.card-icon {
  max-width: max-content;
  padding: 15px;
  border-radius: var(--radius-8);
  background-color: hsla(var(--color), 0.15);
  margin-block-end: 25px;
  transition: var(--transition-2);
}
.card-icon { transform: rotateY(0.5turn)}; 

@media screen and (max-width: 320px) {
  .why-choose-mobile-app-development{
   background: none;
   max-width: 268px;
  }
  .why-choose-mobile-app-development .page-title{
    width: 268px;
  }
}
/************
road map - mobile app
**********/
.roadmap-bg{
background-image: url("../images/road-map-mob-bg.jpg");
padding:20px 0;
}
.intro {
  background: rgb(128, 82, 255);
  padding: 70px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.timeline {
  padding: 30px 0;
}

.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 3px;
  margin: 0 auto;
  padding-top: 10px;
  background: #7cfada !important;
}

.timeline ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: inherit;
}

.timeline ul li div {
  position: relative;
  bottom: 0;
  width: 400px;
  padding: 15px;
  background: rgb(232, 235, 234);
  border-top-left-radius:10px;
  border-top-right-radius:10px;
  border:linear-gradient(to right, #39b3d7, #3c72ff, #ff598f) solid 1px;
  box-shadow:0px 3px 10px rgba(110, 109, 109, 0.425);
}

.timeline ul li div::before {
  content: '';
  position: absolute;
  bottom: 7px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline ul li:nth-child(odd) div {
  left: 45px;
}

.timeline ul li:nth-child(odd) div::before {
  left: -15px;
  border-width: 8px 16px 8px 0;
  border-color: transparent rgb(255, 174, 82) transparent transparent;
}

.timeline ul li:nth-child(even) div {
  left: -439px;
}

.timeline ul li:nth-child(even) div::before {
  right: -15px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent  rgb(255, 174, 82);
}

phase {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
  font-family: "nunito-sans";
}

.timeline ul li::after {
  transition: background .5s ease-in-out;
}

.timeline ul li.in-view::after {
  background: rgb(219, 218, 218);
}

.timeline ul li div {
  visibility: hidden;
  opacity: 0;
  transition: all .5s ease-in-out;
}

.timeline ul li:nth-child(odd) div {
  transform: translate3d(200px, 0, 0);
}

.timeline ul li:nth-child(even) div {
  transform: translate3d(-200px, 0, 0);
}

.timeline ul li.in-view div {
  transform: none;
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 320px) and (max-width:600px){
  .timeline ul{
    padding-left: 0px;
    width:100%;
  }
  .page-title::after{
    visibility: hidden;
  }
}
@media screen and (max-width: 900px) {
  .timeline ul li div {
    width: 250px;
  }
  .timeline ul li:nth-child(even) div {
    left: -289px;
  }
}

@media screen and (max-width: 600px) {
  .timeline ul li {
    margin-left: 20px;
  }
  .timeline ul li div {
    width: calc(100vw - 91px);
  }
  .timeline ul li:nth-child(even) div {
    left: 45px;
  }
  .timeline ul li:nth-child(even) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #7cfada transparent transparent;
  }
}

.blurry-text {
  text-shadow: 0 0 10px white;
  color: transparent;
}
/*
--------------------------------------------
Graphic Designing
--------------------------------------------
*/
/* Expertise services*/
.teal-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 0 14px rgba(0, 170, 170, 0.07);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 170, 170, 0.1);
}

.teal-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 6px 24px rgba(0, 170, 170, 0.18);
  transition: all 0.3s ease;
}

.icon-glow {
  width: 70px;
  height: 70px;
  background: #e0f7f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px #a5e6e6;
  margin: 0 auto;
}

.graphics-expertise {
  padding: 0;
}
.graphics-expertise .text-left {
  z-index: 1;
  padding-left: 3rem;
  text-align: left;
}
.graphics-expertise-content .lead {
  font-size: 16px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #333;
  text-align: left;
  font-family:"inter";
  line-height:30px;
}
.graphics-expertise-content a.btn-primary {
  font-size: 16px;
  align-self: self-start;
}
.expertdiv img{
  width:100%;
}
 .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #ffffff;
  }
  .service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 25px rgba(23, 150, 155, 0.4);
    border-color: #17969b;
  }

 
@media (min-width:320px) and (max-width:600px){
  .container .expertdiv img{
    width:0%;
    display: none;
  }
  .graphics-expertise-content>h1{
    padding:5px;
    text-align: center;
  }
  .graphics-expertise-content>p{
    padding:5px;
    text-align: justify;

  }
}
/********graphics services*******/
.graphics-services {
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.graphics-services::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("path/to/your/background-image.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
}

.graphics-service-box {
  padding: 40px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin: 20px auto;
  max-width: 350px;
}
.graphics-service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.graphics-service-icon {
  font-size: 48px;
  background: linear-gradient(90deg, #036b66, #2ee0d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.graphics-service-box:hover i{
  font-size: 48px;
  background: linear-gradient(90deg, #f8be00, #f5c115);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.graphics-service-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.graphics-service-description {
  font-size: 16px;
  color: #777;
  line-height: 1.5;
}

.graphics-section-title, .graphics-section-subtitle {
  color: #333;
  margin-bottom: 30px;
}
@media (min-width:320px) and (max-width:600px){
  .graphics-services{
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .graphics-services .row {
    flex-direction: column;
  }
  .graphics-service-box {
    margin: 15px 0;
  }
}
/*Graphics - Portfolio
*/
/* Process Section */
.graphics-process {
  padding: 60px 0;
  background-image:url("../images/graphic-backcover.jpg");
  background-size: cover;
  background-attachment: fixed;
  color: black;
  text-align: center;
  position: relative;
  z-index: 1;
}

.graphics-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(119, 217, 241, 0.76);
  z-index: -1;
}

.graphics-process .graphics-section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.graphics-process .graphics-section-subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.graphics-process .graphics-process-box {
  margin-bottom: 30px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: rgba(255, 255, 255, 0.829); /* Slightly translucent background */
  font-family: "Nunito Sans";
}

.graphics-process .graphics-process-icon {
  font-size: 3em;
  margin-bottom: 15px;
  color: #f1c40f; /* Icon color */
}
.graphics-process-box:hover .graphics-process-icon{
  margin-bottom: 15px;
  background: linear-gradient(90deg, #036b66, #2ee0d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.graphics-process .graphics-process-title {
  font-size:22px;
  margin-top: 15px;
}

.graphics-process .graphics-process-description {
  font-size:16px;
  line-height:1.5;
}

.graphics-process .graphics-process-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
@media (min-width:320px) and (max-width:600px){
  .graphics-process{
    background-image: url("../images/graphic-process-mobresp.jpg");
  background-size: cover;
  background-repeat:no-repeat;
  padding: 60px 0;
  background-attachment: fixed;
  color: black;
  text-align: center;
  position: relative;
  z-index: 1;
  }
}

/* WOW.js Animations */
.wow {
  visibility: hidden;
}

.wow.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
  }

  to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
  }
}
/***
why cust choose graphic deisgn
***/
.why-cust-choose-graphic h2 {
  font-size: 2rem;
  color: #333;
  font-family:"nunito sans";
}
.reason-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
}

.reason-icon {
  max-width: 50px;
  margin-right: 15px;
  opacity: 0.7;
}
.why-cust-text{
  color: transparent;
  background: linear-gradient(142deg, rgba(14,120,115,1) 0%, rgb(201, 67, 67) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.why-cust-img{
  width:90%;
}
.reason-item h3 {
  font-size: 18px;
  font-family:"nunito sans";
  margin-bottom: 0.5rem;
}

.reason-item p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
  font-family:"nunito sans";
  margin:0 45px;
}
.reason-item h3>i {
  font-size: 20px;
  margin-bottom: 10px;
  /* color:rgb(45, 205, 226); */
  margin:0 10px;
}
.card-icon {
  max-width: max-content;
  padding: 15px;
  border-radius: var(--radius-8);
  background-color: hsla(var(--color), 0.15);
  margin-block-end: 25px;
  transition: var(--transition-2);
}
.card-icon { transform: rotateY(0.5turn)}; 
/*
-------------------------------------------------
Digital Marketing - hosur
-------------------------------------------------
*/ 
.digital-hero-content-div{
  width:100%;
  margin: 0 auto;
}
.enhance{
  font-weight: bolder;
  color:#000000;
}
.digital-hero-section{
  width:90%;
  position: relative;
  padding-top:2%;
  position: relative;
    z-index: -1;
}
.digital-hero-section h1 {
  text-align: left;
  color: #017b8a;
  font-weight: bolder;
}
@media (max-width:767px){
  .digital-hero-section h1{
    margin-top:46px;
    font-size:26px;
  }
}
@media (max-width:1023px){
  .seo-benefits p{
    padding:22px;
  }
  .seo-benefits .seo-services{
    padding:0 37px;
  }
  .clients-content p{
    /* padding: ; */
  }
}
.digital-hero-section h1 span {
  color: #000;
  text-align: left;
}
.achive-line{
  color: #000;
  font-weight: bolder;
}
.digital-btn-custom {
  color: #17a2b8;
  border: 2px solid #17a2b8;
  padding: 10px 20px;
  font-size: 1rem;
  margin-bottom: 20px;
}
.digital-btn-custom:hover {
  background-color: #138496;
  color: #fff;
}
.digital-hero-image {
  max-width: 100%;
  height: auto;
}
.nav-borderbottom::after{
    border-bottom:4px solid #4ba6b4;
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: -5px; 
    left: 0;
    background:#bce4eba2; 
    box-shadow: 0 5px 10px #bce4eba2; 
    z-index: -1; 
  }
 /************
 Digital Marketing - Partners
 ************/
 .partners-section {
  position: relative;
  text-align: center;
  padding: 50px 20px;
  background-color: rgba(219, 213, 213, 0.212);
}

.partners-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.partners-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.partners-logos .partner img {
  max-width: 100%;
  height: 80px;
  border-radius: 8px;
  box-shadow: 0 10px 10px rgba(196, 195, 195, 0.425);
}

.partner {
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  min-width: 150px;
}
.clients-section {
  display: flex;
  flex-wrap: wrap;
  padding:40px;
  justify-content: center;
  justify-content: space-between;
  align-items: flex-start;
  color: #017b8a;
}

.clients-content {
  flex: 1 1 100px;
  width: 100%;
 
}

.clients-content h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
}

.clients-logos{
  flex: 1 2 183px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  width:200px;
}

.logo-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card img {
  max-width: 50%;
  max-height: 60px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .partner {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
@media (max-width:600px){
  .partners-logos img{
    width: -webkit-fill-available;
  }
  .digitalwellknown-image img{
    max-width:125%;
  }
  h2{
    font-size:22px;
    text-align: center;
    line-height:1.5;
  }
  .clients-section{
    padding:10px;
    margin:10px;
  }
  .digital-container-seo-quality{
    padding: 0;
  }
  .seo-services{
    padding-left:10px;
  }
  p{
    text-align: justify;
    padding:0 10px;
    letter-spacing: -0.3px;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
  }
  .logo-card {
    width:280px;
  }

}
@media (max-width: 480px) {
  .partner {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
/* Mobile Only Styles */
@media (max-width: 767px) {
  .digital-hsr-tabarea .tab-container {
    overflow: hidden;
    width: 100%;
    justify-content: center;
    display: flex;
  }

  .digital-hsr-tabarea .tab-button {
    display: none;
    flex-shrink: 0;
    width: 100%;
    text-align: center;
    font-size:12px;
  }

  .digital-hsr-tabarea .tab-button.active {
    display: inline-block;
  }

  /* Arrows always visible */
  .arrow-button {
    display: inline-block;
    background-color: teal;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    margin: 0 10px;
  }
  .seo-benefits-item.active p{
    padding:10px;
  }
}
/************SEO COMPANY********************/

.digital-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.digital-header {
  text-align: center;
  margin-bottom: 40px;
}

.digital-header h1 {
  margin: 0;
}

.digital-header h1 span {
  color: #007bff;
}

.digital-content {
  width:100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.digital-content img {
  max-width: 20%;
  height: auto;
  flex: 1 1 300px;
}

.digital-text {
  flex: 2 1 400px;
}

.digital-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
}

.digital-text p span {
  color: #007bff;
  font-weight: bold;
}

@media (max-width: 768px) {
  .digital-content {
    flex-direction: column;
  }

  .digital-text, .digital-content img {
    flex: 1 1 100%;
  }
  .digital-header h1{
    font-size: 22px;
  }
  .digital-content-seo-types h1 {
    font-size: 16px;
    position: relative;
    bottom: 5px;
  }
  .digitalwellknown-text h2{
    font-size: 16px;
  }
  .seo-benefits .description{
    padding:7px;
  }
}
/***************Digital result section***********/

.digital-result-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.digital-result-header {
  text-align: center;
  margin-bottom: 40px;
}

.digital-result-header h1 {
  margin: 0;
}

.digital-result-header h1 span {
  color: #119196;
}

.digital-result-content {
  text-align: left;
  margin-bottom: 40px;
}
.digital-result-extra-content {
  display: none;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-top: 10px;
}
.digital-result-content a {
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
}

.digital-result-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
}

.digital-result-content a {
  color: #17969b;
  font-weight:bolder;
  text-decoration: none;
}
.digital-result-service a{
  color: #17969b;
  font-weight:bolder;
  text-decoration: none;
  cursor: pointer;
}

.digital-result-services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.digital-result-service {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  text-align: center;
  padding-bottom: 50px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  perspective: 1000px;
  position: relative;
  overflow: hidden;
  height: 250px; /* Fixed height needed for smooth flipping */
}

.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  backface-visibility: hidden;
  transition: transform 0.6s ease;
  border-radius: 8px;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-face.front {
  background: #fff;
  transform: rotateY(0deg);
  z-index: 2;
}

.card-face.back {
  background: #007c89;
  transform: rotateY(180deg);
  z-index: 1;
  color: white;
}
.card-face.back  h3{
  color: white;
}
.digital-result-service:hover .front {
  transform: rotateY(180deg);
}

.digital-result-service:hover .back {
  transform: rotateY(0deg);
  z-index: 3;
}


.digital-result-service p{
  font-size:14px;
  text-align: justify;
  text-align:center;

}
.digital-result-service:hover {
  transform: translateY(-10px);
}

.digital-result-service img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.digital-result-service h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: black;
}

@media (max-width: 768px) {
  .digital-result-service {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .digital-result-service {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
/***********Digital Well known************/

.digitalwellknown-container {
  width:100%;
  margin: 0 auto;
}
.digitalwellknown-header {
  background-color: #17969b;
  color: white;
  text-align: center;
  padding: 20px 0;
}
.digitalwellknown-header p {
  margin: 0;
  font-size: 20px;
}
.digitalwellknown-header h1 {
  margin: 10px 0 0;
  /* font-size: 32px; */
}
.digitalwellknown-header button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  color: #17969b;
  background-color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.digitalwellknown-content {
  /* padding:10px 20px; */
  display: flex;
  /* flex-wrap: wrap; */
  align-items: center;
  justify-content: space-around;
  margin-top: 40px;
}
.digitalwellknown-image {
  max-width: fit-content;
  text-align: center;
}
.digitalwellknown-image img {
  width: 100%;
  height: auto;
}

.digitalwellknown-text {
  flex: 1 1 50%;
  max-width:550px;
}

.digitalwellknown-text h2 {
  /* font-size: 28px; */
  color: #17969b;
  margin-bottom: 20px;
  text-align: left;
}
.digitalwellknown-text a {
  color: #007bff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .digitalwellknown-content {
    flex-direction: column;
    text-align: center;
  }

  .digitalwellknown-image, .digitalwellknown-text {
    flex: 1 1 100%;
  }
}
/**********SEO Types***************/
.digital-content-seo-types{
  position: relative;
  width:100%;
  padding: 50px;
}
.digital-content-seo-types h1 {
  text-align: left;
  color: #017b8a;
  font-weight: bolder;
}
.digital-content-seo-types h1 span {
  color: #000;
  text-align: left;
}
.achive-line{
  color: #000;
  font-weight: bolder;
}
.digital-types-image{
  width:50%;
}
/*************benefits of seo services**********/

.seo-benefits {
  max-width: 900px;
  margin: auto;
  padding: 0px;
  text-align: center;
}

.seo-benefits h2 {
  color: #007c89;
}
.ppc-service-box{
  gap:10px;
}
@media(min-width:320px) and (max-width:500px){
  .seo-benefits h2{
    font-size:26px;
  }
  .ppc-services-title {

  }
}
.seo-benefits .description {
  margin: 20px 0;
  color: #555;
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.tab-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  max-width: calc(100% - 100px);
}

.tab-container::-webkit-scrollbar {
  display: none;
}
.tab-button {
  flex: 0 0 auto;
  max-width: fit-content;
  padding: 10px 16px;
  border-radius: 20px;
  border: none;
  background: #f5f5f5;
  text-align: center;
  white-space: nowrap;
  /* box-shadow:0px -1px 12px 2px #007b8979; */
}
.tab-button.active {
  background-color: #007c89;
  color: white;
}

.arrow-button {
  background-color: #007c89;
  color: white;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  margin: 5px;
  border-radius: 50%;
  font-size: 18px;
}

.content {
  margin-top: 10px;
}

.content-item {
  display: none;
}
.content-item.active {
  display: block;
  margin-top: 20px;
}
.list-title{
  font-weight:bolder;
  padding-left: 0;
  text-align: left;
  list-style-type: none;
}
.seo-services li{
  padding-left: 0px;
  text-align: left;
  font-size:14px;
  margin:5px 0;
  /* text-align: justify; */
}
.content-item{
  
  background-color: #ffffff;
}
.content-item.active p{
  text-align: left;
  text-align: justify;
}
.content-item img {
 max-height:200px;
position: relative;
top:100px;
}
.content .seo-tab-img{
  top:0;
}
.hidden {
  display: none;
}
.seo-wrapper{
  
}
.seo-services{
  
}
@media (max-width: 600px) {
  .tab-button, .arrow-button {
      width: 100%;
      margin: 5px 0;
  }
}
/* Mobile Only Styles */
@media (max-width: 767px) {
  .digital-hsr-tabarea .tab-container {
    overflow: hidden;
    width: 100%;
    justify-content: center;
    display: flex;
  }

  .digital-hsr-tabarea .tab-button {
    display: none;
    flex-shrink: 0;
    width: 100%;
    text-align: center;
    font-size:12px;
  }

  .digital-hsr-tabarea .tab-button.active {
    display: inline-block;
    text-wrap:auto;
  }

  /* Arrows always visible */
  .arrow-button {
    display: inline-block;
    background-color: teal;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    margin: 0 10px;
  }
  .seo-benefits-item.active p{
    padding:10px;
  }
}
@media screen and (min-width: 320px) and (max-width: 500px) {
    .digital-hsr-tabarea .tab-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        max-width: 400px;
    }
}
/**********Quality services***********/
.digital-btn-custom-quality {
  color: white;
  background-color:#17a2b8;
  padding: 10px 20px;
  font-size: 1rem;
  margin-top: 20px;
}
.digital-btn-custom-quality:hover {
  background-color: transparent;
  border:1px solid #17a2b8;
  color:#17a2b8;
}
.digital-types-image-quality{
  width:400px;
}
.digital-container-seo-quality h2{
  color: #007c89;
}
/*****************FAQ***********************/
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}
.faq-container h2 {
  text-align: center;
  margin-bottom: 20px;
}
.faq-container .faq {
  margin-bottom: 20px;
}
.faq-container .faq h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
  font-family:'intern';
}
.faq-container .faq p {
  font-size: 16px;
  color: #666;
}
@media (max-width: 600px) {
  .faq-container {
      padding: 10px;
  }
  .faq-container h2 {
      font-size: 24px;
  }
  .faq-container .faq h3 {
      font-size: 16px;
  }
  .faq-container .faq p {
      font-size: 14px;
  }
}
/*
--------------------------------------------
Digital Marketing - PPC
--------------------------------------------
*/
.digital-header .hash-one-ppc{
color: #20a2b6;
}
/*****PPC Services***/
.ppc-service-container{
  display: flex;
  justify-content: center;
  justify-content: space-evenly;
}
.ppc-services-title {
  text-align: center;
  color: #17a2b8;
  margin-bottom: 40px;
}
.ppc-service-box {
  text-align: center;
  padding: 30px 20px;
  border-bottom: 3px solid #17a2b8;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.ppc-service-box:hover  .ppc-service-number,
.ppc-service-box:hover .ppc-service-text
{
  transform: translateY(-10px);
  transition: all 0.3s ease;
  color: #0f393f;
}
.ppc-service-number {
  font-size: 40px;
  font-weight: bold;
  color: #17a2b8;
}
.ppc-service-text {
  width:300px;
  text-align: left;
  font-size: 20px;
  font-weight:bolder;
  color: #17a2b8;
  text-wrap:wrap;
}
.tabs-ppc{
  width:100%;
}
.tab-container-ppc .tab-button{
  width:auto;
}
.ppc-benefits {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  text-align: center;
}
.ppc-benefits h2 {
  color: #007c89;
}
.ppc-benefits .description {
  margin: 20px 0;
  color: #555;
}
.ppc-ad-types-img{
  width:200px;
}
.ppc-strategy{
  width:auto;
}
.ppc-strategy li{
  text-align: left;
  padding-left: 0;
}
/*
-------------------------------------
Web Design
-------------------------------------
*/
.text-lg-left .hero-heading{
  color: black;
  font-weight: bolder;
}
.text-lg-left .hero-heading span{
  color: #119196;
}
.web-title {
  font-size: 2em;
  margin-bottom: 20px;
}
.web-highlight {
  color: #17a2b8; /* Bootstrap's 'info' color */
}
.web-divider {
  width: 50%;
  margin: 20px auto;
  border: 1px solid #ccc;
}
.web-card {
  margin-bottom: 30px;
  padding: 20px;
}

.web-icon {
  width: 200px;
  margin-bottom: 15px;
}

.web-subtitle {
  font-size: 1.25em;
  margin-bottom: 10px;
}

.web-description {
  font-size: 0.9em;
  color: #6c757d; /* Bootstrap's 'secondary' color */
}
.web-project-container {
  position: relative;
  display: inline-block;
  margin: 0 5px;
}

.web-project-image {
  max-width: 450px;
  max-height: 400px;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.web-project-container:hover .overlay {
  opacity: 1;
}

.heart-icon {
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.heart-icon.clicked {
  color: red;
}
/*
------------------------------------------
courses - Python
------------------------------------------
*/
.coursebox{
  padding-top: 50px;
}
.course-python-container{
  position: relative;
  top:84px;
  height: 83vh;
  background: linear-gradient(90deg, rgba(30,53,121,1) 0%, rgba(73,182,179,1) 100%);
  color: white;
  font-weight:200;
}
.course-python-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.badge-primary {
  background-color: #007bff;
}

.badge-success {
  background-color: #28a745;
}

.course-python-preview-card {
  background-color: #ffcc00;
  border: none;
}

.course-python-preview-title {
  font-size: 1.5rem;
}

.course-python-preview-text {
  font-size: 1.2rem;
}

.course-python-preview-button {
  background-color: #ffcc00;
  border: none;
  font-size: 2rem;
}

.course-python-request-call {
  background-color: #007bff;
}
.course-python-download-syllabus {
  color: #fff;
  border-color: #fff;
  margin-left:20px;
}
.course-python-rating-info span{
  padding:5px 10px;
}
.course-python-star {
  color: #ffc107;
  margin-left: 0.2rem;
}
.course-python-info-item {
  border: 1px solid #cccccc2a;
  padding: 20px;
  margin-bottom: 20px;
}

.course-python-info-title {
  font-size: 1.8rem;
  color: white;
}

.course-python-info-description {
  font-size: 1.2rem;
}
.video-preview-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.video-preview {
  position: relative;
  width: 200px;
  height: 200px;
  background: #f0a500;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-button {
  position: relative;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.play-button i {
  color: #f0a500;
  font-size: 24px;
}

.wave{
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background-color: #211e2442;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: wave 5s infinite;
}

.wave:nth-child(2) {
  animation-delay: 0.5s;
}

.wave:nth-child(3) {
  animation-delay: 1s;
}

@keyframes wave {
  0% {
      transform: scale(0.5);
      opacity: 1;
  }
  100% {
      transform: scale(2);
      opacity: 0;
  }
}
/********overview*******/

.course-python-overview-container {
  position: relative;
  top:50px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
}

.course-python-overview-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: left;
}

.course-python-overview-description {
  font-size: 14px;
  line-height:25px;
  margin-bottom: 20px;
  text-align: left;
}

.course-python-overview-additional-info-title {
  font-size: 1.5rem;
  margin-top: 40px;
  text-align: left;
}

.course-python-overview-additional-info-subtitle {
  font-size: 14px;
  line-height:25px;
  margin-bottom: 10px;
  text-align: left;
}
  .course-python-overview-additional-info  ul li{
  font-size: 14px;
  line-height:25px;
  margin-bottom: 10px;
  text-align: left;
}
.course-python-overview-info-bullet {
  color: #007bff;
  font-size: 10px;
  margin-right: 10px;
}

.course-python-overview-view-more {
  display: inline-block;
  margin-top: 10px;
  color: #007bff;
}

.course-python-overview-skills-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: left;
}

.course-python-overview-skills-list li {
  font-size: 14px;
  line-height: 35px;
  margin-bottom: 5px;
  text-align: left;
}

.course-python-overview-skills-list .course-python-overview-info-bullet {
  font-size: 0.6rem;
}
/**********key benefits*********/

.key-benefits-container {
  background-color: rgba(235, 233, 233, 0.466);
  padding: 20px 100px;
  border-radius: 8px;

}
.text-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin:20px 0;
}
.key-benefits-header {
  margin-bottom: 20px;
}

.key-benefits-title {
  font-size:20px;
  margin-bottom: 0;
}

.key-benefits-money-back {
  font-size: 1rem;
  color: #ff5722;
  display: flex;
  align-items: center;
  border: 1px solid #ff5722;
  border-radius: 5px;
}

.key-benefits-money-back i {
  margin-right: 5px;
}

.key-benefits-list .col-md-4 {
  display: flex;
  align-items: center;
  grid-gap:40px;
}

.key-benefits-list i {
  color: #3a3a3a;
  font-size:25px;
}

.key-benefits-list h5 {
  margin-top: 10px;
  font-size: 16px;
  margin-bottom: 0;
}

.key-benefits-list p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 0;
}
/**********Training Options********/

.training-opt-option {
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.training-opt-option:hover {
  transform: translateY(-10px);
}

.training-opt-body {
  padding: 20px;
}

.training-opt-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.training-opt-old-price {
  text-decoration: line-through;
  color: #888;
}

.training-opt-new-price {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.training-opt-option ul {
  padding-left: 0;
  margin-bottom: 15px;
}

.training-opt-option ul li {
  margin-bottom: 10px;
}

.training-opt-option .btn {
  font-size: 0.9rem;
  font-weight: bold;
}

.training-opt-demo-sessions p {
  margin-bottom: 5px;
}

.training-opt-demo-sessions a {
  font-size: 0.9rem;
}

.badge-success {
  background-color: #28a745;
  color: white;
}
/*********Curriculum************/
.curriculum-container{
  background-color: #dfecf98a;
  position: relative;
}
.curriculum-container .curriculum-heading {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  text-align: left;
}

.curriculum-container .curriculum-underline {
  width: 50px;
  height: 2px;
  background-color: #007bff;
  margin-bottom: 1rem;
}

.curriculum-container .curriculum-subheading {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.curriculum-container .curriculum-content {
  color: #000;
  padding: 1rem;
}
.curriculum-syllabus{
  display: flex;
 justify-content: space-between;
}
.fa-file-pdf{
  color: red;
}
.curriculum-syllabus .btn-outline-primary:hover i{
  color: #FFFFFF;
}
.accordian-div{
  padding:5px 20px;
  border-bottom:1px solid rgba(240, 240, 240, 0.616);
}
.accordian-div div{
  
}
.curriculum-container .curriculum-card-header {
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.curriculum-container .curriculum-card {
  border: none;
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 1rem;
  box-shadow: none;
}

.curriculum-container .curriculum-card-body {
  border: none;
  color: #000;
}

.curriculum-container .btn-outline-primary {
  border-color: #007bff;
  color: #007bff;
}

.curriculum-container .btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}

.curriculum-container .curriculum-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  color: #007bff;
  text-decoration: none;
}

.curriculum-container .curriculum-btn:hover, .curriculum-container .curriculum-btn:focus {
  text-decoration: none;
}

.curriculum-container .btn-outline-primary.curriculum-view-more {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  border-width: 2px;
  color: #007bff;
  background-color: transparent;
  border-color: #007bff;
}

.curriculum-container .curriculum-contact-card .card-body {
  padding: 1rem;
  border-radius: 4px;
}

.curriculum-container .curriculum-trial-card .card-body h5 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  text-align: center;
}

.curriculum-container .curriculum-trial-card .card-body h5 span.text-primary {
  color: #007bff;
}

.curriculum-container .curriculum-trial-card .form-control {
  margin-bottom: 1rem;
  border: none;
  border-bottom: 1px solid #ced4da;
  border-radius: 0;
}

.curriculum-container .curriculum-trial-card .btn-block {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .curriculum-container .curriculum-btn {
      font-size: 0.9rem;
  }

  .curriculum-container .curriculum-card-header {
      font-size: 1rem;
  }

  .curriculum-container .curriculum-card-body {
      padding: 1rem;
  }
}