@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

:root{
    --yellow-color: #FBA70B;
    --orange-color: #F58B4E;
}
.bg-color{
    background-color: #f4f4f4;
}
a{
    text-decoration: none;
}

h1{
    color: var(--yellow-color);
}
h2{
    font-size: 45px;
    font-weight: 700;
}
.text-bg-color{
    background-color: greenyellow;
    border-radius: 15px;
    padding: 0px 10px;
}
.text-bg-color2{
    background-color:var(--yellow-color);
    border-radius: 15px;
    padding: 2px 15px;
}
/* ----------hero section---------- */
.page {
    display: grid;
    min-height: 10vh;
  }
  
  .page__text {
    margin: auto;
  }
  
  .text {
    position: relative;
    font-size: clamp(4rem, 7vw, 8rem);
  }
  
  .text::before {
    animation-name: anim;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    color: red;
    position: absolute;
    top: 0;
    left: -2px;
    width: 0;
    overflow: hidden;
    content: attr(data-text);
  }
  
  @keyframes anim {
    50%, 80% {
      width: 100%;
    }
  }
.hero-section{
    background: rgb(2,2,51);
    min-height: 600px;
}
.hero-section .content{
    padding-top: 80px;
}
.hero-section h4{
    color: var(--yellow-color);
    font-size: 30px;
    font-weight: 700;
    text-decoration: underline;
}
.hero-section h2{
    font-size: 45px;
    color: #f4f4f4;
}
.hero-section h1{
    color: #fff;
    font-size: 50px;
    font-weight: 800;
    text-decoration: underline;
}
.hero-section h5 span{
    font-size: 32px;
    font-weight: 600;
    margin: 30px 0px;
    border-radius: 8px;
}
.hero-section h6{
    font-size: 20px;
    background-color: whitesmoke;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
}
/* Define the shuffle animation */
@keyframes shuffle {
    0% { transform: translateX(0); }
    25% { transform: translateX(10px); }
    50% { transform: translateX(0); }
    75% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}

/* Apply the animation to the link */
.hero-section a , .common-cta-btn{
    background: var(--orange-color);
    padding: 15px 100px;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    border-radius: 9px;
    display: inline-block;
    animation: shuffle 2s ease-in-out infinite;
}
.text2{
    display: none;
  
}

.hero-section a:hover{
    background: red;
}
.hero-section a:hover .text2{
    display: block;
}
.hero-section a:hover .text1{
    display: none;
}

.hero-section i{
    margin-right: 9px;  
}

.services .common-btn a{
     background-color: greenyellow;
     border-radius: 15px;
    padding: 12px 50px;
}
.services .common-btn a:hover{
    background-color: red;
    color: white !important;
}
.services .common-btn:hover .text1{
display: none;
}
.services .common-btn:hover .text2{
    display: inline;    
    }
/* ----------hero section end---------- */

/*------------sec-first--------------*/
.sec-first .right a{
    background: var(--orange-color);
    padding: 10px 40px;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    border-radius: 9px;
}
.sec-first h3{
    letter-spacing: 1px;
    font-weight: 600;
}
.sec-first .get-started-today{
        background: #181818;
        padding: 10px 40px;
        color: #fff;
        font-size: 25px;
        font-weight: 700;
        border-radius: 9px;
        width: 60%;
        margin: 0 auto;
        animation: shuffle 2s ease-in-out infinite;
}
.sec-first .get-started-today a{
    color: white;
}
/*------------sec-first end--------------*/


/*--------------testimonial end------------*/
.google-review-section .card {
    min-height: 200px;
    overflow: hidden;
    position: relative;
    padding: 15px;
  }

/*--------------testimonial end------------*/

/*--------------lead generation------------*/
.lead-generation{
    background: rgb(2,2,51);
  }
  .lead-generation ul span li{
    list-style: none;
  }
     .header {
        background-color: #f4f4f4;
        text-align: center;
    }
    .header h1 {
 
    }

    .features {
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
    }
    .features h3{
      text-decoration: underline;
    }
    .feature-box {
        border: 1px solid #ccc;
        padding: 20px 0px;
        border-radius: 8px;
        background-color: #f9f9f9;
    }
