:root {
    --bg-light: #ffffff;
    --text-light: #434343;
    --bg-dark: #333;
    --text-dark: #f5f5f5;
    --primary: #73479e;
    --primary-rgb: 115, 71, 158;
    --primary-dark: #572E80;
    --secondary: #ed7753;
    /*--primary: #ac68e8;*/


    --radius-4: 4px;
    --radius-8: 8px;
    --radius-10: 10px;
    --radius-12: 12px;
    --radius-14: 14px;
    --radius-16: 16px;
    --radius-18: 18px;
    --radius-20: 20px;
    --radius-22: 12px;
    --radius-24: 24px;
    --radius-26: 26px;
    --radius-28: 28px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Entire scrollbar */
body::-webkit-scrollbar {
    width: 5px;
    /* yeh width badha do to scrollbar thick ho jayega */
}

/* Scrollbar track */
body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Scrollbar handle */
body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 8px;
}

/* Scrollbar handle on hover */
body::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}


/* styles.css */

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--bg-light);
    color: var(--text-light);
    transition: 0.3s ease, color 0.3s ease;
    /* width: 100vw;
  overflow-x: hidden;*/
}
html,body 
{
    scroll-behavior: smooth;
}


header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999999;
    padding-inline: 70px;
    /*padding-block: 10px;*/
    height: 10vh;
    display: flex;
    align-items: center;
    /*width: 100%;*/
    background: var(--bg-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}


.nav-icon {
    display: none;
}

 main {
    overflow-x: hidden;
 } 

.navbar {
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;


}

.logo {
    /*border: 1px solid red;*/
    flex: 0.5;

    .logo-img {
        width: 70px;
        /*border: 1px solid red;*/
    }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;


}

.nav-links {
    height: 100%;
    flex: 4;
}

.nav-links li {
    height: 100%;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--primary);
}

.nav-active {
    /*border: 1px solid red;*/
    /*overflow: hidden;*/
    padding: relative;
}

.nav-active a {
    color: var(--primary) !important;
}

.nav-active:after {
    position: absolute;
    content: '';
    right: 0;
    bottom: -5px;
    /*border: 1px solid darkred;*/
    /*border-radius: 50%;*/
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, transparent, var(--primary) 100%, transparent);
    /*aspect-ratio: 1;*/
    /*background: url('');*/
}





.nav-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex: 1;
    /*border:1px solid red;*/
}

.nav-icons a,
.search,
.theme-toggle i {
    cursor: pointer !important;
    color: var(--text-light);
    transition: color 0.3s ease;
}



.theme-toggle {
    background: none;
    border: none;
    outline: none;
}


.desktop-hamburger,
.hamburger {
    width: 28px;
    aspect-ratio: 1;
    /*border: 1px solid red;*/
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    cursor: pointer;
    /*background: red;*/
}

.desktop-hamburger span,
.hamburger span {
    /*border: 1px solid var(--bg-dark);*/
    border: 1px solid var(--primary);
    border-radius: 3px;
    position: relative;
    z-index: 2;
    display: block;

}

.hamburger {
    display: none;
    /*flex-direction: column;
  gap: 5px;*/
    cursor: pointer;
}

/*.hamburger span {
  width: 25px;
  height: 2.5px;
  background: var(--text-light);
  border-radius: 2px;
}*/

.dropdown-menue {
    position: relative;
    display: flex;
    flex-direction: column;
}

.sub-menue {
    position: absolute;
    /*bottom: -10vh;*/
    top: 3vh;
    min-width: 200px;
    left: 0;
    list-style: none;
    background: #fff;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: none;
    border-radius: 3px;

}

.dropdown-menue:hover .sub-menue {
    display: block;
}

.sub-menue li {
    line-height: 35px;
}



