/*
 * Custom CSS for: Home
 * Page: /home
 * Generated: 2026-04-16 09:57:57
 */

/* ==============================
              Home
=============================== */
.icon {
    position: absolute;
    width: 59px;
    height: 59px;
    animation: float 6s infinite ease-in-out;
}

.icon-1 {
    left: 20%;
    top: 25%;
}

.icon-2 {
    left: 12%;
    top: 38%;
}

.icon-3 {
    left: 22%;
    top: 52%;
}

.icon-4 {
    left: 15%;
    top: 68%;
}

.icon-5 {
    right: 20%;
    top: 25%;
}

.icon-6 {
    right: 12%;
    top: 38%;
}

.icon-7 {
    right: 22%;
    top: 52%;
}

.icon-8 {
    right: 15%;
    top: 68%;
}

section.hero {
    width: 100%;
    height: 100%;
    background: url("/storage/app/public/media/grid-with-color-1-1.webp");
    top: 0;
    left: 0;
    padding: 350px 0px 200px 0px !important;t
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-content h1 {
    color: var(--jdg-white);
    font-size: clamp(40px, 4vw, 72px) !important;
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--jdg-heading-font-family);
}

.hero-content p {
    color: var(--jdg-white);
    font-size: 1.125rem;
    font-family: var(--jdg-body-font-family);
    margin: 0px;
}

.meeting-btn {
    margin-top: 60px;
}
.logo-slider-main {
    padding-bottom: 0;
}

/* ============================================
   Logo Slider
=============================================== */

.logo-slider {
    width: 100%;
    overflow: hidden;
    padding: 0 20px 0 0;
}

.logo-track {
    display: flex;
    gap: 20px;
    /* animation: scroll 10s linear infinite; */
    animation: jdgScroll 20s linear infinite;
}

