/*
###################################################################################################
1.Global
2.Home
  -header
  -hero
  -experience
  -testimonials
  -project
  -footer
3.contact

*/

/**  Global styles **/

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

p {
    font-size: 1.6rem;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

section {
    padding: 5rem 0;

}



/*
################################################################################################
#########################################  Header ##############################################
################################################################################################ */
.top-bar {
    /* background-color: #0b2e8e; */
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFF;

    box-shadow: 0px 2px 4px #f6f6f6;
    /* Correct box-shadow */
    font-size: 14px;
    line-height: 19px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;



}
  /*
################################# Start Whatsapp ####### */
.floating_btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    z-index: 1000;
  }
  
  @keyframes pulsing {
    to {
      box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
  }
  
  .contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size:30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
  }
  
  
  .text_icon {
    margin-top: 8px;
    color: #fff;
    font-size: 13px;
  }

  /*
################################# End Whatsapp ####### */



/*
################################################################################################
#########################################  Header ##############################################
################################################################################################ */



.btn {
    background: linear-gradient(to right, #11d78e, #48f);
    border-radius: 1.2rem;
    color: #FFFFFF;
    display: inline-block;
    margin-top: 1.2rem;
    padding: 1.1rem 2.1rem;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: background-color 650ms;
    text-align: center;
}

.btn:hover {
    background-image: linear-gradient(-225deg,
            #f06 0%,
            #fff800 100%);
}

.animate-text {
    background-image: linear-gradient(-225deg,
            #a7afa3 0%,
            #ffffff 29%,
            #11d78e 67%,
            #fff800 100%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textanim 5s linear infinite;
    display: inline-block;
}

@keyframes textanim {
    0% {
        background-position: 200% center;
        /* Start from left */
    }

    50% {
        background-position: 100% center;
        /* Start from left */
    }

    100% {
        background-position: 0% center;
        /* Move to the right */
    }
}






/*
################################################################################################
#########################################  features ##############################################
################################################################################################ */

/*-- feature --*/
#feature {
    width: 100%;
    padding: 70px 0;
}

.title-text {
    text-align: center;
    padding-bottom: 70px;
    font-family: "Rajdhani", sans-serif;
}

.title-text p {
    margin: auto;
    font-size: 20px;
    color: hsl(221, 83%, 53%);
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
    font-family: "Rajdhani", sans-serif;
}

.title-text p::after {
    content: '';
    width: 50px;
    height: 35px;
    background: linear-gradient(hsl(221, 83%, 53%), #fff);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}

.title-text h1 {
    font-size: 50px;
    font-family: "Rajdhani", sans-serif;
}

.feature-box {
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;

}

.features {
    flex-basis: 50%;

}

.features-img {
    flex-basis: 50%;
    margin: auto;
}

.features-img img {
    width: 70%;
    border-radius: 10px;
}

.features h1 {
    text-align: left;
    margin-bottom: 10px;
    font-weight: 100;
    font-size: 2.2rem;
    font-family: "Rajdhani", sans-serif;
    color: #0b2e8e;
}

.features-desc {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    font-family: "Open Sans", sans-serif;
}

.feature-icon .fa {
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    border-radius: 8px;
    color: #0b2e8e;
    border: 1px solid #0b2e8e;
}

.feature-text p {
    padding: 0 20px;
    text-align: initial;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}

@media screen and (max-width:770px) {
    .title-text h1 {
        font-size: 35px;
    }

    .features {
        flex-basis: 100%;

    }

    .features-img {
        flex-basis: 100%;

    }

    .features-img img {
        width: 100%;
        border-radius: 10px;
    }

}



/* Overall section styling */
.features-section {
    text-align: center;

    background-color: #fff;
    position: relative;
    display: block;
    padding: 5%;
    z-index: 1;


}



.features-section:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 435px;
    background-color: var(--jetly-primary);
    content: "";
    z-index: -1;
}

.features-section-two {

    position: absolute;
    top: 0;
    left: 50%;
    background-color: #F7F6F0;
    transform: translateX(-50%);
    width: 100%;
    height: 435px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .60;
    z-index: -1;


}


/*
################################################################################################
#########################################  Service ##############################################
################################################################################################ */


.services-content {
    gap: 20px;
    padding: 20px;
}
.customized-card{
    margin: 0.8rem 0;
}

.card {
    background-color: #f0f9ff;
    /* Adjust background color */
    border-radius: 10px;
    padding: 5rem 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin: 10px 0;
    height: 100%;
 
}

.card img {
    width: 60px;
    /* Icon size */
    margin: 10px auto;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}


.transition {
    transition-duration: 0.3s;
}


.bgChangeOnHover {
    position: relative;
    z-index: 1;
}

.bgChangeOnHover::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    bottom: 0;
    background: #d8f3d3;
    height: 0;
    transition-duration: 0.4s;
    z-index: -1;
}

.card p {
    font-size: 0.9em;
}

.bg_grad {
    background-image: linear-gradient(to right top, #f3f2ff, #e9f7ff, #e2fcff, #e4fff7, #f1ffeb);
    background-image: linear-gradient(to right top, #CBEDEE, #F3F2F3);
}

.bg_grad2 {
    background-image: linear-gradient(45deg,
            hsl(60deg 47% 93%) 0%,
            hsl(68deg 48% 93%) 11%,
            hsl(75deg 48% 94%) 22%,
            hsl(83deg 48% 95%) 33%,
            hsl(92deg 47% 95%) 44%,
            hsl(101deg 46% 96%) 56%,
            hsl(111deg 44% 96%) 67%,
            hsl(122deg 42% 97%) 78%,
            hsl(132deg 43% 97%) 89%,
            hsl(140deg 43% 97%) 100%);
}

.bg_grad3 {
    background-image: linear-gradient(to right top, #34495E, #34495E, #e2fcff, #34495E, #f1ffeb);
    background-image: linear-gradient(to right top, #CBEDEE, #34495E);
}

.service_link {
    text-decoration: none;
    color: #212529;
}

.service_link:focus,
.service_link:hover {
    color: #212529;
}

.bgChangeOnHover {
    position: relative;
    z-index: 1;
}

.bgChangeOnHover::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    bottom: 0;
    background: #d8f3d3;
    height: 0;
    transition-duration: 0.4s;
    z-index: -1;
}

.bgChangeOnHover:hover::before {
    height: 100%;
}

.glance {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    /* animation: gradient 15s ease infinite; */
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.card-glance {
    background-color: #0b2e8e;
    border-radius: 10px;
    padding: 5rem 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin: 10px 0;
}


/**  ---  service --- */
#service {
    width: 100%;
    padding: 70px 0;
    background: #efefef;
}

.service-box {

    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
}

.single-service {
    flex-basis: 40%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.single-service img {
    width: 100%;
    border-radius: 7px;
}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 7px;
    cursor: pointer;
    background: linear-gradient(rgba(0, 0, 0, 0.5), #0b2e8e);
    opacity: 0;
    transition: 1s;
}

.single-service:hover .overlay {
    opacity: 1;
}

.service-desc {
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%);
    transition: 1s;
}

hr {
    background: #fff;
    height: 2px;
    border: 0;
    margin: 15px auto;
    width: 60%;
}

.service-desc p {
    font-size: 14px;
}

.single-service:hover .service-desc {
    opacity: 1;
    bottom: 40%;
}

@media screen and (max-width:770px) {
    .single-service {
        flex-basis: 100%;
        margin-bottom: 30px;
    }

    .service-desc p {
        font-size: 12px;
    }

    hr {
        margin: 5px auto;
    }

    .single-service:hover .service-desc {
        bottom: 25% !important;
    }
 .customized-card{
    margin: 0.5rem 0;
} 

.services-content {
    gap: 2px;
    padding: 1px;
}

.card img {
    width: 60px;
    /* Icon size */
    margin: 1px auto;
}

.card {
  
    padding: 1rem 20px;
  
}
.card p{
  text-align: justify;
}

.card-glance {
  
    padding: 1rem 10px;
    margin: 3px 0;
}

}




/*
################################################################################################
#########################################  testimonial Section ##############################################
################################################################################################ */


.gtco-testimonials {
    position: relative;
    padding: 50px 0;
    background: aliceblue;
  }
  .gtco-testimonials h2 {
    font-size: 30px;
    text-align: center;
    color: #1a2c50;
    margin-bottom: 50px;
  }
  .gtco-testimonials .owl-stage-outer {
    padding: 30px 0;
  }
  .gtco-testimonials .owl-nav {
    display: none;
  }
  .gtco-testimonials .owl-dots {
    text-align: center;
  }
  .gtco-testimonials .owl-dots span {
    position: relative;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: block;
    background: #fff;
    border: 2px solid #0b2e8e;
    margin: 0 5px;
  }
  .gtco-testimonials .owl-dots .active {
    box-shadow: none;
  }
  .gtco-testimonials .owl-dots .active span {
    background: #0b2e8e;
    box-shadow: none;
    height: 12px;
    width: 12px;
    margin-bottom: -1px;
  }
  .gtco-testimonials .card {
   
    background: #fff;
    box-shadow: 0 8px 30px -7px #c9dff0;
    margin: 0 20px;
    padding: 0 10px;
    border-radius: 20px;
    border: 0;
  
  }
  .gtco-testimonials .card .card-img-top {
    max-width: 100px;
    border-radius: 50%;
    margin: 15px auto 0;
    box-shadow: 0 8px 20px -4px #95abbb;
    width: 100px;
    height: 100px;
  }
  .gtco-testimonials .card h5 {
    color: #0b2e8e;
    font-size: 21px;
    line-height: 1.3;
  }
  .gtco-testimonials .card h5 span {
    font-size: 18px;
    color: #666666;
  }
  .gtco-testimonials .card p {
      font-family: "Open Sans", sans-serif;
    font-size: 18px;
    color: #555;
    padding-bottom: 15px;
  }
  .gtco-testimonials .active {
    opacity: 0.5;
    transition: all 0.3s;
  }
  .gtco-testimonials .center {
    opacity: 1;
  }
  .gtco-testimonials .center h5 {
      font-family: "Rajdhani", sans-serif;
    font-size: 24px;
  }
  .gtco-testimonials .center h5 span {
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
  }
  .gtco-testimonials .center .card-img-top {
    max-width: 100%;
    height: 120px;
    width: 120px;
  }
  
  @media (max-width: 767px) {
    .gtco-testimonials {
      margin-top: 20px;
    }
  }
  .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    outline: 0;
  }
  .owl-carousel button.owl-dot {
    outline: 0;
  }
  .testimonials-header {
    margin-bottom: 2rem;
    font-family: "Rajdhani", sans-serif;
  }
  
  .testimonials-header p {
    letter-spacing: 2px;
    font-size: 1rem;
    font-weight: 500; text-align: center;
  }
  
  .testimonials-header h1 {
      font-family: "Roboto", sans-serif;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
  }
  .fa-quote-left , .fa-quote-right{
    font-size: 2.5rem;
    color: #0b2e8e;
  }
  .gtco-testimonials hr {
    width: 40px;
    margin: auto;
    color: #767268;
  }

/*
################################################################################################
#########################################  testimonial 2nd Section ##############################################
################################################################################################ */

.spacer {
    --dark-green: #9cc675;
    --dark-yellow: #e73c7e;
    --extra-light-brown: #fdf0d7;
    --light-brown: #ecd5ab;
    --dark-brown: #915b40;
    --light-yellow: #f8e3a8;
    --light-red: #f3ac99;
    --light-teal: #a6c8cc;
    --light-gray: #ddd5d6;
    --theme-color2: #0b2e8e;

}



.c-container {
    margin: auto;
    width: 93%;
    position: relative;
    z-index: 1;
}

.btn-outline-white {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: none;
    border-width: 2px;
    border-color: #fff;
    font-weight: 500;
    -webkit-transition: all .2s;
    transition: all .2s;
}


/* common css up */

.testimonial p {
    font-size: 28px;
    letter-spacing: 0.02em;
    line-height: 35px;
}

.testimonial .name {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 35px;
    text-align: left;
}

.testimonial .designation {
    font-size: 14px;
    letter-spacing: 0.04em;
    text-align: left;
    color: #fff;
    opacity: 0.65;
}

.unt {
    margin-bottom: 20px;
    margin-top: 60px;
}

.hero-text {
    font-size: 30px;
    letter-spacing: 0.02em;
    color: #fff;
}

.gallery-thumbs {
    height: 100%;
}

.gallery-thumbs .swiper-wrapper {
    align-items: center;
}

.gallery-thumbs .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 250px !important;
    height: 330px;
    position: relative;
}

.gallery-thumbs .swiper-slide img {
    filter: contrast(0.5) blur(1px);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-thumbs .swiper-slide-active img {
    filter: contrast(1) blur(0px) !important;
}

.flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.flex-row .flex-col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.gallery-thumbs .swiper-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.testimonial-section .quote {
    width: 75%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 100px;
    padding-right: 100px;
}

.swiper-container.testimonial {
    height: 100vh;
}

.testimonial-section .user-saying {
    background: var(--theme-color2);
    width: 60%;
    color: #fff;
    height: 100%;
}

.testi-user-img {
    width: 40%;
}

.testimonial-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.testimonial-section .quote p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.quote-icon {
    width: 38px;
    display: block;
    margin-bottom: 30px;
}

@media only screen and (max-width: 600px) {
    .testi-user-img {
        display: none;
    }

    .user-saying {
        width: 100% !important;
    }

    .quote {
        width: 60% !important;

    }
}

/*
################################################################################################
#########################################  footer Section ##############################################
################################################################################################ */


.site-footer {
    background-color: #26272b;
    padding: 45px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: #737373;
}

.site-footer hr {
    border-top-color: #bbb;
    opacity: 0.1;
    width: 100%;
    height: .1rem;
}

.site-footer hr.small {
    margin: 20px 0
}

.contact-widget li {
    padding: 2px;
}

.contact-widget li i,
.footer-links li i {
    margin-right: 5px;
}



.site-footer h6 {
    color: #fff;
    font-size: 21px;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 2px
}

.site-footer a {
    color: #737373;
}

.site-footer a:hover {
    color: #3366cc;
    text-decoration: none;
}

.site-footer p {
    font-size: 13px;
}

.footer-links {
    padding-left: 0;
    list-style: none
}

.footer-links li {
    display: block
}

.footer-links a {
    color: #737373
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
    color: #3366cc;
    text-decoration: none;
}

.footer-links.inline li {
    display: inline-block
}

.site-footer .social-icons {
    text-align: right
}

.site-footer .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
    background-color: #33353d
}

.copyright-text {
    margin: 0
}

@media (max-width:991px) {
    .site-footer [class^=col-] {
        margin-bottom: 30px
    }
}

@media (max-width:767px) {
    .site-footer {
        padding-bottom: 0
    }

    .site-footer .copyright-text,
    .site-footer .social-icons {
        text-align: center
    }
}

.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.social-icons li {
    display: inline-block;
    margin-bottom: 4px
}

.social-icons li.title {
    margin-right: 15px;
    text-transform: uppercase;
    color: #96a2b2;
    font-weight: 700;
    font-size: 13px
}

.social-icons a {
    background-color: #eceeef;
    color: #818a91;
    font-size: 16px;
    display: inline-block;
    line-height: 44px;
    width: 44px;
    height: 44px;
    text-align: center;
    margin-right: 8px;
    border-radius: 100%;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
    color: #fff;
    background-color: #29aafe
}

.social-icons.size-sm a {
    line-height: 34px;
    height: 34px;
    width: 34px;
    font-size: 14px
}

.social-icons a.facebook:hover {
    background-color: #3b5998
}

.social-icons a.twitter:hover {
    background-color: #00aced
}

.social-icons a.linkedin:hover {
    background-color: #007bb6
}

.social-icons a.dribbble:hover {
    background-color: #ea4c89
}

@media (max-width:767px) {
    .social-icons li.title {
        display: block;
        margin-right: 0;
        font-weight: 600
    }
}



/*
################################################################################################
#########################################  About Section  ##############################################
################################################################################################ */


.about_section {
    font-family: "Rajdhani", sans-serif;
    align-items: center;
    padding: 35px 0;
}

.contentLeft .row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.contentLeft .row .imgWrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.15);
}

.contentLeft .row .imgWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    transition: 0.3s ease;
}