.feature-box ul span{
  display: flex;
}

  .lead-generation  i{
    margin-right: 5px;
background-color:green;
width: 20px;
height: 20px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 12px;
line-height: 1;
  }
/*--------------lead generation end------------*/

/*--------------no lead------------*/
.no-lead .content{
    width: 85%;
    margin: 0px auto;
    text-align: center;
}
.no-lead h2{
    font-size: 50px;
    font-weight: 700;
}
.no-lead .equal{
    font-size: 70px;
}
.no-lead a{
    background: var(--orange-color);
    padding: 12px 70px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    border-radius: 9px;
    display: inline-block;
    animation: shuffle 2s ease-in-out infinite;
}
/*--------------no lead end------------*/

/*--------------services------------*/
/* .services{
    background: #181818; 
} */
.website-case-study div {
    height: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.website-case-study div img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 5s ease;
}

.website-case-study div:hover img {
    transform: translateY(calc(500px - 100%));
}
.seo{
    background: rgb(2,2,51);
    color: white;
}
.seo table tr:hover{
    background-color: white;
    color: black;
}
.seo table {
    width: 100%;

    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    border: 1px solid;
    border-bottom: 2px solid;
}
.seo th, .seo td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
   
}
.seo th {
    background-color: #f4f4f4;

}
.seo tr:hover {
    background-color: #f1f1f1;
}

.smo-sec{
    background: rgb(2,2,51);
}
.smo-sec ul li{
 list-style: none;
 font-size: 18px;
}
.smo-sec ul span{
    display: flex;
    margin-bottom: 10px;
}
.smo-sec i {
    margin-right: 5px;
    background-color:green;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    line-height: 1;
}
.smo-sec .card h4{
    text-decoration: underline;
}
.services .list-item{
    font-size: 18px;
}
/*--------------services end------------*/

 
/*faq*/
.faq {
    position: relative;
  }
  
  .faq-image {
    position: absolute;
    top: -36px;
    right: 100;
    z-index: 10;
  }
  
  .accordion-item {
    border-radius: 6px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  }
  
  .accordion-item .accordion-item-title {
    position: relative;
    margin: 0;
    display: flex;
    width: 100%;
    cursor: pointer;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 14px 20px;
    box-sizing: border-box;
    align-items: center;
  }
  
  .accordion-item .accordion-item-desc {
    display: none;
    line-height: 22px;
    border-top: 1px dashed #ddd;
    padding: 10px 20px 20px;
    box-sizing: border-box;
  }
  
  .accordion-item input[type="checkbox"] {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
  }
  
  .accordion-item input[type="checkbox"]:checked~.accordion-item-desc {
    display: block;
  }
  
  .accordion-item input[type="checkbox"]:checked~.accordion-item-title .icon:after {
    content: "-";
    font-size: 20px;
  }
  
  .accordion-item input[type="checkbox"]~.accordion-item-title .icon:after {
    content: "+";
    font-size: 20px;
    color: var(--orange-color);
  }
  
  .accordion-item:first-child {
    margin-top: 0;
  }
  
  .accordion-item .icon {
    margin-left: 14px;
  }

  /*----------------benefits------------*/
  .benefits{
    background: rgb(2,2,51);
  }
  .benefits i{
    margin-right: 5px;
    background-color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 12px;
    line-height: 1;
  }
  .benefits .d-flex{
    font-size: 20px;
    background-color: rgba(243, 232, 232, 0.05);
    border-radius: 18px;
    padding: 10px;
    font-weight: 700;
    text-align: center;
  }




  /*-----------reponsive-----------*/
  @media only screen and (max-width: 768px) {
    .hero-section a , .common-cta-btn{
        background: var(--orange-color);
        padding: 15px 20px;
        color: #fff;
        font-size: 20px;
    }
    .sec-first .get-started-today{
          width: 100%;
}

.services .common-btn a{
    background-color: greenyellow;
    border-radius: 15px;
    padding: 7px 3px;
    font-size: 20px;
}
}
/* General Styles */
.header-pr {
    position: fixed;
    top: 0;
    padding: 10px;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.container-fluid {
    padding: 0 20px;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.dsk-logo img {
    max-height: 50px;
}

/* Navigation Styles */
.custom-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-list li {
    position: relative;
    margin-right: 20px;
}

.nav-list li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 10px 15px;
    transition: color 0.3s;
}

.nav-list li a:hover {
    color: var(--orange-color);
}

/* Dropdown Menu */
.sbmenu {
    position: relative;
}

.menu-dorpdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 280px;
}