.chat-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.chat-widget .main-btn {
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/*  .chat-widget .pulse-ring {
      position: absolute;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: rgba(0, 123, 255, 0.4);
      z-index: 2;
    }*/

.chat-widget .options {
    position: absolute;
    bottom: 70px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
}

.chat-widget .option-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.chat-widget .option-btn:hover {
    background: var(--primary);
    color: #fff;
}

/*...............................................*/
.more-info-side {
    width: 20vw;
    height: 90vh;
    background: var(--primary);
    position: fixed;
    /*right: -100%;*/
    right: -20vw;
    bottom: 0;
    z-index: 999;
    transition: 0.5s;
}

/* .more-info-side.show
    {
      right: 0%;
      background: red;
    }
*/
/*.....................................................*/
.more-info-side {

    background: var(--text-dark);
    padding: 20px;
    box-sizing: border-box;
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.more-info-side .top-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.more-info-side .logo {
    font-weight: bold;
    font-size: 22px;
}

.more-info-side .icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.more-info-side .icons i {
    font-size: 18px;
    cursor: pointer;
}

.more-info-side .search-box {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    /*padding: 2px;*/
}

.more-info-side .search-box input {
    border: none;
    padding: 8px;
    flex: 1;
    outline: none;
}

.more-info-side .search-box .fa-magnifying-glass {
    background: #eee !important;
    padding: 8px !important;
    margin: 0px;
    color: var(--primary);
}

/*.more-info-side .auth {
  font-size: 14px;
  color: #555;
}*/

.more-info-side .menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.more-info-side .menu-item {
    cursor: pointer;
    font-size: 15px;
    padding: 6px 0;
}

.more-info-side .menu-item:hover {
    color: #007bff;
}

.more-info-side .toggle-dark {
    padding: 10px;
    background: #007bff;
    color: white;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.more-info-side .toggle-dark:hover {
    background: #0056b3;
}

.more-info-side a {
    color: var(--text-light);
    text-decoration: none;
}

.extra-featur-mobile {
    display: none ;
}

/*.....................................................*/
/* #about
    {
      height: 100vh;
    }*/
/*.....................................................*/

.signup-section {
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(10);
    /*padding: 40px 20px;*/
    display: none;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    
    position: fixed;

    z-index: 999000;

}

.signup-section * {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.signup-section .container {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    max-width: 900px;
    width: 70%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    position: relative;

}

.signup-section .left {
    /*background-color: var(--primary);*/
     background: linear-gradient(35deg, #8f3f91, #6e51c4);
    color: white;
    flex: 1 1 300px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.signup-section .right {
    flex: 1 1 400px;
    padding: 40px 30px;
}

.signup-section .left h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.signup-section .left img {
    max-width: 250px;
    margin-top: 30px;
}


.signup-section .right h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 25px;
    text-align: center;
    background: linear-gradient(to right, #8f3f91, #6e51c4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.signup-section .form-group {
    margin-bottom: 15px;
}

.signup-section .form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.signup-section .form-group input:focus {
    outline: none;
    border-color: #9a4c7c;

}

.signup-section .signup-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: linear-gradient(to right, #8f3f91, #6e51c4);
    color: white;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}

.signup-section .login-link, 
.signup-section .sigin-link {
    text-align: center;
    margin: 15px 0;
    font-size: 14px;
    color: #555;
}

.signup-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.signup-section .social-icons img {
    width: 36px;
    height: 36px;
    cursor: pointer;
}
.sign_login_hide
{
    position: absolute;
    top: 10px;
    left: 10px;

}
.sign_login_hide p  
{
    font-size: 20px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.05);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffff;
    transition: 1s;

}


.sign_login_hide p .fa-xmark 
{
    opacity: 0.4;
     transition: 1s;
}
.sign_login_hide p:hover 
{
    transform: rotate(360deg); 
}
.sign_login_hide p:hover .fa-xmark 
{
    opacity: 0.7;
}
.signup-otp-group
{
    display: flex;
    gap: 20px;
    justify-content: center;


}
.signup-otp-group input 
{
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
     text-align: center;

}
.otp-verify .left img
{
    max-width:200px;
    margin-top: 0;
}

.otp-verify .right p 
{
    text-align: center;
    margin-bottom: 15px;
}


/*.....................................................*/
#tsparticles {
    /*position: absolute;*/
    /*  width: 100%;
      height: 100%;*/
    background: radial-gradient(#382057, var(--primary-dark), var(--primary));
    /*z-index: -1;*/
}

/*.......................................................................*/


/*.switch input:disabled ~ label {
  opacity: 0.5;
  cursor: not-allowed;
}
*/

/**:not(input):not(textarea):not([contenteditable="true"]) {
  caret-color: transparent;
}*/
h1,
h2,
h3,
h4,
h5,
h6,
li,
span,
div,
table,
a {
    caret-color: transparent;
}

input,
textarea {
    caret-color: var(--primary);
}

.px-5 {
    padding-inline: 70px;
}

/*..........................footer start..................................*/
.footer {
    background-color: #0e0e0e;
    color: #fff;
    padding: 50px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-logo {
    width: 60px;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
}

.footer-col h4::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #8e2de2;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 15px;
    margin-top: 30px;
    font-size: 14px;
    color: #aaa;
}

/*..........................footer end..................................*/

.homeCarousel {
    width: 100%;
    height: 90vh;
    background: #fff;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /*background: #fff;*/
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /*background: linear-gradient(35deg,#FCFCFC,#DCDCDC);*/
    /*background: radial-gradient(#fff, #EFEFEF);*/
    /*background: url(../images/slide-bg.webp) ;*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hide by default */
.swiper-button-prev:after,
.swiper-button-next:after {
    opacity: 0;
}

.custom-prev,
.custom-next {
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    z-index: 10;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

/* Custom arrows */
.custom-prev {
    left: 10px;
    background-image: url('../images/icons/left-arrow.png');
}

.custom-next {
    right: 10px;
    background-image: url('../images/icons/right-arrow.png');
}

.homeCarousel .swiper-slide {
    display: flex;
    /*padding-inline: 20px;*/

    .content-side,
    .img-side {
        flex: 1;
    }


}

.homeCarousel .content-side {
    padding-inline: 50px;
}


.homeCarousel .img-side {
    /*background: url(../images/slide-img-side.webp);*/
    position: relative;
    height: 100%;
    /*border:1px solid red;*/

}

.slide1 .img-side .animatio_img,
.slide2 .img-side .animatio_img {
    position: absolute;
    height: fit-content;

}

.slide1 .circle,
.slide2 .circle {
    width: 150px;
    object-fit: cover;
    position: relative;
    top: -50px;
    animation: circle_rotate 15s linear infinite;
}

@keyframes circle_rotate {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(50deg);
    }

    50% {
        transform: rotate(0deg);
    }

    80% {
        transform: rotate(50deg);
    }

}

.slide1 .img-side .rocket {
    width: max(300px, 25vw);
    left: 100px;
    bottom: 50px;
    z-index: 2;
}

.slide1 .img-side .laptop {
    width: max(120px, 10vw);
    bottom: 0px;
    left: -120px;
    z-index: 3;
}

.slide1 .img-side .plan {
    width: max(100px, 7vw);
    bottom: 0px;
    right: 45%;
    z-index: 4;
}

.slide1 .img-side .work {
    width: max(150px, 20vw);
    bottom: 50px;
    right: 20%;
    z-index: 5;
}

.slide1 .img-side .equipment {
    width: max(150px, 40vw);
    top: 0px;
    left: -100px;
    z-index: 1;
}

/*slide 2 images size*/

.slide2 .img-side .rocket2 {
    width: max(200px, 12vw);
    left: 200px;
    bottom: 50px;
    z-index: 2;
    /*border: 1px solid red;*/

}

.slide2 .img-side .boy1 {
    width: max(200px, 18vw);
    left: -100px;
    bottom: 100px;
    z-index: 2;
    /*border: 1px solid red;*/

}

.slide2 .img-side .boy2 {
    width: max(180px, 10vw);
    right: 120px;
    bottom: 70px;
    z-index: 2;
    /*border: 1px solid red;*/

}



.homeCarousel .content-side .mini-title {
    font-size: 28px;
    font-weight: 400;
    color: var(--primary);
    text-transform: uppercase;
    line-height: 24px;
    text-align: left;

}

.homeCarousel .content-side h1 {
    font-size: 55px;
    color: #171717;
    /*color: transparent;*/
    text-align: left;
    margin-top: 10px;
    /*background: url(../images/logo.png);
    background-size: 150%;
    background-position: 250% 50%;
    background-repeat: no-repeat;
    background-clip: text;
    animation: animate-title 5s linear infinite;
    -webkit-text-stroke: 2px black; 
*/
}

/*  @keyframes animate-title{
    0%{
      background-position: 250% 50%;
    }
    100%
    {
      background-position: 50% 50%;
    }
  }*/
.homeCarousel .content-side .info {
    font-size: 24px;
    font-weight: 400;
    /*line-height: 24px;*/
    text-align: left;
    color: var(--text-light);
}

.homeCarousel .content-side .slider-button {
    margin-top: 50px;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    gap: 50px;
}

.homeCarousel .content-side .slider-button a:first-child {
    padding: 15px 20px;
    background: var(--primary);
    border-radius: var(--radius-28);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.homeCarousel .content-side .slider-button a:last-child {
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;

}

.homeCarousel .content-side .slider-button a .icon {
    width: 55px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 0 3px 1px var(--primary);
    position: relative;
}

.homeCarousel .content-side .slider-button a .icon:after {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    box-shadow: 0 0 3px 1px var(--primary);
    animation: pulse-effect 2s linear infinite;
    opacity: 1;

}

@keyframes pulse-effect {
    from {
        scale: 1;
        opacity: 1
    }

    to {
        scale: 1.5;
        opacity: 0
    }
}

.homeCarousel .content-side .slider-button a .icon .fa-circle-play {
    font-size: 25px;
}

/*...............................................  */
/*home page - about section start*/
.page-padding {
    padding-inline: 80px;
}

#about {
    display: flex;
}

#about .content {
    flex: 1;
}

#about .img-side {
    flex: 1;
}

.about-pra {
    margin-top: 20px;
    text-align: justify;

}

main {
    scroll-behavior: smooth;
}
#about .img-side img{
    width: 100%;
    /*transform: scale(0.7);*/
    object-fit: cover;
}






.btn-custom {
    margin-top: 20px;
    padding: 15px 20px;
    background: var(--primary);
    border-radius: var(--radius-28);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-custom::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: glasseffect 1.5s linear infinite;
    opacity: 0;


}

@keyframes glasseffect {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 1;
    }
}

.section_mini_title {
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--primary);
}

.section_title {
    font-size: 40px;
    font-family: "Rubik", sans-serif;
    font-weight: 500;

}

.section_title span {
    color: var(--secondary);
}

.all-text {
    font-size: 16px;
    font-family: "Poppins", Sans-serif;
    font-weight: 400;
    line-height: 1.7em;
    color: #2F2F2F;

}

/*home page - about section end*/

/*home page - our-services section start*/
#our-services {
    /*background: rgba(0, 0, 0, 0.05);*/
    background: #f2f2f2;
    /*background:*/
    /*radial-gradient(rgba(106,60,255,0.12), rgba(255,110,199,0.1));*/
    /*background: linear-gradient(130deg,black,var(--primary),var(--primary-dark),black);*/
    /*background: url(../images/company-background1.jpg);*/
    /*background-attachment: fixed;*/
    /*background-size: cover;
  background-repeat: no-repeat;*/
    position: relative;

}