.contentLeft .row .imgWrapper:hover img {
    transform: scale(1.5);
}

.contentLeft .row .imgWrapper:nth-child(odd) {
    transform: translateY(-20px);
}

.contentLeft .row .imgWrapper:nth-child(even) {
    transform: translateY(20px);
}

.contentRight .content h4 {
    font-size: 22px;
    font-weight: 400;
    color: #5bc348;
    margin-top: 5rem;
}

.contentRight .content h2 {
    font-size: 40px;
    color: #1e272e;
}

.contentRight .content p {
    font-size: 16px;
    color: #343434;
    line-height: 28px;
    padding-bottom: 10px;
}

/**********************************/
/***** Layout & Section Title *****/
/**********************************/
.tm-titlebar-wrapper {

    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 30vh; 
    color: #fff;
    background-color: rgba(3, 13, 25, 0.94);
    text-align: center;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); 
}

 .entry-title:before {
    height: 2px;
    content: "";
    display: block;
    width: 30px;
    margin-top: 2.1rem;
    margin-bottom: 11px;font-size: 22px;
}


.service-container{
    background-color: #F8F8FF;
}



.service-container .service-box {
  width: 450px;
  text-align: center;
  padding: 0 0 30px 20px;
  position: relative;
}

.service-container .service-box::before {
  content: "";
  border: 3px dotted #00cccc;
  border-top-style: solid;
  border-bottom-style: solid;
  border-right: none;
  position: absolute;
  border-radius: 30px 0 0 30px;
  -webkit-border-radius: 30px 0 0 30px;
  -moz-border-radius: 30px 0 0 30px;
  -ms-border-radius: 30px 0 0 30px;
  -o-border-radius: 30px 0 0 30px;
  width: 35%;
  top: 90px;
  bottom: 7px;
  left: 0;
}