.sbmenu:hover .menu-dorpdown {
    display: block;
}

.menu-dorpdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* .menu-dorpdown ul li {
    padding: 8px 15px;
} */

.menu-dorpdown ul li a {
    color: #333;
    display: block;
}

.menu-dorpdown ul li a:hover {
    color: var(--orange-color);
}

/* Right Buttons */
.right-end-btn {
    display: flex;
    align-items: center;
}

.btn-br {
    padding: 10px 15px;
    border-radius: 5px;
    transition: 0.3s;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: white;
}

.bg-btn2 { background: var(--orange-color); }
.bg-btn3 { background: #333; }

.btn-br:hover {
    opacity: 0.8;
}

/* Mobile Menu */
.hidedesktop {
    display: none;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
    .custom-nav {
        display: none;
    }
    
    .hidedesktop {
        display: inline-block;
    }

    .navm- .toggle {
        display: block;
        width: 30px;
        height: 30px;
        background: url('menu-icon.png') no-repeat center;
        background-size: cover;
    }
}

.section-services {	
	background-color: #e6edf7;
	color: #202020;
	padding-top: 115px;
    padding-bottom: 120px;
}

.section-services .header-section {
	margin-bottom: 34px;
}

.section-services .header-section .title {
	position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
	font-weight: 700;
    font-size: 32px;
}

.section-services .header-section .title:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background-color: var(--orange-color);
    border-radius: 3px;
}

.section-services .header-section .title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
    transform: translateX(30px);
	width: 10px;
	height: 3px;
	background-color: #504f93;
    border-radius: 3px;
}

.section-services .header-section .description {
	font-size: 14px;
    color: #282828;
}

.section-services .single-service {
    position: relative;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    overflow: hidden;
}

.section-services .single-service .content {
	position: relative;
	z-index: 20;
}

.section-services .single-service .circle-before {
    position: absolute;
    top: 0;
    right: 0px;
    transform: translate(40%, -40%);
    width: 150px;
    height: 150px;
    background-color: var(--orange-color);
    border: 6px solid #504f93;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 10;
    transition: all .6s;
}

.section-services .single-service:hover .circle-before {
	width: 100%;
	height: 100%;
	transform: none;
	border: 0;
	border-radius: 0;
	opacity: 1;
}

.section-services .single-service .icon {
	display: inline-block;
	margin-bottom: 26px;
    width: 70px;
    height: 70px;
    background-color: var(--orange-color);
    border-radius: 5px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    transition: all .3s;
}

.section-services .single-service:hover .icon {
	background-color: #fff;
	color: var(--orange-color);
}

.section-services .single-service .title {
    margin-bottom: 18px;
	font-weight: 700;
    font-size: 20px;
    transition: color .3s;
}

.section-services .single-service:hover .title {
	color: #fff;
}

.section-services .single-service .description {
    margin-bottom: 20px;
    font-size: 14px;
    transition: color .3s;
}

.section-services .single-service:hover .description {
	color: #fff;
}

.section-services .single-service a {
	position: relative;
	font-size: 18px;
    color: #202020;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
}

.section-services .single-service:hover a {
	color: #fff;
}

.section-services .single-service a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-color: var(--orange-color);
	transition: background-color .3s;
}

.section-services .single-service:hover a:after {
	background-color: #fff;
}
/* hero bottom section */
.border-strokeColor {
    --tw-border-opacity: 1;
    border-color: rgba(228, 228, 228, 1);
    border-color: rgba(228, 228, 228, var(--tw-border-opacity));
}