/*#our-services:after 
{
  width: 100%;
  height: 100%;
  content: '';
  top: 0;
  left: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
}*/
#our-services .section_title {
    text-align: center;
    /*color: #fff;*/
    position: relative;
    z-index: 5;
}

.service-mini-title {
    text-transform: capitalize;
    font-size: 18px;
    text-align: center;
    /*color: #fff;*/
    font-weight: 400;
    position: relative;
    z-index: 5;
}

.mini2-title {
    text-transform: capitalize;
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
    font-weight: 400;
}

#our-services .all-services {
    width: 100%;
    /*border: 1px solid red;*/
    display: grid;
    padding-inline: 50px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(380px, auto));
    gap: 50px;
    box-sizing: border-box;
    margin-top: 50px;
    position: relative;
    z-index: 4;
}

#our-services .all-services .service-box {
    /*border: 1px solid #fff;*/
    border-radius: var(--radius-8);
    display: flex;
    overflow: hidden;
    flex-direction: column;
    box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3);


}

#our-services .all-services .service-box .service-header,
#our-services .all-services .service-box .service-footer {
    flex: 1;
}

#our-services .all-services .service-box .service-header {
    background: #fff;
    position: relative;

}
#our-services .all-services .service-box .service-header:after {
    width: 100%;
    height: 50%;
    position: absolute;
    content: '';
    background: #fff;
    bottom: 0;
    border-bottom-right-radius: 40px;

}

#our-services .all-services .service-box .service-header:before {
    width: 100%;
    height: 50%;
    position: absolute;
    content: '';
    background: var(--primary);
    bottom: 0;
}

#our-services .all-services .service-box .service-footer {
    /*background: var(--primary);*/
    background: linear-gradient(to top, #8f3f91 0%, var(--primary),var(--primary));
    position: relative;
}
#our-services .all-services .service-box .service-footer:after {
    width: 100%;
    height: 50%;
    position: absolute;
    content: '';
    background: var(--primary);
    border-top-left-radius: 40px;
    top: 0;
}

#our-services .all-services .service-box .service-footer:before {
    width: 100%;
    height: 50%;
    position: absolute;
    content: '';
    background: #fff;
    top: 0;

}

#our-services .all-services .service-box .content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    /*justify-content: space-between;*/
    /*border:1px solid red;*/
}

#our-services .all-services .service-box .content img {
    width: 150px;
    object-fit: cover;
    transition: 0.5s;

}

#our-services .all-services .service-box .content h3 {
    font-size: 28px;
    font-weight: 700;
    transition: 0.5s;
    background-size: 300%;
    background-position: 120% 50%;
   /* -webkit-background-clip: text;
    background-clip: text;*/
}

/*#our-services .all-services .service-box:hover .content h3 {
    background-position: 50% 50%;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
    -webkit-text-fill-color: transparent;
}*/

/* Individual images */
/*h3.design-services {
    background-image: url(../images/icons/design-services.webp);
}

h3.website-development {
    background-image: url(../images/icons/website-development.webp);
}

h3.digital-marketing {
    background-image: url(../images/icons/digital-marketing.webp);
}

h3.content-marketing {
    background-image: url(../images/icons/content-marketing.webp);

}

h3.app-development {
    background-image: url(../images/icons/app-development.webp);

}

h3.social-media-marketing {
    background-image: url(../images/icons/social-media-marketing.webp);

}*/


#our-services .all-services .service-box .content.footer-content {
    color: #fff;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    text-align: center;
}

#our-services .all-services .service-box .content.footer-content p {
    font-size: 16px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

#our-services .all-services .service-box .content.footer-content a {
    color: #000;
    background: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.5s;
}

#our-services .all-services .service-box .content.footer-content a:hover {
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
}