.logo-item {
    position: relative;
    height: 70px;
    flex: 0 0 calc((100% - 8 * 20px) / 9);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: transparent;
    overflow: hidden;
    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

.logo-item:hover {
    background: var(--jdg-white);
    border-color: var(--jdg-white);
}

.logo-item img {
    position: absolute;
    width: 70%;
    height: 70%;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* default: show white logo */
.logo-item .bw {
    opacity: 1;
}

/* hide dark version initially */
.logo-item .color {
    opacity: 0;
}

/* on hover: show dark version */
.logo-item:hover .bw {
    opacity: 0;
}

.logo-item:hover .color {
    opacity: 1;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* ============================================
   SERVICES
=============================================== */
.service-card {
    background: linear-gradient(
        135deg,
        rgba(30, 30, 30, 0.8) 0%,
        rgba(20, 20, 20, 0.9) 100%
    );
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    background: linear-gradient(
        180deg,
        rgba(99, 102, 241, 0.15) 0%,
        rgba(99, 102, 241, 0.05) 50%,
        transparent 100%
    );
    border-radius: 0 12px 0 0;
    opacity: 0;
}

.service-card:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 0;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(50px) scale(0.5);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card:hover .card-icon {
    height: 70px;
    margin-bottom: 10px;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.card-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
    flex-shrink: 0;
}

.card-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.service-description {
    color: #9ca3af;
    font-family: var(--jdg-body-font-family);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.learn-more {
    color: var(--jdg-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.learn-more::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1 0%, #4f46e5 100%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .learn-more::after {
    width: 100%;
}

.learn-more:hover {
    color: #6366f1;
}

/* ============================================
   WORK
=============================================== */

.stack-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 589px;
    perspective: 1200px;
    perspective-origin: 50% 50%;
}

.slide {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--jdg-white);
    will-change: transform, opacity, filter;
    /* FIX: 0.85s instead of 1.5s — fully settles before next cycle */
    transition:
        transform 0.85s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.85s cubic-bezier(0.4, 0, 0.2, 1),
        z-index 0s linear 0.425s;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

/* Stack positions — pos-2 is center/active */
.pos-0 {
    transform: translateY(-110px) scale(0.88) rotateX(8deg);
    opacity: 0.35;
    z-index: 1;
    filter: blur(2px) brightness(0.6);
}

.pos-1 {
    transform: translateY(-55px) scale(0.94) rotateX(4deg);
    opacity: 0.65;
    z-index: 2;
    filter: blur(0.8px) brightness(0.8);
}

.pos-2 {
    transform: translateY(0) scale(1) rotateX(0deg);
    opacity: 1;
    z-index: 5;
    filter: blur(0px) brightness(1);
}

.pos-3 {
    transform: translateY(55px) scale(0.94) rotateX(-4deg);
    opacity: 0.65;
    z-index: 2;
    filter: blur(0.8px) brightness(0.8);
}

.pos-4 {
    transform: translateY(110px) scale(0.88) rotateX(-8deg);
    opacity: 0.35;
    z-index: 1;
    filter: blur(2px) brightness(0.6);
}

/* Slides outside the 5 slots — fade out smoothly, no jump */
.slide-hidden {
    opacity: 0 !important;
    pointer-events: none;
    z-index: 0;
    transition:
        opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-btn-box {
    padding-top: 60px;
}

/* Dots */
.work .slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 80px;
    position: relative;
    z-index: 10;
    padding: 20px 0;
}

.work-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    padding: 0;
}

.work-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.work-dot.active {
    background: var(--jdg-btn-gradient);
    width: 35px;
    border-radius: 6px;
    border: 0;
    background-size: cover;
    border-color: transparent;
}

.work {
    overflow: visible;
}

.service-title {
    color: var(--jdg-white);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   ABOUT
=============================================== */
/* LEFT CARD */
.about-card {
    background: #00000075;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
    padding: 15px 17px;
}

.about-img {
    width: 100%;
    display: block;
}

.about-card-content {
    padding: 29px 0px 0px 0px;
}

.about-card-content h5 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--jdg-white);
}

.about-card-content p {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--jdg-white);
    margin: 0;
}

/* RIGHT CONTENT */
.about-title {
    font-size: clamp(2rem, 2.5vw, 3rem);
    font-weight: 400;
    color: var(--jdg-white);
    line-height: 1.25;
    margin-bottom: 35px;
}

.about-desc {
    color: var(--jdg-gray);
    font-size: 1.125rem;
    max-width: 100%;
    font-family: var(--jdg-body-font-family);
}

/* STATS */
.stats-row {
    margin-top: 40px;
}

/* STAT BOX */
.stat-box {
    padding-top: 10px;
}

.stat-label {
    font-family: var(--jdg-heading-font-family);
    font-weight: 400;
    color: var(--jdg-gray);
    font-size: 0.875rem;
}

/* HEADER */
.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    letter-spacing: 1px;
    color: #9ca3af;
    text-transform: uppercase;
}

/* ICON */
.stat-icon {
    font-size: 14px;
    color: #e5e7eb;
}

/* DIVIDER LINE */
.stat-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 12px 0 28px;
}

/* NUMBER */
.stat-box h3 {
    font-size: clamp(3rem, 4vw, 6.25rem);;
    font-weight: 500;
    color: var(--jdg-white);
    margin-bottom: 10px;
}

/* TEXT */
.stat-box p {
    font-size: 1.125rem;
    color: var(--jdg-gray);
    font-family: var(--jdg-body-font-family);
}

/* ============================================
   Service Tech
=============================================== */
/* Shimmer Headline */
.headline-container {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.headline-container::before,
.headline-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 300px;
    z-index: 2;
    pointer-events: none;
}

.headline-container::before {
    left: 0;
    background: linear-gradient(
        to right,
        rgba(15, 15, 16, 1) 0%,
        rgba(15, 15, 16, 0.8) 30%,
        rgba(15, 15, 16, 0) 100%
    );
}

.headline-container::after {
    right: 0;
    background: linear-gradient(
        to left,
        rgba(15, 15, 16, 1) 0%,
        rgba(15, 15, 16, 0.8) 30%,
        rgba(15, 15, 16, 0) 100%
    );
}

.headline-scroll {
    display: flex;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    font-family: var(--jdg-heading-font-family);
    font-size: 7.5rem;
    font-weight: 400;
}

