/* TABLE OF CONTENTS */
/* ------------------
1. General
2. Navbar
3. Banner
4. About
5. Services
6. Team
6. Gallery
7. Testimonial
8. Blog
9. Footer
-------------------- */

/* 1 General */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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&family=Qwigley&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Background Color */
    --primary-color: #004caa;
    --secondary-color: #fc5185;
    --bg-light-blue: #3672bc;
    --bg-dark: #666;
    --bg-white: #fff;

    /* Text Style */
    --primary-font: 'Roboto Slab', serif;
    --secondary-font: 'Josefin Sans', sans-serif;
    --primary-text: #004caa;
    --secondary-text: #fc5185;
    --text-white: #fff;
    --text-black: #222;
    --text-gray: #666;
    --text-light: #ddd;
}

body {
    font-family: var(--primary-font);
    background-color: var(--bg-white);
    font-family: Rubik;
}

a {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: .375rem;
}

::-webkit-scrollbar-track {
    background: var(--bg-light-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
}

.wrapper{
    padding:6.25rem 0;
}
.wrapper h2 {
    font-family:  "Qwigley", Sans-serif;
    color: #000;
    text-align: center;
    padding-bottom: 20px;
    font-size: 60px;
    font-weight: 600;
}

.main-btn{
    display: inline-block;
    border:.0625rem solid var(--bg-white);
    color:var(--text-white);
    text-align: center;
    padding:.75rem 1.375rem;
    font-size: 1rem;
    background:transparent;
    text-transform: capitalize;
    border-radius: .1875rem;
    transition:all 0.3s ease-in-out;
    margin-left: 60px;
}
.main-btn:hover{
    background-color:var(--secondary-color);
    border-color:var(--secondary-color);
    color:var(--text-white);
}

.fill-btn{
    background-color:var(--secondary-color);
    border-color:var(--secondary-color);
    color:var(--text-white);
}
.fill-btn:hover{
    background-color:var(--bg-white);
    border-color:var(--bg-white);
    color:var(--text-black)
}
h1{
    font-size: 3.875rem;
    margin-bottom:1.25rem;
    font-weight: 600;
    color:var(--text-white);
    font-family: var(--secondary-font);
}
h2{
    font-size: 2.875rem; 
    font-weight: 600;
    color:var(--text-white);
    font-family: var(--secondary-font);
}
h3{
    font-size: 2.25rem; 
    font-weight: 600;
    color:var(--text-white);
    font-family: var(--secondary-font);
}
h4{
    font-size: 1.5rem; 
    font-weight: 600;
    line-height: 2.25rem;
    color:var(--text-black);
    font-family: var(--secondary-font);
}
h5{
    font-size: 1.5rem; 
    line-height: 1.2;
    font-weight: 500;
    color:var(--primary-text);
    margin-bottom:.9375rem;
    font-family: var(--secondary-font);
}
h6{
    font-size: .875rem; 
    font-weight: 300;
    color:var(--text-black);
    margin-bottom:.9375rem;
    text-transform: uppercase;
    font-family: var(--secondary-font);
}
p{
    font-size: 1rem;
    color:var(--text-gray);
    line-height: 1.625rem;
} 
.card{
    border-radius: .625rem;
    background-color:var(--bg-white);
    box-shadow: .5084rem 1.1419rem 2.5rem 0 rgb(0 0 0 / 8%);
    padding:3.75rem 3.125rem 4.6875rem;
    -webkit-transition:all .4s;
    transition:all .4s;
    border:0;
    min-height: 300px;
}
.p-md {
    color: #fff;
    font-size: 16px;
    width: 100%;
}
@media (max-width:420px) {
    .p-md {
        width: 100%;
    }
}
@keyframes movebounce{
    0%{
        -webkit-transform:translateY(0);
        transform:translateY(0);
    }
    50%{
        -webkit-transform:translateY(1.25rem);
        transform:translateY(1.25rem);
    }
    100%{
        -webkit-transform:translateY(0);
        transform:translateY(0);
    }
}
.card img {
    height: 200px;
}
/* 2 Navbar */ 

.header_wrapper .navbar{
    padding:.9375rem 0;
    background-color:transparent;
    transition:0.3s ease-in-out;
}
.header_wrapper .navbar-toggler,
.header_wrapper .navbar-toggler:focus{
    border:0;
    box-shadow: none;
    color:var(--text-black);
    line-height: 2;
}

.header_wrapper .nav-item{
    margin:0 .625rem;
}
.header_wrapper .nav-item .nav-link{
    font-size: 1.125rem;
    font-weight: 400;
    color:var(--primary-text);
    display:inline-block;
    font-family: var(--secondary-font);
}
.header_wrapper .nav-item .nav-link:hover,
.header_wrapper .nav-item .nav-link:focus,
.header_wrapper .nav-item .nav-link.active{
    color:var(--secondary-text);
}
.navbar.header-scrolled{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background-color:var(--bg-white);
    box-shadow: .5084rem 1.1419rem 2.5rem 0 rgb(0 0 0 / 8%);
    transition:0.3s ease-in-out;
}

/* 3 Banner */
.banner_wrapper{
    background-image:url('./doctor_img/images/top-banner-img/Top-banner.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 450px;
}
.meta_section {
    margin: 20px 0;
}
@media(max-width:420px) {
    .meta_section h2 {
        font-size: 40px !important;
    }
}
@media (max-width:675px) {
    .banner_wrapper {
        height: 900px;
    }
}
@media (max-width:450px) {
    .banner_wrapper {
        height: 530px;
    }
}
@media (max-width:381px) {
    .banner_wrapper h3 {
        font-size: 30px;
          text-align: center;
    }
}
@media (max-width:450px) {
    .banner_wrapper h3 {
        font-size: 30px;
        text-align: center;
    }
}
@media (max-width:675px) {
    .meta_img img {
        width: 100%;
    }
}
@media (max-width:401px) {
  .meta_img img {
    width: 100% !important;
  }
}
@media (max-width:381px) {
  .meta_img img {
    width: 100% !important;
  }
}
@media (max-width:451px) {
  .meta_img img {
    width: 100% !important;
  }
}
@media (max-width:400px) {
    .heading_6 {
      font-size: 24px !important;
    }
}

@media (max-width:675px) {
    .banner_heading1 {
        font-size: 30px;
        margin: 40px 0;
    }
}
.meta_section h2 {
    font-family:  "Qwigley", Sans-serif;
    color: #fff;
    font-size: 70px;
    font-weight: 700;
    text-transform: lowercase;
    text-align: center;

}
.banner_wrapper p{
    max-width: 80%;
    color:var(--text-white);
}

.banner_wrapper .top-right-sec{
    position:relative;
    /* background-image:url('./images/Top_right_banner/top_right_img.jpg'); */
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    display: flex;
    align-items: flex-end;
    justify-content:center;
}
.banner_wrapper .animate-img{
    position:absolute;
    bottom:0;
    left:50%;
    -webkit-transform:translateX(-50%);
    transform:translateX(-50%);
    z-index:22;
}
.banner_wrapper .animate-img .aimg1{
    left:-5.6875rem;
    position:absolute;
    -webkit-animation-name:movebounce;
    animation-name:movebounce;
    -webkit-animation-delay: 100ms;
    animation-delay: 100ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    height: 100px;
}
.banner_wrapper .animate-img .aimg2{
    margin-left:5.5rem; 
    -webkit-animation-name:movebounce;
    animation-name:movebounce;
    -webkit-animation-delay: 200ms;
    animation-delay: 200ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    height: 100px;
}
.heading_6 {
    font-family:  "Qwigley", Sans-serif;
    color: #fff;
    font-size: 50px;
    font-weight: 500;
    text-transform: lowercase;
} 
.meta_img img {
	width: 500px;
}


.home .card:hover{
    -webkit-transform:translateY(-0.625rem);
    transform:translateY(-0.625rem);
}
.home .icon-box{
    text-align: center;
    margin: 0 auto 2.5rem;
}

/* 4 About */
.about_wrapper h2{
    color:var(--text-black);
    font-size: 60px;
}
.about_wrapper .card{
    width:80%;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about_wrapper .about-clinic{
    flex:0 0 auto;
    width:50%;
}
.about_wrapper .about-clinic:nth-child(1),
.about_wrapper .about-clinic:nth-child(2){
    margin-bottom:2.8125rem;
}
.about_wrapper .about-clinic:nth-child(2),
.about_wrapper .about-clinic:nth-child(4){
    padding-left:3.75rem;
}
.about_wrapper .line-1,
.about_wrapper .line-2{
    content:'';
    position:absolute;
    left:50%;
    top:50%;
    -webkit-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
    width:.0313rem;
    height:100%;
    background:var(--bg-dark);
}
.about_wrapper .line-2{
    width:100%; 
    height:.0625rem;
}
.about_wrapper .about-animate{
    position:absolute;
    left:-2.5rem;
    bottom:0;
    -webkit-animation:movebounce 3s linear infinite;
    animation:movebounce 3s linear infinite;
}
@media(max-width:420px) {
    .about_inn_img {
        width: 100%;
    }
}
@media(max-width:350px) {
    .about_inn_img {
        width: 100%;
    }
}
@media(max-width:400px) {
    .about_inner h1 {
        font-size: 35px !important;
    }
}
@media(max-width:) {
    .about_inner h1 {
        font-size: 35px !important;
    }
}

.about_img img {
    width: 100%;
    height: 100%;
}
@media (max-width:420px) {
    .What_we_do .fw-bold {
        font-size: 30px !important;
        margin-bottom: 20px;
    }
}
@media(max-width:420px) {
    .Why_choose_start_infoLab .fw-bold {
        font-size: 30px !important;
        margin-bottom: 20px;
    }
}


/* -----moving_element------ */

 @keyframes fadeSlideUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .about .animated-box {
    animation: fadeSlideUp 1s ease-out forwards;
  }

  .about_img img {
    width: 100%;
    border-radius: 12px;
  }

  @media screen and (max-width: 768px) {
    .about .col-md-6 {
      margin-bottom: 20px;
    }

    .about .h-100 {
      padding: 20px !important;
    }
}

/* 5 Services */
.services_wrapper {
    background-color:var(--primary-color);
    margin-bottom: 150px;
}
.services_wrapper .card{
    background-color:transparent;
    border:.0625rem solid var(--bg-light-blue);
    box-shadow: none;
    padding:2.5rem;
}
.services_wrapper .card:hover{
    background:var(--bg-light-blue);
    cursor:cell;
    border-color:transparent;
}
.services_wrapper .card h4,
.services_wrapper .card p{
    color:var(--text-white);
}
.services_wrapper .icon-box{
    margin-bottom:1.875rem;
}
.services_wrapper h3 {
    font-family: "Qwigley", Sans-serif;
    font-size: 50px;
    font-weight: 700;
}
 
/*7 Team Section */
.team_wrapper .card{
    padding:1.25rem;
}
.team_wrapper .card:hover{
    -webkit-transform:translateY(-0.625rem);
    transform:translateY(-0.625rem);
}
.team_wrapper .team-img{
    margin:0 auto;
}
.team_wrapper .team-info .social-network{
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
    padding:.625rem 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team_wrapper .team-info .social-network li a{
    width:1.5625rem;
    height:1.5625rem;
    line-height: 1.5625rem;
    display: block;
    border-radius: .3125rem;
    margin: 0 .3125rem;
    font-size: .75rem;
    background-color:var(--bg-dark);
    color:var(--text-white);
    -webkit-transition:all 0.3s ease;
    transition:all 0.3s ease;
}
.team_wrapper .team-info .social-network li a:hover{
    background-color:var(--secondary-color);
} 

/*8 Gallery Section */
.gallery_wrapper{
    background-image:url('./doctor_img/images/gallery/gallery-background.png');
    background-repeat: no-repeat;
    background-position:center;
    background-size:cover;
}
.gallery_wrapper img{
    border-radius: .9375rem;
}

/*9 Testimonial */
.testimonial_wrapper .card{
    background-color:rgba(252, 81, 133, .05);
}  
.testimonial_wrapper  .text-black {
    font-size: 45px;
}

/* appointment */
.appointment_wrapper {
    background-image: url('images/banner/banner_2.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 100px;
}

/*10 blog */
.blog_wrapper .blog-content{
    background-color:var(--bg-light-blue);
    padding:2.5rem;
}



/* 11 footer */
.footer_wrapper{
    background-color:var(--primary-color);
    padding-bottom:0;
}
.footer_wrapper h5{
    color:var(--text-white);
}
.footer_wrapper .contact-info ul a {
    padding:0;
}
.footer_wrapper ul li{
    margin-bottom:.5rem;
    list-style: none;
    font-size: .875rem;
}
.footer_wrapper ul li a{
    color:var(--text-white);
}
.footer_wrapper .link-widget li a,
.footer_wrapper p{
    color:var(--text-white);
    font-size: .875rem;
    padding-left:1.5rem;
    position:relative;
    -webkit-transition:all 0.3s ease-out 0s;
    transition:all 0.3s ease-out 0s;
}
.footer_wrapper .link-widget li a::before{
    content:'\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position:absolute;
    left:0.3rem;
    top:50%;
    -webkit-transform:translateY(-50%);
    transform:translateY(-50%);
}
.footer_wrapper .link-widget li a:hover{
    margin-left:.625rem;
    color:var(--secondary-text);
}
.footer_wrapper .social-network a{
    width:2.1875rem;
    height:2.1875rem;
    margin:.5rem;
    line-height: 2rem;
    font-size: .875rem;
    display:inline-block;
    border:.125rem solid var(--bg-light-blue);
    color:var(--text-light);
    text-align: center;
    border-radius: 100%;
    -webkit-transition:all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition:all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.footer_wrapper .social-network a:hover{
    background-color:var(--secondary-color);
    border-color:var(--secondary-color);
    color:var(--text-white);
    transform:translateY(-0.1875rem);
}
.footer_wrapper ::placeholder{
    color:var(--text-light);
}
.footer_wrapper .form-control{
    color:var(--text-light);
}
.footer_wrapper .form-control:focus{
    outline:none;
    box-shadow: none;
    border-color:var(--bg-white);
}
.footer_wrapper .copyright-section{
    background-color:var(--bg-light-blue);
    padding:2rem 0 1rem;
    text-align: center;
}
.footer_wrapper .copyright-section a{
    color:var(--text-white);
    font-weight: 600;
}
<!--Responsive design-->
@media (max-width: 1199.5px) {

    /* custom css */ 
    .card{
        padding:2.5rem 1.875rem;
    } 

    /* header */ 
    .header_wrapper .navbar-nav .nav-link{
        font-size: 1rem;
    }

    /* top banner */ 
    .banner_wrapper .animate-img .aimg1{
        left:-3.125rem;
    }

    /* about */ 
    .about_wrapper .card{
        width:100%;
    } 
    .about_wrapper .about-animate{
        left:.9375rem;
    }

    /* service */ 
    .services_wrapper .card{
        padding:1.875rem 1.25rem;
    }

}

@media (max-width:991px) {

    /* custom css */ 
    .wrapper{
        padding:3.125rem 0;
    }
    .main-btn{
        font-size: .875rem;
    }
    h1{
        font-size: 2.8125rem;
        margin-bottom:.625rem;
    }
    h2{
        font-size: 1.875rem; 
    }
    h3{
        font-size: 1.5625rem; 
    }
    h4{
        font-size: 1.25rem; 
    }
    h5{
        font-size: 1.125rem; 
    }
    p{
        font-size: .875rem;
        line-height: 1.35rem;
    }
    .card{
        padding:1.875rem 1rem;
    }

    /* 2 Navbar */ 
    .header-scrolled{
        height:auto;
    }
    .header_wrapper .menu-navbar-nav{
        text-align: center;
    }
    .header_wrapper .nav-item .nav-link{
        margin-top:.9375rem;
    }

    /* banner */ 
    .banner_wrapper p{
        max-width: 100%;
    }


    /* about */ 
    .about_wrapper .about-clinic:nth-child(1),
    .about_wrapper .about-clinic:nth-child(2){
        margin-bottom:1.5625rem;
    }
    .about_wrapper .about-clinic:nth-child(2),
    .about_wrapper .about-clinic:nth-child(4){
        padding-left:2.375rem;
    }

    /* services */ 
    .services_wrapper .card{
        padding:1.875rem .875rem;
    }

    /* blog */ 
    .blog_wrapper .card .blog-content{
        padding:1.875rem .625rem;
    }

}

@media (max-width: 767px) {

    /* custom css */ 
    .main-btn{
        font-size: .875rem;
    }
    h1{
        font-size: 2.5rem;
        margin-bottom:2.5rem;
    } 
    h5{
        font-size: 1.25rem; 
    } 

    /* service */ 
    .services_wrapper .card{
        text-align: center;
    }

    /* blog */ 
    .blog_wrapper .card .blog-content{
        margin:0;
    }

    /* footer */ 
    .footer_wrapper{ 
        padding-bottom:0;
    }
    .footer_wrapper>div{
        padding:0 1.875rem;
    }
}

@media (max-width: 360px) {

    /* Services */ 
    .services_wrapper .icon-box{
        margin-bottom:.9375rem;
    }

    /* about */   
    .about_wrapper .about-animate{
        width:6.875rem;
    }
    .about_wrapper .card{
        padding:1.25rem .3125rem;
    }
    .about_wrapper .about-clinic:nth-child(2),
    .about_wrapper .about-clinic:nth-child(4){
        padding-left:.625rem;
    }

}
      

/* .......... */
/* Basic Reset */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar {
  background: white;
}

.menu {
  display: none;
  flex-direction: column;
  margin-right: 80px;
}

.menu li {
  margin: 10px;
}

/* Dropdown styles */
.dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 15px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Responsive Toggle */
.menu-toggle {
	display: block;
	cursor: pointer;
	font-size: 24px;
	padding: 10px 30px;
}

/* Desktop styles */
@media (min-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
  }

  .menu {
    display: flex !important;
    flex-direction: row;
  }

  .menu li {
    position: relative;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    display: none;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .menu-toggle {
    display: none;
  }
}

.list a:hover {
    color: #fc5185;
}
/* .......... */

.about_banner {
  background-color: #f8f9fa; /* light gray background (optional) */
  background-image: url(./images/about/banner.jpg);
  padding: 2rem;
  margin-top: 1rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 500px;
}
@media (max-width:400px) {
.about_banner {
    height: 400px;
}
}
@media (max-width:400px) {
    .p-lg {
        font-size: 12px !important;
        width: 200px !important;
    }
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
  margin-top: 20%;
  color: #fff;

}
.about_inner h2 {
    font-family: Rubik;
    font-size: 50px;
}
.about_inner p {
    font-size: 16px;
    color: #fff;
    font-family: Rubik;
}
.p-lg {
    font-size: 16px;
    width: 400px;
    color: #fff;
    font-family: poppins;
}
.about_inn_img {
    height: 400px;
    width: 550px;
    border-radius: 20px;
    margin-top: 5px;
}
@media (max-width:400px) {
    .about_text {
        display: block;
        width: 100%;
    }
}

.fs-4 {
    font-size: 16px !important;
    color: #000;
    width: 100%;
    line-height: 35px;
}
.we_do_content{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 30px;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.What_we_do .we_do_content > * {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: var(--delay, 0s);
}

.What_we_do .we_do_content > *:nth-child(1) { --delay: 0s; }
.What_we_do .we_do_content > *:nth-child(2) { --delay: 0.2s; }
.What_we_do .we_do_content > *:nth-child(3) { --delay: 0.4s; }
.What_we_do .we_do_content > *:nth-child(4) { --delay: 0.6s; }
.What_we_do .we_do_content > *:nth-child(5) { --delay: 0.8s; }

.p-xl{
    color: #000;
    font-size: 14px;
}
.heading2 {
    font-size: 60px;
    color: #000;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    font-family:  "Qwigley", Sans-serif;
}
.about_heading2 {
    font-family:  "Qwigley", Sans-serif;
    font-size: 70px;
    font-weight: 700;
}

.about-clinic h4 {
  font-size: 2rem;
  transition: all 0.3s ease-in-out;
}

/* ...................... */
.ti-widget.ti-goog .ti-widget-container:not(.ti-col-1) .ti-footer {
    flex: 0 0 245px !important;
    max-width: 245px !important;
    margin-left: 20px;
    margin-right: 20px;
}
.heading_3 {
    color: #000;
}
.History {
     box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
     padding: 30px;
}
.History_Section h3 {
    color: #000;
    font-size: 35px;
    text-align: center;
    font-weight: 600;
    
}
.History_Section p {
    color: #000;
    font-size: 16px;
    width: 100%;
}
@media(max-width:420px) {
    .History_Section h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
        width: 100%;
    }
}
.icon-box-img img {
    height: 148px;
    margin-bottom: 20px;
    margin-top: -18px;
}
.icon-box img {
    height: 60px;
}
.why_p {
    color: #000;
    font-size: 14px;
    text-align: left;
}
.why_h4 {
    font-size: 18px;
    font-weight: 700;
}

/* --------------------- */
.horizontal-scroll-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.card {
  flex: 0 0 auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.icon-box-img img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
}
.WEB_SEC {
    padding: 50px 0;
}
.web_h2 {
    font-size:35px;
    color: #000;
    text-align: center;  
}
.web_p {
    font-size: 16px;
    color: #000;
}
.End_End_h2 {
    color: #000;
    font-size: 28px;
    font-weight: 600;

}
.web-card {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

/* ........................................... */

.carousel-item img {
    border-radius: 12px;
    padding: 10px;
    object-fit: cover;
    height: 250px;
}

/* ........................... */

@keyframes floatCard {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.card.text-center {
  animation: floatCard 3s ease-in-out infinite;
  transition: transform 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.W_C_U_h3 {
    font-family:  "Qwigley", Sans-serif;
    font-size: 60px;
    font-weight: 700;
}
.digital_h2 {
    color: #000;
    text-align: center;
    font-size: 38px;
}
.digital_p {
    color: #000;
}
.digital_heading3 {
    color: #000;
    font-size: 30px;
    padding: 10px 0;
}
.sotfware_h2 {
    color: #000;
    font-size: 30px;
}
.software_p {
    color: #000;
    font-size: 16px;
}
.BLOG_SEC{
    padding: 80px 0;
}
.Blog_h2 {
    color: #000;
    font-size: 32px;
     text-align: center;
     font-weight: 600;
     margin-bottom: 20px;
}
.Blog_p{
    color: #000;
    font-size: 16px;
    width: 100%;
}
.blog-content {
    background-color: #3672BC;
}
.blog_h3 {
    font-size: 32px;
    font-weight: 600;
}
.card_img {
    height: 250px;
}
.blog_h5 {
    font-size: 20px;
}

.Prefession_website {
    padding-top: 50px;
}

/* ----------------------------- */

.Website_section {
    padding: 80px 0;
}
.Website_section h3 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
}
.Website_section p {
    color: #000;
    font-size: 16px;
}
.Website_section h4 {
    color: #000;   
}
/* moving_element */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* moving_element exit */

.table_h3 {
    color: #000;
    text-align: center;
    font-family: Qwigley ;
    font-weight: 700;
    font-size: 40px;
}
.lab_h3 {
    color: #000;
    font-size: 30px;
    text-align: center;
}
@media(max-width:420px){
    .lab_h3 { 
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
        border-bottom: 2px solid #000;
    }
}
@media (max-width:420px) {
    .web_h2 {
        font-size: 22px !important;
        font-weight: 700;
        margin-bottom: 20px;
    }
}
@media(max-width:420px) {
    .table_h3 {
        font-size: 28px;
    }
}

@media (max-width:400px) {
    .History_Section .fw-bold {
        font-size: 22px !important;
        font-weight: 700;
        margin-bottom: 20px;
    }
}
@media(max-width:420px) {
    .Choose_Our_website .fw-bold {
    font-size: 20px !important;
    font-weight: 700;
    margin-bottom: 20px;
   }
   .History .fw-bold {
    font-size: 20px !important;
    font-weight: 700;
    margin-bottom: 20px;
   } 
}
@media(max-width:450px) {
    .countdown {
        margin-left: 22px;
    }
}

@media(max-width:420px) {
    .about_inner h1 {
        font-size: 30px !important;
        line-height: 35px;
    }
}
.Blog_inner_img {
    margin: 30px 0;
}
@media(max-width:450px) {
 .Blog_inner_img img {
    width: 100%;
 }
}
[data-aos] {
  transition-property: transform, opacity !important;
}
@media(max-width:450px){
    .End-to-End-Website-Development .End_card {
        margin-bottom: 30px;
    }
}

@media(max-width:450px) {
    .digital_h2 {
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 20px;
    }
}
@media(max-width:450px) {
    .End-to-End-Website-Development .Endsofrware{
        margin-bottom: 30px;
    }
}



/* why_choose_us */
.card.why-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.card.why-card:hover {
  transform: translateY(-5px);
}

.icon-box-img img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.why_h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.why_p {
  font-size: 0.95rem;
  color: #666;
  flex-grow: 1;
}
.google_img .ti-platform-icon {
    height: 50px;
    width: 50px;
}
.R_text h5 {
    color: #000;
    font-size: 16px;
    margin-top: 10px;
}
.ti-stars-imgs .ti-star-img {
    height: 35px;
    width: 35px;
    gap: 0;
}
.Review_text p {
    color: #000;
    margin-top: 22px;
    font-family: Rubik;
    font-size: 18px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0%) invert(0%);
}
.carousel-control-prev-icon {
	filter: brightness(0%) invert(0%);
	/* margin-left: -176px; */
}
.carousel-control-next-icon {
    /* margin-right: -190px; */
    filter: brightness(0%) invert(0%);
}
.Review_anchor {
    color: #000;
    border-bottom: 2px solid #000;
}
.Right_reviews a {
 color: #fff;
 font-size: 18px;
 display: flex;
 justify-content: center;
 align-items: center;

}
.Right_reviews {
    background-color: #2D6FA9;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
   width: 200px;
}
.Foot_logo  .Foot_logo_img {
    width: 600px;
}
@media (max-width:420px) {
    .Foot_logo  .Foot_logo_img {
        width: 200px;
    }
}
.Meta_inn h2 {
    text-align: center;
    color: #000; 
    font-size: 60px; 
    margin-bottom: 40px;
    font-family: Qwigley;
}
@media(max-width:390px) {
    .Meta_inn h2 {
        font-size: 35px !important;
    }
}
@media(max-width:420px) {
    .Meta_inn h2 {
        font-size: 35px;
    }
}

@media(max-width:500px) {
    .Meta_inn h2 {
        font-size: 40px;
    }
}
.meta_img img {
    margin-bottom: 30px;
}
.Footer_logo_img .star_img {
    width: 600px;
    margin-bottom: 50px;
}
@media(max-width:451px) {
    .Footer_logo_img .star_img {
        width: 300px;
    }
}
.Testimonial_reviews {
    padding: 70px 0;
}
.Testimonial_reviews h2 {
    color: #000;
    text-align: center;
}
.star_anchor {
    transition: color 0.3s ease;
}
.star_anchor:hover {
    color: #fc5185;
    text-decoration: underline;
}
.contact_list {
    font-size: 20px;
    text-align: center;
}
.contact_map {
    margin-top: -50px;
}
@media(max-width:450px) {
    .contact_map .Contact_frame {
        width: 110%;
        margin-top: 50px;
    }
}
@media(max-width:390px) {
    .contact_map .Contact_frame {
        width: 110%;
        margin-top: 50px;
    }
}
@media(max-width:450px) {
    .contact_text {
        width: 107%;
    }
}
@media(max-width:450px) {
    .WEB_SEC  .digital_h2 {
        font-size: 25px !important;
    }
}
@media(max-width:390px) {
    .WEB_SEC  .digital_h2 {
        font-size: 22px !important;
    }
}
@media(max-width:450px) {
.History .digital_heading3 {
    font-size: 25px;
}
}