/*#our-services .all-services .service-box:hover .content img {
    transform: rotate(20deg);
}*/

/*home page - our-services section end*/

/*why-choose section start*/

#why-choose .section_title {
    text-align: center;
}

/* WHY CHOOSE — layout */
#why-choose {
    --card-bg: #ffffff;
    --card-br: 16px;
    --card-shadow: 0 10px 25px rgba(16, 24, 40, 0.06);
    --brand-1: #6a3cff;
    /* adjust to your brand gradient start */
    --brand-2: #ff6ec7;
    /* adjust to your brand gradient end */
    --text-700: #0f172a;
    --text-500: #475569;
    --ring: 2px solid transparent;
}

#why-choose .section_title {
    text-align: center;
}

#why-choose .section_mini_title {
    text-align: center;
}

/* two-column section frame using your existing nodes */
#why-choose .why-image-sec,
#why-choose .why-content {
    width: 100%;
}

.why-choose-body {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 992px) {
    .why-choose-body {
        grid-template-columns: 1fr;
    }

    #why-choose .why-image-sec {
        order: 2;
    }

    #why-choose .why-content {
        order: 1;
    }
}

/* optional illustration background if you don't place an <img> */
#why-choose .why-image-sec {
    min-height: 340px;
    border-radius: 24px;
    background:
        radial-gradient(1200px 300px at -10% 0%, rgba(106, 60, 255, 0.12), transparent 60%),
        radial-gradient(800px 260px at 110% 100%, rgba(255, 110, 199, 0.1), transparent 60%),
        linear-gradient(180deg, #faf8ff, #ffffff);
    position: relative;
    box-shadow: var(--card-shadow);
}

#why-choose .why-image-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* grid of cards INSIDE .why-content using .why-choose */
#why-choose .why-content .why-choose {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 1100px) {
    #why-choose .why-content .why-choose {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    #why-choose .why-content .why-choose {
        grid-template-columns: 1fr;
    }
}

/* card */
#why-choose .why-item {
    background: var(--card-bg);
    border-radius: var(--card-br);
    padding: 22px 18px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(2, 6, 23, 0.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

#why-choose .why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.10);
    border-color: rgba(106, 60, 255, 0.25);
}

/* icon chip */
#why-choose .why-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 22px;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color: #fff;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(106, 60, 255, 0.35);
    font-size: 35px;
}

/* headings & text */
#why-choose .why-item h3 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.3;
    color: var(--text-700);
    font-weight: 700;
}

#why-choose .why-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-500);
}

/* focus styles for a11y, if items become links later */
#why-choose .why-item:focus-within {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 4px rgba(106, 60, 255, .18);
}

/*....................................................*/

/*why-choose section end*/


/*get in touch section start*/
.call-to-action-container {
    display: flex;
    background: var(--primary-dark);
    height: 50vh;
    border-radius: var(--radius-20);

}

.getintouch-data {
    flex: 1;
    padding: 50px;
    /*border:1px solid red;*/
}

.getintouch-data h4 {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
}

.getintouch-data p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
}

.getintouch-data .cta-btn {
    margin-top: 30px;
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
}

.call-to-action-container .mockup {
    height: 100%;
    width: 100%;
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    /*border:1px solid red;*/
}

.call-to-action-container .mockup::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0px;
    /* adjust for spacing */
    transform: translateX(-50%);
    width: 70%;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    filter: blur(15px);
    z-index: 1;
    transition: 0.5s;
}

.call-to-action-container .mockup img {
    object-fit: cover;
    width: 30vw;
    position: absolute;
    /*right: 0;*/
    top: -80px;
    /*border:2px solid blue;*/
    transition: 0.5s;

}

.brand-color {
    color: var(--secondary);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.call-to-action-container:hover .mockup img {
    top: -100px;
}

.call-to-action-container:hover .mockup:after {
    background: rgba(0, 0, 0, 0.15);
}

/*get in touch section end*/

/*fact section start*/
/*#facts
{
   display: grid;
   border: 1px solid red;
   grid-template-columns: repeat(4, 1fr);
   grid-template-rows: 300px;
   gap: 20px;
}
.fact-box
{
   border: 1px solid rgba(2, 6, 23, 0.06);
  box-shadow: 0 10px 25px rgba(16, 24, 40, 0.06);
  border-radius: var(--radius-4);

}*/

#facts {
    /*display: grid;*/
    /*border: 1px solid red;*/
    /*grid-template-columns: repeat(2, 1fr);*/
    /*grid-template-rows: 300px;*/
    /*gap: 20px;*/
    /* background: url(../images/dot-background.webp);
   background-size: 100%;
   background-repeat: no-repeat;
   background-position: center;*/
    display: flex;
    justify-content: space-between;
    background: #f2f2f2;
    animation: bg_animate 8s linear infinite;
    overflow: hidden;
}

/*@keyframes bg_animate {
  0%{
     background-size: 100%;
  }
  100%
  {
    background-size: 110%;
  }
}*/

.fact-all-box {
    display: grid;
    /*border: 1px solid red;*/
    grid-template-columns: repeat(4, minmax(200px, 300px));
    grid-template-rows: minmax(200px, 300px);
    /*gap: 40px;*/
    grid-row-gap: 30px;
    gap: 8px;
    width: 100%;
    /*gap: 50px;*/
    justify-content: space-evenly;
}

.fact-all-box .fact-box {
    border: 1px solid rgba(2, 6, 23, 0.06);
    box-shadow: 0 10px 25px rgba(16, 24, 40, 0.06);
    border-radius: var(--radius-4);
    /*width: 300px;*/
    /*height: 210px;*/
    background: #fff;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.fact-all-box .fact-box img {
    width: 100px;
    object-fit: cover;
}

.fact-all-box .fact-box .imag-70 {
    width: 80px;
}

.fact-all-box .fact-box h3 {
    font-size: 28px;
}

.fact-all-box .fact-box h4 {
    font-weight: 400;
}

/*.fact-all-box .first-row
{
  display: flex;
  gap: 50px;
}
.fact-all-box .first-row
{
  display: flex;
  gap: 50px;
  transform: translateX(-50px);
}
.fact-all-box .second-row
{
  display: flex;
  gap: 50px;
  transform: translateX(50px);
}*/
/*..................................................*/
.development-step {
    /*border:1px solid red;*/
    display: flex;
    justify-content: center;

}