@media (min-width: 1200px) {
    .xl\:col-span-4 {
        grid-column: span 4 / span 4;
    }
}

@media (min-width: 576px) {
    .sm\:col-span-6 {
        grid-column: span 6 / span 6;
    }
}

.text-bodyText {
    --tw-text-opacity: 1;
    color: rgba(59, 74, 70, 1);
    color: rgba(59, 74, 70, var(--tw-text-opacity));
}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-mainTextColor {
    --tw-text-opacity: 1;
    color: rgba(6, 11, 30, 1);
    color: rgba(6, 11, 30, var(--tw-text-opacity));
}
.font-bold {
    font-weight: 700;
}

.after\:bg-bodyText::after {
    content: var(--tw-content);
    --tw-bg-opacity: 1;
    background-color: rgba(59, 74, 70, 1);
    background-color: rgba(59, 74, 70, var(--tw-bg-opacity));
}
.after\:w-\[50px\]::after {
    content: var(--tw-content);
    width: 50px;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.separator {
    width: 50px;
    height: 2px;
    background-color: #3B4A46;
}
.logo-container {
    display: flex;
    gap: 30px;
    align-items: center;
}
.logo-container img {
    max-width: 100px;
    height: auto;
}

/* Call button code  */
.floating_btn {
    position: fixed;
    bottom: 10px;
    left: 0px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    z-index: 1000;
  }
  
  @keyframes pulsing {
    to {
      box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
  }
  
  .contact_icon {
    background-color: #4b9bf7;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size:30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #4b9bf7;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
  }
  
  
  .text_icon {
    margin-top: 8px;
    color: #707070;
    font-size: 13px;
  }
  .contentss{
    height: 1000px;    
      line-height: 1.5;
      letter-spacing: 3px;
      font-size: 20px;
      text-decoration: underline;
      text-align: center;
      margin-top: 30px;
  }
  .go-top {
    position:fixed;
    bottom: 10%;
    right: 3%;
    padding:20px;
    display:none;
    cursor: pointer;
      -webkit-font-smoothing: antialiased;
  }
  .go-top:after {
    font-family: FontAwesome;
    content: "\f106";
      background-color: var(--orange-color);
      padding: 10px 15px;
    color: #6a6e7c;
    position: absolute; 
    bottom:10px;
    font-size: 28px;
  }
  
  .go-top-text {
      position: absolute;
      width: 60px;
      text-align: center;
      font-family: 'Questrial';
      line-height: 1.5;
      letter-spacing: 3px;
      font-size: 12px;
      
      margin: 20px 0 0 -4px;
  }
  
  .go-top:hover {
      transition: all .4s linear;
      transform: scale(1.1);
  }
  .sidebar {
    height: auto;
    width: 0px;
    position: fixed;
    text-align: center;
    top: 35vh;
    padding: 10px;
  }
  
  /* p i {
    left: 30px;
    position: relative;
    vertical-align: middle;
    text-align: center;
    font-size: 24px;
  } */
  
  .social {
    margin-left: -200px;
    width: 230px;
    padding: 0;
    display: inline-table;
    height: 0px;
    background-color: rgba(128, 128, 128, 0.73);
    -moz-transition-property: margin-left;
    -moz-transition-duration: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-property: margin-left;
    -ms-transition-duration: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-property: margin-left;
    -o-transition-duration: 0.2s;
    -o-transition-delay: 0.2s;
    -webkit-transition-property: margin-left;
    -webkit-transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s;
    box-shadow: 0px 0px 6px 0px #3E3D3D;
    cursor: pointer;
  }
  
  .social:hover {
    margin-left: -30px;
    width: 230px;
  }
  
  .facebook {
    background-color: #3b5998;
  }
  
  .twitter {
    background-color: #4099FF;
  }
  
  .google {
    background-color: #DD4B39;
  }
  
  .linkedin p i {
    left: 20px;
  }
  
  .google p i {
    left: 35px;
  }
  
  .youtube p i {
    left: 18px;
  }
  
  .youtube:hover {
    background-color: #E52D27;
  }
  
  .linkedin:hover {
    background-color: #0976B4;
  }