.headline-text {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    margin: 0 3rem;
    background: linear-gradient(
        90deg,
        rgba(40, 40, 40, 0.6) 0%,
        rgba(80, 80, 80, 0.8) 20%,
        rgba(150, 150, 150, 1) 40%,
        rgba(200, 200, 200, 1) 50%,
        rgba(150, 150, 150, 1) 60%,
        rgba(80, 80, 80, 0.8) 80%,
        rgba(40, 40, 40, 0.6) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 8s ease-in-out infinite;
}

/* Service Tech Heading */
.service-tech-heading {
    padding: 60px 0;
}

.service-tech-heading .section-main-title {
  width: 65%;
}

/*.award-title h2 {*/
/*    font-weight: 400;*/
/*    font-size: clamp(28px, 4vw, 48px);*/
/*    line-height: clamp(36px, 5vw, 58px);*/
/*    letter-spacing: -0.03em;*/
/*    color: #ffffff;*/
/*    margin-bottom: 80px;*/
/*}*/

/*.main-heading {*/
/*    font-size: clamp(2rem, 3vw, 3rem);*/
/*    font-weight: 300;*/
/*    line-height: 1.3;*/
/*    color: var(--jdg-white);*/
/*    margin-bottom: 80px;*/
/*}*/

.heading-emoji {
    /* display: inline-flex; */
    align-items: center;
    gap: 0.5rem;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.8s ease;
}

.primary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* grwoth slider */
.growth-slider {
    width: 100%;
    overflow: hidden;
    /* Space for scaling */
    position: relative;
}

/* The Track moves inside the container */
.growth-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
}

.growth-card {
    flex-shrink: 0;

    /* Transition for smooth active state */
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;

    /* Keep your existing styles */
    padding: 25px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 25px;
    position: relative;
    border: none;
    display: flex;
    flex-direction: column;
}