.main-line {
    height: 100%;
    width: 4px;
    background: #ccc;
    position: relative;
    border-radius: 5px;
    --lineHeight: 0%;
}

.main-line:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--lineHeight);
    background: #572e80;
    /*box-shadow: 0 0 1px 1px #4ae8e0;*/
    content: '';
    animation: line 10s linear infinite;
}

.time-line.active_fill:after {
    background: red !important;
}

.time-line {
    position: absolute;
    width: 300px;
    min-height: 70px;
    /*border:1px solid red;*/
    padding-left: 20px;
    border: 1px solid rgba(2, 6, 23, 0.06);
    box-shadow: 0 10px 25px rgba(16, 24, 40, 0.06);
    display: flex;

    border-radius: var(--radius-4);
    justify-content: center;
    flex-direction: column;

}



.time-line:before {
    width: 15px;
    height: 15px;
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    background: #ccc;
    border-radius: 50%;
    border: 2px solid var(--primary);
    z-index: 10;

    /*animation: line-fill 10s linear infinite;*/
}

.time-line1 {
    top: 0;

}

.time-line2 {
    top: 100px;
    left: -300px;
}

.time-line3 {
    top: 200px;
    left: 0px;
}

.time-line4 {
    top: 300px;
    left: -300px;
}

.time-line5 {
    top: 400px;
    left: 0px;
}



.time-line1:before,
.time-line3:before,
.time-line5:before {

    left: -8px;

}

.time-line2:before,
.time-line4:before {
    right: -12px;
}

@keyframes line {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

/*@keyframes line-fill{
  0%{
    background: #ccc;
  }
  5%{
     background: lime;
  }
}*/
.time-line.active_fill {
    background: #fff;
}

.time-line.active_fill::after {
    background: lime !important;
}

/*fact section end*/

/*project-process start*/
#project-process {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    min-height: 90vh;
}

.process-plan {
    position: relative;
    /*height: 80vh;*/
}

/*project-process end*/


.swiper-industry {
    width: 100%;
    height: 300px;
    /* Adjust height as needed */
}

.swiper-industry .swiper-pagination-bullet-active {
    background: var(--primary);
}

.swiper-industry .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-industry .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.swiper-industry .card {
    display: flex;
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    border-radius: var(--radius-8);
}

.swiper-industry .card .information {
    flex: 1.2;
}

.swiper-industry .card .information .name {
    display: flex;
    gap: 10px;
    align-items: center;
}

.swiper-industry .card .information .name h4 {
    font-weight: 500;
    /*font-family: 'Poppins', sans-serif;*/
    font-family: "Open Sans", sans-serif;
    color: #000;
    font-size: 18px;
    margin-bottom: 8px;
}

.swiper-industry .card .information ul {
    list-style: none;
    margin-top: 8px;
}

.swiper-industry .card .information ul li {
    font-size: 10px;
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: center;
    line-height: 25px;
    letter-spacing: 1px;

}

/* .swiper-industry .card .information a {} */

.swiper-industry .card .information ul li .tick {
    width: 12px;
    height: auto;
    object-fit: cover;
}

.swiper-industry .card .information .button {
    display: flex;
    gap: 3px;
    width: fit-content;
    font-size: 9px;
    background: #131d6a;
    color: #fff;
    border-radius: 20px;
    padding: 3px 8px;
    text-decoration: none;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    letter-spacing: 1px;
    /*border: 1px solid red;*/
    align-items: center;

}

/* .swiper-industry .card .information .button span {} */

.swiper-industry .card .information .arrow2 {
    width: fit-content;
    height: 20px;
    object-fit: cover;
    /*border:1px solid blue;*/
}

.swiper-industry .card .icon {
    width: 38px;
    height: auto;
    object-fit: cover;
}


.swiper-industry .card .img {
    /*flex: 1;*/
    display: flex;
    align-items: center;
    width: 40%;
}

.swiper-industry .card .img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


#home-conatact {
    /*display: flex;*/
    /*border:1px solid red;*/
    background: #f2f2f2;

}



.contact-body {
    display: flex;
}

.home-contact-header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 9;

}

.home-contact-header h2,
.home-contact-header .section_title {
    text-align: center !important;
}

.map-box {
    flex: 1;

}

.form-box {
    flex: 1;
    /*border: 1px solid blue;*/
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    padding: 30px 20px;
    border-radius: 10px;



}

.contact-form input {
    height: 40px;
    font-size: 16px;
    padding: 5px;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
    outline: none;
    background: none;
    font-weight: 400;



}

.contact-form textarea {
    border-radius: 5px;
    font-size: 16px;
    padding: 5px;
    border-radius: 2px;
    border: none;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
    outline: none;
    font-weight: 400;
    background: none;


}

.contact-form input:focus {
    box-shadow: 0 0 3px 1px var(--primary);
    background: rgba(255, 255, 255, 0.2);
}

.contact-form textarea:focus {
    box-shadow: 0 0 3px 1px var(--primary);
    background: rgba(255, 255, 255, 0.2);
}

.contact-form input[type=submit] {
    color: var(--primary);
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.5s;
}

.contact-form input[type=submit]:hover {
    background: var(--primary);
    color: #fff;
}

/*.required::after {
    content: "*";
    color: red;
  }*/
.required::placeholder:last-child {

    color: red;
}

iframe {
    border-radius: var(--radius-8);
}

.contact-title {
    text-align: center;
    font-size: 24px;
    color: var(--primary);
    font-family: "Rubik", sans-serif;
    font-weight: 400;
}











/* Responsive Design for different screen sizes 
        @media (max-width: 1024px) {
            .swiper-industry .swiper-slide {
                width: 33.33%; /* 3 images visible on laptop */


@media (max-width: 768px) {
    .swiper-industry .swiper-slide {
        width: 50%;
        /* 2 images visible on tablet */
    }
}

@media (max-width: 480px) {
    .swiper-industry .swiper-slide {
        width: 100%;
        /* 1 image visible on mobile */
    }
}


/*............................................................................................................................*/
.subheader {
    min-height: 30vh;
    background: linear-gradient(to right, #1a0029, #051954);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    flex-direction: column;
}

.subheader h2,
.subheader h1 {
    font-size: 32px;
    font-weight: 400;
    font-family: "Rubik", sans-serif;
    margin-bottom: 5px;
    text-align: center;
}

.subheader p {
    min-width: 70vw;
    max-width: 50vw;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
}

/*......................................................................................................*/
/*contact page style start*/
#mission-vission {
    display: grid;
    width: 100%;
    min-height: 50vh;
    background: #f2f2f2;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: min-height(400px);
    gap: 15px;
}