.service-container .service-icon {
  font-size: 45px;
  line-height: 95px;
  background-color: #fff;
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 5px 5px 10px #0000004d;
  position: relative;
  color: #00cccc;

}

.service-container .service-content {
  background-color: #fff;
  padding: 20px 10px;
  border: 3px solid #00cccc;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: 5px 5px 10px #0000004d;

}

.service-container .service-content::before,
.service-container .service-content::after {
  content: "";
  position: absolute;
  background: #00cccc;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  top: 86px;
  left: 35%;
}

.service-container .service-content::after {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  top: auto;
  bottom: 4px;
}

.service-container .service-title a {
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px;
  text-decoration: none;
  color: #00cccc;
  font-family: "Rajdhani", sans-serif;
}

.service-container p {
  color: #0e0e0e;
  font-size: 18px;
  line-height: 30px;
  text-align:left;
  font-family: "Rajdhani", sans-serif;
}

.service-container .service-box.red,
.service-container .service-box.red .service-title a,
.service-container .service-box.red .service-icon {
  color: #F70437;
}

.service-container .service-box.red::before,
.service-container .service-box.red .service-icon,
.service-container .service-box.red .service-content {
  border-color: #F70437;
}

.service-container .service-box.red .service-content::after,
.service-container .service-box.red .service-content::before {
  background-color: #F70437;
}
@media(max-width:768px) {
  .service-container {
    flex-direction: column;
  }

  .service-container .service-box {
    width: 85%;
    margin: auto;
  }
}
.about-service{
    background-color: #F8F8FF;
    padding:3rem;
    margin-bottom:5rem;
}
.about-service h1 {
text-align: center;
margin: 50px auto 120px;
color: #007bff;
}
.container .services-section .card {

z-index: 10;
transition: transform 0.8s;
}
.services-section .card .icon {
width: 150px;
height: 150px;
background: #fff;
align-items: center;
justify-content: center;
display: flex;
font-size: 80px;
border-radius: 50%;
color: #007bff;
border: 20px solid #fff;
margin: -140px auto 0;
transition: transform 1s;
}
.services-section .card h2 {
height: 35px;
width: 70%;
text-align: center;
font-size: 25px;
text-transform: uppercase;
margin: 25px auto;
position: relative;
background: #e9f7ff;
line-height: 35px;
}
.services-section .bg_grad2 h2 {

background: #f1ffeb;

}
.services-section .card h2:after {
content: '';
width: 40px;
height: 30px;
background: linear-gradient(to right, #fff, #007bff);
position: absolute;
right: -5px;
top: -5px;
z-index: -1;
}

.services-section .card h2:before {
content: '';
width: 40px;
height: 30px;
background: linear-gradient(to right, #007bff, #fff);
position: absolute;
left: -5px;
bottom: -5px;
z-index: -1;
}
.services-section .card:hover {
transform: translateY(-20px);
}
.services-section .card p {
color: #0e0e0e;
font-size: 16px;
line-height: 23px;
text-align:left;
font-family: "Rajdhani", sans-serif;
}
.services-section .card:hover .icon {
transform: rotate(360deg);
}

.column {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (max-width: 720px) {
    .contentRight {
       margin-top:4rem;
    }
}
@media (min-width: 576px) {
    .column {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (min-width: 768px) {
    .column {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 992px) {
    .column {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.team-section {
    font-family: "Rajdhani", sans-serif;
}




.section-title {
    color: #353535;
    font-size: 2.3rem;
    letter-spacing: 5px;
    margin: 1px auto;
    text-align: center;
    font-family: "Rajdhani", sans-serif;
    text-transform: capitalize;
    margin: 4.3rem 0;
}

@media(max-width: 767.98px) {
    .section-title h1 {
        font-size: 40px;
        letter-spacing: 3px;
    }
}

@media(max-width: 567.98px) {
    .section-title h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }
}


.team-9 {
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    background-color: #f0f9ff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.team-9:hover {
    transform: rotateY(180deg);
    background: hsl(217, 91%, 60%);
}

.team-9 .team-img {
    position: relative;
    font-size: 0;
    text-align: center;
    margin-bottom: 30px;
}

.team-9 .team-img img {
    width: 100%;
    height: auto;
    max-width: 300px;
    max-height: 300px;
    border-radius: 100%;
}

.team-9 .team-content {
    text-align: center;
}

.team-9 .team-content h2 {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.team-9 .team-content h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.team-9 .team-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    color: #0a235e;
    border-radius: 5px;
    transform: rotateY(180deg);
    background: hsl(217, 91%, 60%);
    ;
}

.team-9 .team-overlay p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    padding-bottom: 1.0rem;
}

.team-9 .team-social {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.team-9 .team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    padding: 11px 0 10px 0;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #ffffff;
    border-radius: 100%;
    transition: all .3s;
}

.team-9 .team-social a.social-tw {
    background: #00acee;
}

.team-9 .team-social a.social-fb {
    background: #3b5998;
}

.team-9 .team-social a.social-li {
    background: #0e76a8;
}

.team-9 .team-social a.social-in {
    background: #3f729b;
}

.team-9 .team-social a.social-yt {
    background: #c4302b;
}

.team-9 .team-social a:last-child {
    margin-right: 0;
}

.team-section .team-9 .team-social a:hover {
    background: #222222;
}



/*
################################################################################################
#########################################  Quotation Section  ##############################################
################################################################################################ */


.quotation {

    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    margin: 8rem 0;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);


}

.quotation section {
    width: 100%;
    padding: 2rem;
}

.quotation section .rows {
    display: flex;
    align-items: center;
}

.quotation section .title {
    font-size: 2em;
    padding: 0 2rem;
}

.quotation section .form .title {
    font-size: 1.3em;
    padding: 0 0rem;
}

.quotation section span {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 2rem;
}

.quotation fieldset {
    border: 0;
    margin: 10px 0;
}

.form-title {
    text-align: center;
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.quotation label {
    display: block;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.quotation input,
.quotation select,
.quotation textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.quotation textarea {
    resize: vertical;
}

.quotation section span h3 {
    font-weight: 400;
}

.quotation section span .fa {
    background-color: #253248;
    padding: 10px;
    font-size: 2em;
    min-width: 55px;
    text-align: Center;
    color: var(--white);
    border-radius: 10px;
    margin: 0 10px;
}

.quotation .form {
    min-width: 40%;
    width: 40%;

    background-color: #253248;
    padding: 2rem;
    position: absolute;
    top: -30px;
    margin: auto;
    z-index: 11;
    box-shadow: 0px 6px 16px -6px rgba(1, 1, 1, 0.5);
    text-align: Center;
}

.quotation .form .title {
    text-transform: uppercase;
    color: #5bc348;
}

.quotation .form:before {
    position: absolute;
    top: 0;
    left: -30px;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 30px 30px;
    border-color: transparent transparent #253248 transparent;
}

.quotation .form:after {
    position: absolute;
    top: 0;
    right: -30px;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 0 0 30px;
    border-color: transparent transparent transparent #253248;
}

.quotation .form input,
.quotation .form select,
.quotation .form textarea {
    width: 100%;
    padding: 1rem;
    border: 0;
    border-radius: 5px;
    resize: none;
    font-weight: 400;
    color: rgba(1, 1, 1, 0.7);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.quotation .form .btn {
    display: block;
    border-radius: 5px;
    width: 100%;
}

@media (max-width:1020px) {
    .quotation {
        display: block;
    }

    .quotation section {
        padding: 1rem;
    }

    .quotation section .title {
        font-size: 1.2em;
        padding: 0 1rem;
    }

    .quotation section span {
        padding: 0.1rem 1rem;
    }

    .quotation section span .fa {
        font-size: 1.3em;
        min-width: 45px;
    }

    .quotation .form {
        width: 100%;
        padding: 1rem;
        position: relative;
        top: 0px;
        border-radius: 5px;
    }

    .quotation .form:before,
    .quotation .form:after {
        display: none;
    }
}

@media (max-width:820px) {
    .quotation section .rows {
        display: block;
    }
}

.quotation h3 {
    font-size: 1.2rem;
}

/*
################################################################################################
#########################################  Contact Section  ##############################################
################################################################################################ */


.contact_aside {
    background-image: linear-gradient(to left bottom,
            #051937,
            #002350,
            #002d69,
            #003684,
            #01409f);
    animation: animateClr 5s infinite cubic-bezier(0.62, 0.28, 0.23, 0.99);
    background-size: 400%;
}



.bg-lights {
    margin: 1rem auto;
    background-color: #002350;
}

.bg-lights label {
    color: #fff;
}

.bg-lights .fa {
    border: 1px solid currentColor;
    border-radius: 10%;
    padding: 1rem;
    width: 50px;
    height: 50px;

}

.bg-lights .fa:hover {
    background-color: #002350;
    color: #fff;

}


/*
################################################################################################
#########################################  services ##############################################
################################################################################################ */
.section-services {
	padding-top: 110px;
	padding-bottom: 120px;
	font-family: "Poppins", sans-serif;
	background-color: #e4e2e4;
	color: #fff;
    margin-top:-2.5rem;
}

.section-services .header-section {
	margin-bottom: 35px;
}

.section-services .header-section .title {
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 25px;
	text-transform: uppercase;
	font-weight: 700;
    color:#0b2e8e;
}

.section-services .header-section .title:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 140px;
	height: 1px;
	background-color: #f70037;
}

.section-services .header-section .title:after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 50%;
	transform: translateX(-50%);
	width: 45px;
	height: 3px;
	background-color: #f70037;
}

.section-services .header-section .title span {
	color: #f70037;
}

.section-services .header-section .description {
	color: #6f6f71;
}

.section-services .single-service {
	margin-top: 40px;
	background-color: #24252a;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
    height: 100%;
}

.section-services .single-service .part-1 {
	padding: 40px 40px 25px;
	border-bottom: 2px solid #1d1e23;
}

.section-services .single-service .part-1 i {
	margin-bottom: 25px;
	font-size: 50px;
	color: #f70037;
}

.section-services .single-service .part-1 .title {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.8em;
}

.section-services .single-service .part-2 {
	padding: 30px 40px 40px;
}

.section-services .single-service .part-2 .description {
	margin-bottom: 22px;
	color: #6f6f71;
	font-size: 14px;
	line-height: 1.8em;
}

.section-services .single-service .part-2 a {
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}

.section-services .single-service .part-2 a i {
	margin-right: 10px;
	color: #f70037;
}
.our-clints{
    align-items: center;
    justify-content: center;
    margin:5rem 0;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
  
    100% {
      transform: translateX(calc(-10rem * 8));
    }
  }
  .our-clints .slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
  }
  .our-clints .slider .slide-track {
    animation: scroll 10s linear infinite;
    display: inline-flex;
    width: calc(250px * 14);
  }
  .our-clints .slider .slide {
    height: 100px;
    width: 250px;
  }
  .our-clints-title h1 {
    text-align:center; font-size:50px; text-transform:uppercase; color:#222; letter-spacing:1px;
    font-family:"Playfair Display", serif; font-weight:400;
  }
  .our-clints-title h1 span {
    margin-top: 5px;
      font-size:15px; color:#444; word-spacing:1px; font-weight:normal; letter-spacing:2px;
      text-transform: uppercase; font-family:"Raleway", sans-serif; font-weight:500;
  
      display: grid;
      grid-template-columns: 1fr max-content 1fr;
      grid-template-rows: 27px 0;
      grid-gap: 20px;
      align-items: center;
  }
  .our-clints-title h1 span:after{
      content: "";
      display: block;
      border-bottom: 1px solid #ccc;
      border-top: 1px solid #ccc;
      height: 5px;
    background-color:#f8f8f8;
    width: 200px;
  }
  .our-clints-title h1 span:before {
    content: "";
    display: block;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    height: 5px;
    background-color: #f8f8f8;
    width: 200px;
    margin-top: 0; 
    margin-left: auto; 
    margin-right: 0; 
  }
 
  @media(max-width: 680px) {
    .our-clints-title h1 span{
        display: none;
    }
}

/*
################################################################################################
#########################################  products Section  ##############################################
################################################################################################ */



.section-services .header-products .title {
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 25px;
	font-weight: 700;
    color:#0b2e8e;
}

.section-services .header-products .title:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 10%;
	transform: translateX(-50%);
	width: 240px;
	height: 1px;
	background-color: #f70037;
}
.section-services .header-products .title:after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 10%;
	transform: translateX(-50%);
	width: 45px;
	height: 3px;
	background-color: #f70037;
}

.section-services .header-products .title span {
	color: #f70037;
}

.section-services .header-products .description {
	color: #6f6f71;
    font-size:16px;
}

.features-head{
    position: relative;
	margin-bottom: 20px;
	padding-bottom: 15px;
	font-weight: 700;
    color:#0b2e8e;
}
.features-head span {
	color: #f70037;
}
.features-head:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: auto;
	
	width: 240px;
	height: 2px;
	background-color: #0b2e8e;
}
.features-list p {
    color: #6f6f71;
    font-size:16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center; 
}

.check-icon {
  color: #4caf50; 
  font-size: 20px;
  margin-right: 10px; 
  transition: transform 0.2s ease, color 0.2s ease;
}

.check-icon:hover {
  color: #388e3c; 
  transform: scale(1.2);
}

.demo-img ,iframe{
  max-width: 100%;
  min-height: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/*
################################################################################################
#########################################  Our Projects Section  ##############################################
################################################################################################ */
.projects {
  background-color: var(--color-blue-100, #f5f8ff);
  padding: 5rem 1rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.projects h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-blue-800);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.projects h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-blue-500);
  margin: 0.8rem auto 1.5rem;
  border-radius: 2px;
}

.projects p.subtitle {
  font-size: 1.1rem;
  color: var(--color-blue-700);
  margin-bottom: 3.5rem;
  font-weight: 500;
}

/* ====== Project Grid ====== */
.projects .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ====== Project Card ====== */
.project-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: left;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.project-card .content {
  padding: 1.5rem;
}

.project-card h3 {
  color: var(--color-blue-800);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.project-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.project-card a {
  color: var(--color-blue-600);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.project-card a:hover {
  color: var(--color-blue-800);
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .projects h2 {
    font-size: 2rem;
  }
  .projects p.subtitle {
    font-size: 1rem;
  }
}
/*
################################################################################################
######################################### Why choose us  Section  ##############################################
################################################################################################ */
.why_choose {
  background: linear-gradient(to bottom right, var(--color-blue-100), #fff);
  padding: 5rem 1rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

/* ====== Title & Subtitle ====== */
.why_choose h2 {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--color-blue-800);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why_choose h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-blue-500);
  margin: 0.8rem auto 1.5rem;
  border-radius: 2px;
}

.why_choose p.subtitle {
  font-size: 1.15rem;
  color: var(--color-blue-700);
  font-weight: 500;
  margin-bottom: 3.5rem;
}

/* ====== Container Layout ====== */
.why_choose .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ====== Each Item ====== */
.why_choose .item {
  background-color: var(--color-blue-200);
  border: 2px solid var(--color-blue-300);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  width: 260px;
  min-height: 300px;
  transition: all 0.3s ease;
}

.why_choose .item:hover {
  background-color: var(--color-blue-500);
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  color: #fff; 
}


.why_choose .item:hover h3,
.why_choose .item:hover p {
  color: #fff;
}

.why_choose .item:hover .icon {
  background-color: var(--color-blue-600);
  border-color: var(--color-blue-700);
}

.why_choose .item:hover .icon svg {
  color: #fff;
}


/* ====== Icon Circle ====== */
.why_choose .icon {
  width: 90px;
  height: 90px;
  border: 6px solid var(--color-blue-500);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
  background-color: white;
}

.why_choose .item:hover .icon {
  background-color: var(--color-blue-600);
  border-color: var(--color-blue-700);
}

.why_choose .icon svg {
  width: 50px;
  height: 50px;
  color: var(--color-blue-700);
  transition: color 0.3s ease;
}

.why_choose .item:hover .icon svg {
  color: #fff;
}

/* ====== Text Styles ====== */
.why_choose .item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-blue-800);
  margin-bottom: 0.75rem;
}

.why_choose .item p {
  font-size: 0.95rem;
  color: var(--color-blue-900);
  line-height: 1.5;
}

/* ====== Responsive ====== */
@media (max-width: 1024px) {
  .why_choose .item {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .why_choose h2 {
    font-size: 2rem;
  }
  .why_choose p.subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  .why_choose .item {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .why_choose .item {
    width: 100%;
  }
  .why_choose h2 {
    font-size: 1.75rem;
  }
}
/*
################################################################################################
#########################################  Our Clients Section  ##############################################
################################################################################################ */

.our_clients {
  background-color: var(--color-gray-100);
  padding: 5rem 2rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.our_clients h2 {
  font-size: 2.5rem;
  color: var(--color-blue-500);
  margin-bottom: 0.5rem;
}

.our_clients .subtitle {
  color: var(--color-gray-700);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

/* Clients Grid */
.clients_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.client_card {
   display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px; 
  padding: 1rem 1.5rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  color: var(--color-gray-700);
  font-weight: 600;
  font-size: 1rem;
}

.client_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  background-color: var(--color-blue-400);
  color: #fff;
}

.client_card img {
 max-width: 100%;
  max-height: 60px; 
  object-fit: contain;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .our_clients {
    padding: 3rem 1rem;
  }
  .client_card img {
    max-height: 60px;
  }
}