.growth-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 1px;
    background: linear-gradient(
        150.09deg,
        rgba(49, 249, 187, 0.3) -3.04%,
        rgba(79, 70, 229, 0.3) 80.38%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.growth-title h2 {
    font-style: normal;
    font-weight: 700;
    font-size: clamp(48px, 8vw, 120px);
    line-height: 0.86;
    text-align: center;
    letter-spacing: -0.03em;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        rgba(10, 10, 10, 0) 113.24%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.growth-title p {
    font-weight: 700;
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: clamp(18px, 1.4vw, 20px);
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
}

.growth-title hr {
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: clamp(280px, 40vw, 407px);
}

.growth-title {
    margin-bottom: 30px;
}

.growth-img {
    border-radius: 15px;
    margin-bottom: 30px;
}

.growth-img img {
    border-radius: 15px;
}

.growth-cn p.title {
    font-weight: 700;
    font-size: clamp(14px, 1.3vw, 18px);
    line-height: clamp(18px, 1.6vw, 23px);
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 13px;
}

.growth-cn p {
    font-weight: 400;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: clamp(18px, 1.6vw, 23px);
    text-align: center;
    color: #666666;
}

.growth-card.active {
    background: linear-gradient(340.65deg, #0b0573 -12.99%, #0f0f10 91.84%);
}

.growth-card.active p {
    color: #fff;
}

/* Container for the dots */
.growth-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    /* Space between slider and dots */
    width: 100%;
    position: relative;
    z-index: 10;
}

/* The Dot Styling */
.growth-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Active Dot Styling */
.growth-dot.active {
    background: var(--jdg-btn-gradient);
    width: 35px;
    border-radius: 6px;
    background-size: cover;
    border: 0;
}

/* Hover Effect */
.growth-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ============================================
   TESTIMONIALS
=============================================== */
/* LEFT */
.left-wrapper {
    position: relative;
    min-height: 312px;
}

/*.left-content h2 {*/
/*    font-size: 3rem;*/
/*    font-weight: 300;*/
/*    line-height: 1.3;*/
/*    color: var(--jdg-white);*/
/*    max-width: 100%;*/
/*}*/

/* AVATARS */
.avatar-group {
    display: inline-block;
   margin: 0 18px;
    margin-right: 8px;
}

.avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-left: -18px;
}

/* STICKY STATES */
.left-fixed {
    position: fixed;
    top: 90px;
    z-index: 10;
}

.left-stop {
    position: absolute;
    bottom: 0;
    top: auto;
}

/* RIGHT */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    position: relative;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card.light {
    background: #fff;
    color: #111;
    border: 1px solid transparent;
}

.testimonial-card.light p{
  color:#333;
}

.testimonial-card.light .author span{
  color: #333;
}

.testimonial-card .author strong {
    font-family: var(--jdg-body-font-family);
    font-weight: 400;
    font-size: 1.25rem;
}

.testimonial-card.dark {
    background: #111;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stars {
    color: #ff9f1c;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: clamp(1.5625rem, 1.8vw, 2rem);
    line-height: 40px;
    font-family: var(--jdg-heading-font-family);
    font-weight: 300;
}

.author {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
    font-size: 13px;
}

.dark .author {
    border-color: rgba(255, 255, 255, 0.1);
}

.author span {
    display: block;
    font-size: 0.875rem;
    color: var(--jdg-gray);
    font-family: var(--jdg-body-font-family);
    font-weight: 400;
}

/* CARD AVATAR */
.card-avatar {
    position: absolute;
    bottom: 18px;
    right: 18px;
}

.card-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

/* ============================================
   BLOG
=============================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.blog-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.blog-card-top {
    transform: translateY(-30px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.blog-card:hover .blog-card-top {
    transform: translateY(0);
    opacity: 1;
}

.blog-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
}

.blog-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    margin-left: 15px;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 15px;
}

.blog-card-bottom {
    display: flex;
    justify-content: flex-end;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.blog-card:hover .blog-card-bottom {
    transform: translateY(0);
    opacity: 1;
}

.blog-arrow {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.blog-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #000;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.blog-arrow svg path {
  stroke: #000 !important;
}

/* Mobile Slider */
.mobile-slider-wrapper {
    display: none;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
}

.mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.mobile-slider .blog-card {
    min-width: 85%;
    flex-shrink: 0;
}


.award-logo .logo-pill img{
  width: 274px;
  height: 216px;
}

@media screen and (max-width: 1599px){
  .service-tech-wrapper{
    padding-top: 0 !important;
  }
  
  .service-tech-tags{
   margin-bottom: 1rem !important; 
  }

  .left-fixed{
    top: 40px;
  }
  
  .cta-content{
     max-width: 900px !important;
  }  
  
  .service-tech-wrapper{
    padding-top: 0 !important;
  }
  
  .service-tech-content{
    padding-right: 3.5rem !important;
  }
  
  .service-tech-gallery{
    max-width: 650px !important;
  }
  
  
}


@media (min-width: 1600px) {
    .icon-1 {
        left: 24%;
        top: 26%;
    }

    .icon-2 {
        left: 16%;
        top: 40%;
    }

    .icon-3 {
        left: 23%;
        top: 54%;
    }

    .icon-4 {
        left: 18%;
        top: 73%;
    }

    /* Right side icons */

    .icon-5 {
        right: 24%;
        top: 26%;
    }

    .icon-6 {
        right: 16%;
        top: 40%;
    }

    .icon-7 {
        right: 23%;
        top: 54%;
    }

    .icon-8 {
        right: 18%;
        top: 73%;
    }
}

/*@media screen and (max-height: 800px) {*/
    /*.hero {*/
    /*    padding-top: 250px;*/
    /*}*/
    /*.about {*/
    /*    padding: 75px 165px;*/
    /*}*/
    /*.about-desc {*/
    /*    max-width: 725px;*/
    /*}*/
    /*.service-tech {*/
    /*    padding: 75px 200px;*/
    /*}*/
    /* Left side icons */

    /*.services .container {*/
    /*    padding: 0px 140px;*/
    /*}*/
/*}*/

@media screen and (max-width:1399px){
  .blog-card{
    height: 420px !important;
  }
}



@media (max-width: 1439px) and (max-height: 799px) {
 section.hero{
   padding-top: 300px !important;
 }
}

@media (max-width: 769px) {
    .service-tech-heading .section-main-title {
        width: 100%;
    }
    
    .mobile-slider-wrapper{
      padding-bottom: 0;
    }
    
    .blog-card-overlay{
      opacity: 1;
    }
    
    .blog-card-top {
      transform: translateY(0);
      opacity: 1;
    }
    
    .blog-card-bottom {
        transform: translateY(0);
        opacity: 1;
    }
    
    .blog-card-image img {
      transform: scale(1);
    }
    
    .blog-card:hover .blog-card-image img {
      transform: scale(1);
    }
}

@media (max-width: 576px) {
    section.about{
      padding-bottom:0 !important;
    }
}