#mission-vission .box {
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(2, 6, 23, 0.06);
    position: relative;
    width: 100%;
    height: 100%;
    padding: 8px 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

#mission-vission .box h2 {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    margin-bottom: 8px;

}

#mission-vission .box p {
    text-align: justify;
}


#mission-vission .box .img-circle {
    position: absolute;
    left: 50%;
    top: -50px;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(2, 6, 23, 0.06);
    border-radius: 50%;
    overflow: hidden;
    background: #f2f2f2;
    padding: 3px;

}

#mission-vission .box .img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: 0.5s;
}

#mission-vission .box:hover .img-circle img {
    transform: scale(1.1);

}

/*contact page style end*/


/*testimonial start*/
.testimonial-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#testimonial-section {
    min-height: 50vh;
    /*border:1px solid red;*/

}

.testimonial {
    margin-top: 5vh;
    width: 100%;
    height: 100%;
    /*border:1px solid blue;*/
    padding-top: 10px;
    padding-bottom: 30px;
}

.testimonial .swiper-pagination-bullet-active {
    background: var(--primary);
}

.testimonial .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    display: flex;
    flex-direction: column;
    padding: 15px 10px;
    /*border:1px solid gold;*/
}

.testimonial .swiper-slide .profile {
    /*border:1px solid blue;*/
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
}

.testimonial .swiper-slide .profile .name-box {
    /*border:1px solid red;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
    flex: 1.4;

}

.testimonial .swiper-slide .profile .test-image {
    flex: 0.6;

}

.testimonial .swiper-slide .profile .name-box h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    font-family: "Rubik", sans-serif;
}

.testimonial .swiper-slide .profile .name-box h5 {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
}


.testimonial .swiper-slide .profile img {
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial .swiper-slide p {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    text-align: left;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

/*testimonial end*/

/*our clients start*/
.swiper-clients-logo {
    width: 100%;
    height: 200px;
    /* Adjust according to your logo size */
    overflow: hidden;
}

.swiper-clients-logo .swiper-wrapper {
    display: flex;
    transition-timing-function: linear !important;
    /* Smooth continuous scroll */

}

.swiper-clients-logo .swiper-slide {
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
    /*height: 100px;*/
    border-radius: 3px;
    cursor: pointer;
}

.swiper-clients-logo .swiper-slide img {
    width: auto;
    height: 100px;
    /* Adjust height of logos */
    margin-right: 20px;
    /* Add spacing between logos */
}

.our-clients-header {
    display: flex;
    justify-content: center;
}

/*our clients end*/


/*services page start*/
#services {
    display: flex;
    gap: 30px;
}

#services .content {
    flex: 1;
    overflow:hidden ;

}

#services .img-side {
    flex: 1;
}

#services .img-side img {
    width: 100%;
    object-fit: cover;
}

#services-part {

    background: #f2f2f2;
}

.services-box {
    display: grid;
    width: 100%;

    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: min-height(400px);
    gap: 15px;
    grid-row-gap: 60px;

}


.services-box .box {
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(2, 6, 23, 0.06);
    position: relative;
    width: 100%;
    min-height: 30vh;
    padding: 8px 20px;
    padding-bottom: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.services-box .box h2 {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    margin-bottom: 8px;
    margin-top: 50px;
    font-size: 22px;

}
.sub-services-box
{
     grid-row-gap: 30px;
     grid-column-gap: 30px;
}
.sub-services-box .box
{
     padding: 8px 20px;

     background: none;
      border: 1px solid #ffff;
      box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
      border-radius: var(--radius-8);
}
.sub-services-box .box h2
{
     margin-top: 0px;
}

.services-box .box p {
    text-align: justify;
}

.services-box .box ul {
    list-style: none;
}

.services-box .box ul li {
    line-height: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sub-services-box .box ul li {
    border: none;
    position: relative;
    display: flex;
    margin-left: 10px;
}

.sub-services-box .box ul li:before {
    position: absolute;
    content: '';
    left: -20px;
    top: 40%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    /*background: #000;*/
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(-45deg);
}

.services-box .box a {
    /*margin-top: 8px;*/
    color: var(--primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    font-family: "Rubik", sans-serif;
    padding: 8px 12px;
    transition: 0.5s;
    border:1px solid var(--primary);
    border-radius: 3px;
}
.services-box .box a:hover  
{
    color: #fff;
    background: var(--primary);
}
.services-box .box .action-button {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.services-box .box .services-inquery-button
{
   /* color: var(--primary);
    border: 1px solid var(--secondary);
    border-radius: 20px;*/
    /*padding: 8px 12px;*/
    background: var(--primary);
    color: #fff;
    transition: 0.5s;
}
.services-box .box .services-inquery-button:hover  
{
    background: none;
    color: var(--primary);
}
.services-box .box .img-circle {
    position: absolute;
    left: 50%;
    top: -50px;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(2, 6, 23, 0.06);
    border-radius: 50%;
    overflow: hidden;
    background: #f2f2f2;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.services-box .box .img-circle img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    /*border-radius: 50%;*/
    transition: 0.5s;
}

.services-box .box:hover .img-circle img {
    transform: scale(1.1);

}

.title-section {
    padding-bottom: 50px;
}

.title-section .section_title {
    text-align: center;
}

.title-section .section_mini_title {
    text-transform: capitalize;
    font-size: 18px;
    text-align: center;
    /* color: #fff; */
    font-weight: 400;
    position: relative;
    z-index: 5;
    color: var(--primary);

}

/*services page end*/

/*digital impact section start*/
#service-info-slide-section {
    min-height: 50vh;
    /*border:1px solid red;*/

}

.service-info-slide {
    margin-top: 5vh;
    width: 100%;
    height: 100%;
    /*border:1px solid blue;*/
    padding-top: 10px;
    padding-bottom: 30px;
}

.service-info-slide .swiper-pagination-bullet-active {
    background: var(--primary);
}

.service-info-slide .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    display: flex;
    flex-direction: column;
    padding: 15px 10px;
    /*border:1px solid gold;*/
    min-height: 30vh;
    border-radius: 5px;
}

.service-info-slide .swiper-slide .profile {
    /*border:1px solid blue;*/
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
}

.service-info-slide .swiper-slide .profile .name-box {
    /*border:1px solid red;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
    flex: 1.4;

}

.service-info-slide .swiper-slide .profile .test-image {
    flex: 0.6;

}

.service-info-slide .swiper-slide .profile .name-box h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    font-family: "Rubik", sans-serif;
}

.service-info-slide .swiper-slide .profile .name-box h5 {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
}


.service-info-slide .swiper-slide .profile img {
    display: block;
    width: 70px;
    height: 70px;
    /*border-radius: 50%;*/
    object-fit: cover;
}

.service-info-slide .swiper-slide p {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    text-align: left;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

/*digital impact section end*/

/*why choose zaarih digital start*/
#why-choose {

    display: flex;
    justify-content: space-between;
    background: #f2f2f2;
    animation: bg_animate 8s linear infinite;
    overflow: hidden;
    flex-direction: column;
}


.why-choose-all-box {
    display: grid;
    /*border: 1px solid red;*/
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: minmax(200px, 300px);
    /*gap: 40px;*/
    grid-row-gap: 30px;
    gap: 50px;
    width: 100%;
    /*gap: 50px;*/
    justify-content: space-evenly;
}

.why-choose-all-box .why-choose-box {
    border: 1px solid rgba(2, 6, 23, 0.06);
    box-shadow: 0 10px 25px rgba(16, 24, 40, 0.06);
    border-radius: var(--radius-4);
    /*width: 300px;*/
    /*height: 210px;*/
    background: #fff;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;

}



.why-choose-all-box .why-choose-box .imag-150 {
    width: 150px;
    object-fit: cover;
}

.why-choose-all-box .why-choose-box h3 {
    font-size: 25px;
    text-align: center;
    font-weight: 500;
}

.why-choose-all-box .why-choose-box h4 {
    font-weight: 400;
    text-align: center;
}

/*why choose zaarih digital end*/

/*faq section start*/
.service_Faq_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


.faq-section {
    width: 100%;
    margin: auto;
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service_Faq_box .img-section {
    width: 100%;
    /*border: 1px solid red;*/
}

.service_Faq_box .img-section img {
    width: 100%;
    object-fit: cover;
}


.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    margin-top: 10px;
    color: #444;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Arbitrary large value for transition */
}

/*faq section end*/

/*services name section animation wala start*/

#services-name {
    min-height: 70vh;
    background: linear-gradient(to right, #1a0029, #041750);
    overflow-x: hidden;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
}

#services-name h1 {
    color: #fff;
    font-size: 25vw;
    text-wrap: nowrap;

    padding: 0 !important;
    /*border:1px solid red;*/
    height: fit-content;
    display: flex;
    align-items: center;
    margin-top: -100px;
}

/*services name section animation wala end*/


/*services page form design start*/
#services-inquery {
    position: relative;
    min-height: 100vh;
}

#services-inquery .bg-container {
    width: 100%;
    min-height: 70vh;
    /*background: red;*/
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(../images/bg111.webp);
    /*background: linear-gradient(var(--secondary),var(--primary));*/
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
#services-inquery .bg-container-bottom {
    width: 100%;
    height: 20vh;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
}

.form-section {
    max-width: 700px;
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(3px);
    z-index: 6;
    transition: background 0.5s;

}
.form-section:hover 
{
     background: rgba(255, 255, 255, 0.2);
}


.form-section p {
    font-size: 16px;
    color: #666;
    text-align: center;
    /*margin-bottom: 20px;*/
}

.form-section input[type="text"],
.form-section input[type="email"],
.form-section textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #ffff;
    background: none;
    font-family: sans-serif;
    caret-color: var(--secondary);
}
.form-section input::placeholder,.form-section textarea::placeholder
{
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 300 !important;
    font-family: sans-serif;
}
.form-section input[type="text"]:focus,
.form-section input[type="email"]:focus,
.form-section textarea:focus {
    border-color: #ff8a00;
    outline: none;
}

.form-section textarea {
    height: 120px;
    resize: vertical;
}
.form-section input:focus {
   
    background: rgba(255, 255, 255, 0.1);
}

.form-section button {
    background-color: var(--secondary);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-section button:hover {
    background-color: var();
}

/*services page form design end*/


/*this is nav enquiry btn start*/
.nav-btn {
    position: relative;
    padding-inline: 20px;
    padding-block: 10px;
    background: var(--primary);
    border-radius: var(--radius-28);
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    float: right;
    display: flex;


}



.nav-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: glasseffect 1.5s linear infinite;
    opacity: 1;
}

@keyframes glasseffect {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}


/*this is nav enquiry btn end*/


/*services tab code start */
/* Accordion styles */
.accordion-container
{
    /*min-height: 70vh;*/
    /*border: 1px solid red;*/
    display: flex;
}

.accordion-container .accordion-desktop
{
    flex: 2;
    /*border:1px solid green;*/
}
.accordion-container .accordion  
{
    /*position: relative;*/
    flex: 1;
}
.accordion .accordion-item {
    /*display: flex;*/
    /*gap: 20px;
    overflow: hidden;*/
    /*position: absolute;*/
    /*margin-block: 10px;*/
}
/*.accordion .accordion-item:nth-child(1)
{
    top: 50px;
}
.accordion .accordion-item:nth-child(2)
{
    top: 100px;
}*/
.accordion-item button {
    max-width: 400px;
    width: 100%;
    display: flex;
    border: none;
    background: #fff;
    padding: 15px;
    transition: 0.5s;
    font-size: 16px;
   font-family: "Rubik", sans-serif;
   color: #2D2D2D;
   position: relative;
   padding-right: 30px;
   height: 50px;
}
/* Style for the accordion header */


/* Add icon after the button text */
.accordion-item button:after {
    position: absolute;
    top: 50%;
    right: 10px;
    content: '\f067'; /* Unicode for the Font Awesome minus icon */
    font-family: 'Font Awesome 5 Free'; /* Use Font Awesome 5 */
    font-weight: 900; /* Ensure the icon is bold */
    font-size: 15px; /* Size of the icon */
    color: #000; /* Icon color */
    transform: translateY(-50%); /* Center icon vertically */
    cursor: pointer;
}

/* Active state changes the icon */
.accordion-item button.active-accordion:after {

    content: '\f068'; /* Unicode for the Font Awesome plus icon */
}

.accordion-item button:hover 
{
    background: #f2f2f2;
}

.accordion-item button.active-accordion
{
    
    background: #DBDADA;
}

.accordion .accordion-content 
{
    display: none;
    /*background-color: #e8f0fe;*/
    transition: max-height 0.3s ease-out;
    
}

.accordion-desktop
{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.accordion-desktop .img-box
{
    /*flex: 1;*/
    /*border: 1px solid orange;*/
}
.accordion-desktop .content-box
{
    /*flex: 1;*/
    /*border: 1px solid blue;*/
}
.accordion-desktop .img-box img  
{
    width: 80%;
    object-fit: cover;
}
.accordion-desktop .content-box p 
{
    line-height: 30px;
}
/*services tab code end */

/*all-services-slide start*/
#all-services-slide
{
    background: var(--primary);
    padding-block: 15px;
  /*  display: flex;
    gap: 50px;*/
    width: 100%;
    overflow: hidden;

}
#all-services-slide a 
{
    color: #fff;
    font-size: 25px;
    text-transform: uppercase;
    text-decoration: none;
    text-wrap: nowrap;
    width: fit-content;
    /*border: 1px solid red;*/

}
.all-services-slider .swiper-wrapper
{
   transition-timing-function:linear !important;
   display: flex;
   gap: 50px;
}
.all-services-slider .swiper-wrapper .swiper-slide
{
    width: fit-content;
}
/*all-services-slide end*/

/*magic-scroll start*/
#magic-scroll  
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(150px,40vh));
    gap: 20px;
    /*min-height: 70vh;*/
    width: 100%;
    overflow: hidden;

}
#magic-scroll .img-box
{
    /*border: 1px solid red;*/
}
#magic-scroll .img-box img  
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*object-position: top;*/
    border-radius: 3px;
}
/*magic-scroll end*/
/*contact page style start*/
#page-conatact
{
    background: url(../images/contact-background.webp) ;
    background-size: cover;
    background-position: right;
    position: relative;
}
#page-conatact:after 
{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #fff 40%, transparent);
    z-index: 4;
}



#contact-page-header
{
    display: flex;


}
#contact-page-header .get-in-touch-text
{
    flex: 1;
}
#contact-page-header .get-in-touch-img
{
     flex: 1;
}
.contact-page
{
    display: flex;
    position: relative;
    z-index: 8;
}

.contact-page .contact-box
{
    flex: 1;
}
.contact-page .form-box
{
    flex: 1;
    display: flex;
    justify-content: center;
}
.contact-page .form-box form 
{
    width: 70%;
    /*border:1px solid #9a4c7c;*/
    /*box-shadow: 0 0 1px 0.5px #9a4c7c;*/
    box-shadow: 0 0 3px 1px var(--primary);

}
#contact-page-header .get-in-touch-text p:first-child 
{
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-light);

}
#contact-page-header .get-in-touch-text .info
{
      font-size: 22px;
      margin-top: 20px;
      color: var(--text-light);
}
#contact-page-header .get-in-touch-text a  
{
    margin-top: 20px;
    text-decoration: none;
    display: block;
    width: fit-content;
    border-radius: 20px;
    padding: 15px 20px;
    background: var(--primary);
    color: var(--text-dark);
}
#contact-page-header .get-in-touch-text h2 
{
    font-size: 48px;
}

.contact-page table
{
     border-collapse: collapse;
}  
.contact-page table i  
{
    font-size: 35px;
    color: var(--primary);
}
.contact-page table tr td:first-child 
{
    width: 50px;
    /*border: 1px solid red;*/
}
.contact-page table tr td p,.contact-page table tr td a
{
     margin-bottom: 40px;
     display: block;
     text-decoration: none;
}
.contact-page table tr td h4  
{
    font-size: 20px;
    font-weight: 400;
    font-family: "Rubik", sans-serif;

}
.contact-page .form-box 
{
    padding: 0;
}
.contact-page-map
{
    width: 100%;
    height: 50vh;
    overflow: hidden;
}
.how-to-started .all-steps  
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.how-to-started .all-steps .step
{
    padding: 10px;
    border-radius: 3px;
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.how-to-started .all-steps .step h4
{
    display: flex;
    gap: 10px;
    margin-block: 10px;
}
.how-to-started .all-steps .step:nth-child(1),.how-to-started .all-steps .step:nth-child(3)
{
    background: var(--text-dark);
}
.how-to-started .all-steps .step:nth-child(2),.how-to-started .all-steps .step:nth-child(4)
{
    border:1px solid var(--text-dark);
    box-shadow: 0 0 3px 1px var(--text-dark);
}
.how-to-started .all-steps .step h4 span 
{
    background: var(--primary);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 18px;
    border-radius: 3px;
}
.how-to-started .all-steps .step p 
{
    /*margin-block: 20px;*/
    text-align: justify;
}
.how-to-started .all-steps .step a   
{
    text-decoration: none;
    background: var(--primary);
    color: #fff;
    font-size: 18px;
    padding: 10px 15px;
    /*margin-top: 20px;*/
    border-radius: 3px;
    display: block;
    width: fit-content;
}
/*contact page style end*/

/*...........................start.................................*/
.switch {
    display: block;
}

.switch input {
    display: none;
}

.switch label {
    display: block;
    width: 40px;
    height: 15px;
    padding: 3px;
    border-radius: 15px;
    border: 2px solid var(--primary-dark);
    cursor: pointer;
    transition: 0.3s;
    position: relative; /* FIX 1 */
}

.switch label::after {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background: var(--primary);
    transition: 0.3s;
    position: absolute;  /* FIX 2 */
    top: 0px;            /* FIX 3 */
    left: 3px;           /* START POINT */
}

.switch input:checked~label {
    border-color: #ffffff;
}

.switch input:checked~label::after {
    transform: translateX(20px);
    background: #ffffff;
}


/*...........................end.................................*/

.more-details-section
{
    width: 100vw;
    height: 90vh;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    left: 0;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;

}
.more-details-box
{
    border:solid 5px #fff;
    border-radius: 3px;
    position: relative;
}
.video_x_btn
{
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;

}
.video_x_btn .fa-xmark  
{
    font-size: 25px;
    color: #ffff;

}
.more-details-box iframe 
{
    width: 50vw;
    aspect-ratio: 16/9;
}
.why-choose-body video 
{
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.3s ease;
    /* slow-motion factor */
    animation: none;
}