  
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
  
  
  :root {
  --primary-font: 'Inter';
  --secondary-font: 'Inter';

  --primary-color: #4CAF4F;
  --secondary-color: #3ac36a;
  --accent-color: #4D4D4D;
  --accent-color-text: #717171;
  --category-tag-font: #6D757F;
  --category-subheading-tag: #183354;
  --background-color: #ffffff;
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--primary-font);
            /* background: #0a0a0a; */
            color: #fff;
            overflow-x: hidden;
        }


        /*loader  */
        
/* .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: all 0.8s ease;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-content {
            text-align: center;
            animation: loaderFadeIn 1s ease-out;
        }

        @keyframes loaderFadeIn {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .loader-logo {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #fff 0%, #ff6600 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            animation: logoGlow 2s ease-in-out infinite alternate;
        }

        @keyframes logoGlow {
            0% {
                filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.3));
            }
            100% {
                filter: drop-shadow(0 0 20px rgba(255, 102, 0, 0.6));
            }
        }

        .loader-spinner {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            position: relative;
        }

        .loader-spinner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 3px solid rgba(255, 102, 0, 0.1);
            border-top: 3px solid #ff6600;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .loader-spinner::after {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            width: 60px;
            height: 60px;
            border: 3px solid rgba(255, 102, 0, 0.1);
            border-top: 3px solid #e05400;
            border-radius: 50%;
            animation: spinReverse 1.5s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes spinReverse {
            0% {
                transform: rotate(360deg);
            }
            100% {
                transform: rotate(0deg);
            }
        }

        .loader-text {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            animation: textPulse 2s ease-in-out infinite;
        }

        @keyframes textPulse {
            0%, 100% {
                opacity: 0.5;
            }
            50% {
                opacity: 1;
            }
        }

        .loader-progress {
            width: 200px;
            height: 3px;
            background: rgba(255, 102, 0, 0.1);
            border-radius: 3px;
            margin: 1.5rem auto 0;
            overflow: hidden;
            position: relative;
        }

        .loader-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #ff6600, #e05400);
            border-radius: 3px;
            width: 0%;
            animation: progressFill 3s ease-in-out;
        }

        @keyframes progressFill {
            0% {
                width: 0%;
            }
            100% {
                width: 100%;
            }
        }

        .loader-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #ff6600;
            border-radius: 50%;
            animation: particleFloat 4s ease-in-out infinite;
        }

        .particle:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            top: 60%;
            left: 20%;
            animation-delay: 0.5s;
        }

        .particle:nth-child(3) {
            top: 30%;
            right: 15%;
            animation-delay: 1s;
        }

        .particle:nth-child(4) {
            bottom: 25%;
            right: 25%;
            animation-delay: 1.5s;
        }

        .particle:nth-child(5) {
            bottom: 40%;
            left: 15%;
            animation-delay: 2s;
        }

        @keyframes particleFloat {
            0%, 100% {
                transform: translateY(0px) scale(0.8);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-20px) scale(1.2);
                opacity: 1;
            }
        } */

/* loader ends */

/* Navigation Base */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    padding: 10px;
    display: block;
}

/* Dropdown Base */
.dropdown-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    padding: 10px 0;
    min-width: 180px;
    display: none;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 99;
}

.dropdown-menu li a {
    padding: 10px 15px;
    display: block;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #f3f3f3;
}

/* Show on Hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: transparent !important;
            backdrop-filter: none !important;
            border: none;
            /* border-bottom: 1px solid rgba(255, 102, 0, 0.1); */
            transition: all 0.3s ease;
        }

        header.header.scrolled {
            background: #fff !important;
            box-shadow:0 5px 30px rgb(0 0 0 / 5%);
        }
.header.scrolled ul#menu-new-menu-type>li>a{
    color: rgba(60, 76, 65, 1) !important;
}

.header.scrolled ul#menu-new-menu-type>li>a:hover {
    color: var(--primary-color) !important; /* optional hover color */
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: 25px;
}

.icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    transition: color 0.3s ease;
}

.header.scrolled .icon-btn {
    color: #000;
}
.search-overlay {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    transition: top 0.4s ease-in-out;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.search-overlay.active {
    top: 70px; /* below header */
}

.search-box {
    width: 100%;
    max-width: 650px;
    display: flex;
    align-items: center;
    border: 2px solid #000;
    border-radius: 50px;
    padding: 5px 15px;
}

.search-box input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 18px;
}

.search-box button.close-search {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: #000;
}
/* Scroll Down Arrow */
img.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    /* transform: translateX(-50%); */
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* transition: .3s ease-in-out;
    animation: bounce 1.8s infinite; */
    z-index: 10;
}



/* Bounce animation */
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -12px); }
}


        .nav-container {
            max-width: 1200px;
            margin: 3px 80px;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* height: 70px; */
            
        }
nav {
    left: 35%;
    position: absolute;
    top: 25px;
}
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            /* background: linear-gradient(135deg, #fff 0%, #ff6600 100%); */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            transition: all 0.3s ease;
        }
/* 
        .logo:hover {
            filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.5));
        } */

        .logo-img {
            width: auto;
            height: auto;
            border-radius:0;
            transition: all 0.3s ease;
        }

        /* .logo:hover .logo-img {
            transform: scale(1.6);
            filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.3));
        } */
ul#menu-header-menu>li>a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
.header.scrolled ul#menu-header-menu>li>a {
    color: rgba(60, 76, 65, 1);
    padding: 10px;
}
    

        .nav-link {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-family: var(--primary-font);
            font-size: 16px;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var( --secondary-color));
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 3px 0;
            transition: 0.3s;
            border-radius:0;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        

        .techversion-hero-container {
            display: flex;
            justify-content: center;
            /* background: linear-gradient(90deg, #10121647 0%, #0e10143b 100%); */
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            /* margin-top: 60px; */
        }

        .techversion-hero-fullscreen {
            position: relative;
            width: 100%;
            height: 100vh;
            max-width: 100vw;
            max-height: 100vh;
            border-radius:0;
            overflow: hidden;
            /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 100px rgba(255, 102, 0, 0.1); */
            animation: heroFloat 6s ease-in-out infinite;
            /* top: -25px; */
        }

        @keyframes heroFloat {
            0%, 100% {
                transform: translateY(0px) scale(1);
            }
            50% {
                transform: translateY(-10px) scale(1.005);
            }
        }

        .techversion-hero-slider,
        .swiper-wrapper,
        .swiper-slide {
            width: 100%;
            height: 100%;
            border-radius: 0;
        }

        .techversion-hero-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            z-index: 1;
            transition: transform 0.5s ease;
        }

        .techversion-hero-video:hover {
            transform: scale(1.05);
        }

        .techversion-hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            /* background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, #0c0d19 50%, rgba(0, 0, 0, 0.6) 100%); */
                background: #161c2de6;
        }

        .techversion-hero-overlay::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 40%;
            /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 70%, transparent 100%); */
            pointer-events: none;
        }

        .techversion-hero-overlay::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40%;
            /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 70%, transparent 100%); */
            pointer-events: none;
        }

        .tv-hero-content {
            position: absolute;
            z-index: 3;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 600px;
            text-align: center;
            color: #fff;
            animation: contentFadeIn 2s ease-out;
        }

        @keyframes contentFadeIn {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translate(-50%, -50%) translateY(0);
            }
        }

        .tv-hero-title {
            font-size: clamp(2rem, 4vw, 60px);
            font-weight: 700;
            margin: 0 0 1.5rem;
            /* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7); */
            background: linear-gradient(135deg, #fff 0%, #fff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            /* animation: titleGlow 3s ease-in-out infinite alternate; */
        }

        @keyframes titleGlow {
            0% {
                filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.3));
            }
            100% {
                filter: drop-shadow(0 0 20px rgba(255, 102, 0, 0.6));
            }
        }

        .tv-hero-subtitle {
            color: var(--primary-color);
           font-size: clamp(14px, 2vw, 16px);
            font-weight: 600;
            margin: 0 0 2.5rem;
            /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8); */
            opacity: 0.9;
            line-height: 1.6;
            animation: subtitleSlide 2s ease-out 0.5s both;
        }

        @keyframes subtitleSlide {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 0.9;
                transform: translateY(0);
            }
        }

        .tv-hero-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: #fff;
            padding: 1rem 2.5rem;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            /* box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3); */
            animation: buttonBounce 2s ease-out 1s both;
        }

        @keyframes buttonBounce {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.8);
            }
            60% {
                opacity: 1;
                transform: translateY(-5px) scale(1.05);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .tv-hero-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .tv-hero-btn:hover::before {
            left: 100%;
        }

        .tv-hero-btn:hover {
            transform: translateY(-3px) scale(1.05);
            /* box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4); */
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: #fff;
        }

        .tv-hero-btn:active {
            transform: translateY(-1px) scale(1.02);
        }

        .techversion-hero-container::before {
            content: "";
            position: absolute;
            top: 10%;
            left: 10%;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
            /* border-radius: 50%; */
            animation: float1 8s ease-in-out infinite;
        }

        .techversion-hero-container::after {
            content: "";
            position: absolute;
            bottom: 15%;
            right: 15%;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
            /* border-radius: 50%; */
            animation: float2 10s ease-in-out infinite;
        }

        @keyframes float1 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(20px, -30px) rotate(90deg);
            }
            50% {
                transform: translate(-10px, -20px) rotate(180deg);
            }
            75% {
                transform: translate(-30px, 10px) rotate(270deg);
            }
        }

        @keyframes float2 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(-25px, 20px) rotate(120deg);
            }
            66% {
                transform: translate(15px, -25px) rotate(240deg);
            }
        }

        .techversion-hero-fullscreen {
            opacity: 0;
            animation: heroAppear 1.5s ease-out 0.5s both;
        }

        @keyframes heroAppear {
            0% {
                opacity: 0;
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @media (max-width: 1280px) {
            .techversion-hero-fullscreen {
                width: 95vw;
                height: calc(95vw * 0.5625);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(10, 10, 10, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 1rem 0;
            }

            .menu-toggle {
                display: flex;
            }

            .techversion-hero-container {
                padding: 0rem;
            }

            .techversion-hero-fullscreen {
                width: 100vw;
                height: 60vh;
                min-height: 400px;
                border-radius: 0;
            }

            .tv-hero-title {
                font-size: clamp(1.8rem, 6vw, 2.5rem);
            }

            .tv-hero-subtitle {
                font-size: clamp(1rem, 4vw, 1.2rem);
                margin-bottom: 2rem;
            }

            .tv-hero-btn {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 1rem;
            }

            .techversion-hero-fullscreen {
                height: 50vh;
                min-height: 350px;
                border-radius: 0;
            }

            .tv-hero-content {
                width: 95%;
            }

            .tv-hero-btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }
        }
/* -----section 2 */
/* .section-two .row > div {
   padding-left: 20px;
   padding-right: 20px;
} */
.partial-section {
    background: #fff;
}
.section-two {
    padding: 100px 50px 10px 50px;
    margin-bottom: 10px;
}
h1.section-two-heading {
    font-size: 36px;
    color: var(--accent-color);
    font-weight: 600;
    text-align: center;
    padding-bottom: 20px;

}
p.section-two-para {
    font-size: 16px;
    font-weight: 400;
    color: var(--accent-color-text);
    text-align: center;
    line-height: 1.6;
    padding-bottom: 20px;
}
/* .card {
      text-align: center;
          background: rgb(114 114 114 / 5%);
          border-radius: 6px;
}
.card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    align-items: center;
}
.card-body>h1 {
    font-size: 22px;
    color: var(--accent-color);
    text-align: center;
    font-weight: 700;
}
.card-body>p {
    font-size: 15px;
    font-weight: 400;
    color: var(--accent-color);
    text-align: center;
} */

.front {
  position: relative;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  padding: 6px 8px;
  /* background: rgba(0, 0, 0, 0.45); */
  border-radius: 6px;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.6)
  );
}
.flip {
  perspective: 1000px;
}

.flip .card {
  width: 100%;
  height: 350px;
  position: relative;
  transition: transform .7s;
  transform-style: preserve-3d;
  border: none;
}

.flip:hover .card {
  transform: rotateY(180deg);
}

.face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

.front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .back {
  text-align: center;
  background: rgba(77, 175, 80, 1);
  border-radius: 6px;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
} */
.face.back>h4 {
    font-size: 22px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    line-height: 36px;
    padding: 25px 0px;
}
.face.back>p {
   font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 30px;
    padding-top: 50px;
}
a.learn-more {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  align-items: center;
  margin-top: auto;
      line-height: 1.7;
      padding-bottom: 50px;
}

a.learn-more  .arrow {
  transition: transform 0.3s ease;
  margin-left: 5px;
}

a.learn-more:hover .arrow {
  transform: translateX(4px);
}
/* img.card-img-top {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
} */

/* ------------------- */
.back {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 6px;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  overflow: hidden;
}

/* Green to transparent gradient overlay */
.back::before {
  content: "";
  position: absolute;
  inset: 0;
  background:rgb(77 175 80 / 87%);/* SAME TRANSPARENT GREEN FULL CARD */
  z-index: 1;
}


/* Make sure back card text appears above overlay */
.back * {
  position: relative;
  z-index: 2;
}
/* ends */
/* Section Header */
.trending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.trending-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #000;
}

/* .view-all-btn {
    background-color: var(--secondary-color); 
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
} */

.view-all-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}
a.view-all-btn {
    background-color: var(--secondary-color); 
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
}
/* Hover effect */
.view-all-btn:hover {
    background-color: var(--primary-color); /* darker green */
}

.view-all-btn:hover i {
    transform: translate(3px, -3px);
}

.progress-line {
    /* width: 100%; */
    height: 4px;
    /* background-color: #ddd;  */
    position: relative;
    margin-bottom: 20px;
}

/* Filled Progress using Image */
.progress-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Progress width */
    height: 6px;
    background-image: url("https://staging.techversions.com/assets/Icon-Section-Borders.png");
    background-repeat: no-repeat;
    background-size: cover;
}
.progress-line-video {
    height: 4px;
    /* background-color: #ddd;  */
    position: relative;
    margin-bottom: 20px;
}

/* Filled Progress using Image */
.progress-line-video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 93%; /* Progress width */
    height: 6px;
    background-image: url("https://staging.techversions.com/assets/Icon-Section-Borders.png");
    background-repeat: no-repeat;
    background-size: cover;
}
/* Cards Grid */
.card-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0;
    margin-top: 35px;
}

/* Card Style */
.thumbnail-card {
    /* background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); */
    transition: transform 0.3s ease;
    /* text-align: center; */
    position: relative; /* required for badge */
}

.thumbnail-card:hover {
    transform: translateY(-6px);
}

/* Card Image */
.thumbnail-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    /* border-radius: 10px; */
    /* margin-bottom: 10px; */
}

/* Card Text */
.thumbnail-card h3>a {
    font-size: 20px;
    text-decoration: none;
    color: var(--category-subheading-tag);
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.5;
}

.thumbnail-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

/* Sponsored Badge (for 1st card only) */
.sponsored-badge {
    position: absolute;
    background: var(--primary-color); /* green */
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px;
    text-transform: uppercase;
    z-index: 10;
        border-top-left-radius: 0px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .card-wrapper {
        grid-template-columns: 1fr;
    }
}
/* Category Tag */
.category-tag {
    font-size: 13px;
    font-weight: 500;
    color: var(--category-tag-font);
    text-transform: uppercase;
    display: flex;
    margin-top: 10px;
    margin-bottom: 6px;
    margin-left: 2px;
}

/* Meta Info */
.post-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
    color: var(--category-tag-font);
    margin-top: 10px;
    text-transform: uppercase;
    gap: 5px;
}

.post-meta i {
    margin-right: 5px;
    font-size: 0.85rem;
}

.section-three {
    padding: 100px 50px 50px 50px;
    /* margin-bottom: 40px; */
}
/* ---------- */


/* section two style */

.trending-header-two {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.trending-header-two h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #000;
}

/* .view-all-btn {
    background-color: var(--primary-color); 
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

.view-all-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}


.view-all-btn:hover {
    background-color: var(--secondary-color); 
}

.view-all-btn:hover i {
    transform: translate(3px, -3px);
} */

/* Cards Grid */
.card-wrapper-two {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
margin-top: 35px;
}

/* Card Style */
.thumbnail-card-two {
    /* background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); */
    transition: transform 0.3s ease;
    /* text-align: center; */
    position: relative; /* required for badge */
}

.thumbnail-card-two:hover {
    transform: translateY(-6px);
}

/* Card Image */
.thumbnail-card-two img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    /* border-radius: 10px; */
    margin-bottom: 10px;
}

/* Card Text */
.thumbnail-card-two h3>a {
    font-size: 20px;
    color: var(--category-subheading-tag);
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.5;
    text-decoration: none;
}

.thumbnail-card-two p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

/* Sponsored Badge (for 1st card only) */
.sponsored-badge-two {
    position: absolute;
    background: var(--primary-color); /* green */
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px;
    text-transform: uppercase;
    z-index: 10;
        border-top-left-radius: 0px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .card-wrapper-two {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .card-wrapper-two {
        grid-template-columns: 1fr;
    }
}
/* Category Tag */
.category-tag-two {
    font-size: 13px;
    font-weight: 500;
    color: var(--category-tag-font);
    text-transform: uppercase;
    display: flex;
    /* margin-top: -6px; */
    margin-bottom: 6px;
    margin-left: 2px;
}
section#next-section {
       margin-left: -45px;
    margin-right: -46px;
}
/* Meta Info */
.post-meta-two {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 400;
    color: var(--category-tag-font);
    margin-top: 10px;
    text-transform: uppercase;
}

.post-meta-two i {
    margin-right: 5px;
    font-size: 0.85rem;
}
.section-four {
    padding: 50px;
    margin-bottom: 30px;
}
/* ------- */
hr.solid {
  border-top: 3px solid #DFDFDF;
  width: 100%;
  max-width: 1140px; /* Same as Bootstrap container */
  margin: 20px auto; /* center inside page */
}

@keyframes slides {
  from {
    transform: translateX(-10%);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  margin-top:30px;
  white-space: nowrap;
  position: relative;
}

.logos:before, .logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  /* background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255)); */
}

.logos:after {
  right: 0;
  /* background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255)); */
}

.logo_items {
  display: inline-block;
  animation: 35s slides infinite linear;
  gap: 60px;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img{
  margin-right: 60px;   /* spacing between images */
  height: 40px;         /* adjust your height here */
  width: auto;
}



@keyframes slides {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logos {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  padding: 0px 0 0px 0px;
}

/* Left + Right Fade Masks */
.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to right, white 10%, rgba(255,255,255,0));
}

.logos:after {
  right: 0;
  background: linear-gradient(to left, white 10%, rgba(255,255,255,0));
}

.logo_items {
  display: flex;
  align-items: center;
  animation: slides 20s linear infinite;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img {
  margin-right: 60px;
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity .2s;
}

.logo_items img:hover {
  opacity: 1;
}
h2.trusted_header {
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 20px;
}
p.trusted_para {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    line-height: 30px;
    color: var(--accent-color-text);
}
/* ---------- */
.feature-card {
  background: #fff;
  padding: 45px 30px;
  height: 350px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
  transition: 0.3s;
      margin-right: 30px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 40px;
  color: #20c997; /* Green Icon */
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 24px;
  color: #3C4C41;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.feature-card p {
  font-size: 17px;
  font-weight: 400;
  line-height: 29px;
  text-align: center;
  color: #161C2D;
}
.section_five {
    background: #3C4C41;
    padding: 30px;
}
h1.b2b_header {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
}
p.b2b_para {
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    line-height: 32px;
    padding-bottom: 20px;
        color: #ccccccdb;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 40px;
  /* margin-top: 30px; */
}

.schedule-item {
  display: flex;
  gap: 12px;
  padding-bottom: 20px;
  align-items: flex-start;
}

.schedule-item .icon {
  width: 35px;
  height: 35px;
  min-width: 35px;
  background: #028a3d;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.schedule-item h4 {
  margin: 0;
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    line-height: 32px;
}

.schedule-item p {
    margin: 4px 0 0;
    font-size: 16px;
    line-height: 29px;
    font-weight: 300;
    color: #ccccccdb;
}

/* Mobile responsive */
@media(max-width: 768px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }
}
p.schedule-footer {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    padding: 30px 0px;
}
p.schedule-footer a {
    color: var(--primary-color);
    text-decoration: none;
}
.schedule-list.container {
    padding: 100px 0px 10px 0px;
}
/* -------------- */
.hero-card {
  max-height: 320px;
}
 
.hero-card img {
  object-fit: cover;
}
 
.icon-card {
  padding: 5px 0px 40px 0px;
  width: 280px;
  /* background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s ease, transform 0.2s ease; */
}
/*  
.icon-card:hover {
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
} */
 
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background-color: #ecfdf3;
  color: #16a34a;
  font-size: 18px;
}
 
.link-success {
  color: #16a34a;
}
 
.link-success:hover {
  color: #15803d;
}
 /* ----ends---------- */
/* section 6 css starts */
.section_six {
    padding: 50px 50px;
    margin-bottom: 30px;
}
.resources-section {
    margin-top: 40px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #183354;
    line-height: 26px;
    margin-bottom: 15px;
}

/* Card Layout */
.resource-grid {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.resource-card {
    background: #f4f6f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
    position: relative;
    transition: transform .3s ease;
      padding-bottom: 80px;  
}

.resource-card:hover {
    transform: translateY(-6px);
}

/* Badge */
.resource-badge {
    position: absolute;
    /* top: 12px; */
    /* left: 12px; */
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 4px;
    z-index: 2;
}
.webinar { background: #97979733; }
.guide { background: #97979733; }
.report { background: #97979733; }

/* Top Part */
.card-top {
    background: #F0F3FF; /* change based on category if needed */
    /* padding: 15px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-top img {
    width: 100%;
    /* max-height: 160px; */
    object-fit: contain;
}

/* Bottom Part */
.card-bottom {
       background: #f4f6f9;
    padding: 30px;
}

.card-bottom h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 15px;
    color: rgba(60, 76, 65, 1);
}

.card-bottom p {
    color: rgba(60, 76, 65, 1);
    font-size: 13px;
    line-height: 28px;
    margin-bottom: 30px;
}
.card-bottom .btn-div {
  /* text-align: center; 
  margin-top: 10px;
  margin-bottom: 30px; */
    position: absolute;
    bottom: 60px;                      /* distance from bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    margin: 0 !important;
}
/* Button */
a.btn-download {
    position: relative;
    overflow: hidden;
    background: #4DAF50;
    color: #fff;
    padding: 12px 40px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 32px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: 0.4s ease;
    display: inline-block;
    animation: buttonBounce 2s ease-out 1s both;
}

/* Hover background gradient */
a.btn-download:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
}

/* ✨ Shine Layer */
a.btn-download::after {
    content: "";
    position: absolute;
    top: 0;
    left: -156%;
    width: 150%;
    height: 100%;
    background: rgb(255 255 255 / 7%);
    /* transform: skewX(-6deg); */
    transition: 0.5s ease;
}

/* Hover → slide shine layer */
a.btn-download:hover::after {
    left: 150%;          /* swipe across to the right */
}

/* Active Click */
a.btn-download:active {
    transform: translateY(-1px) scale(1.02);
}

/* Bounce animation */
@keyframes buttonBounce {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* Responsive */
@media(max-width: 992px) {
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 600px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }
}
/* ------ends---------- */
/* ----section 7 css starts-------- */
.section_seven {
    padding: 50px 140px;
    margin-bottom: 30px;
}
h1.key_verticals.mb-1 {
    font-size: 36px;
    font-weight: 600;
    color: #4D4D4D;
    line-height: 44px;
    padding-bottom: 20px !important;
}
h4.sub_heading>span {
    color: var(--primary-color);
}
h4.sub_heading {
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    padding-bottom: 20px;
}
p.key_para.mb-4 {
    color: #18191F;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
    padding-top: 20px;
    padding-bottom: 40px;
}
h5.key_title.mb-2 {
    font-size: 21px;
    font-weight: 700;
    line-height: 32px;
    color: #3C4C41;
}

p.key_para.mb-3 {
    color: #161C2D;
    font-size: 17px;
    font-weight: 300;
    line-height: 29px;
}

a.read_more.text-decoration-none {
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: var(--primary-color);
}
.icon.mb-2 {
    display: flex;
}
img.feature-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 10px;
    display: inline-block;
}
img.feature-img2 {
    width: 60px;
    height: auto;
    object-fit: contain;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 20px;
}
img.feature-img-calender {
      width: 20px !important;
    height: 16px !important;
    object-fit: contain !important;
    /* margin-right: 10px; */
    /* vertical-align: unset; */
    display: inline-block;
    margin-top: -3px;
}
img.feature-img-calender-two {
    width: 20px !important;
    height: 16px !important;
    object-fit: contain !important;
    /* margin-right: 10px; */
    /* vertical-align: unset; */
    display: inline-block;
    margin-top: 6px;
}
/* ------ends----------- */
/* -------newsletter section css-------- */
.newsletter-section {
    position: relative;
    background: url('https://staging.techversions.com/assets/paralex.jpg') center/cover no-repeat;
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

/* Dark overlay */
.newsletter-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgb(0 0 0 / 81%);
    z-index: 1;
}

/* Content above overlay */
.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: auto;
}

.newsletter-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 19px;
    font-weight: 300;
    line-height: 32px;
    /* margin-bottom: 30px; */
    color: #bcbcbc;
}
.newsletter-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color); /* Green Circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.newsletter-icon i {
    color: #2D2D2D;
    font-size: 32px;
}
/* Email input box style */
.newsletter-form {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: auto;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 140px 15px 20px; /* space for button */
    border-radius: 8px;
    border: none;
    font-size: 16px;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary-color);
}


/* Privacy text */
.small-text {
    margin-top: 20px;
    font-size: 14px !important;
    line-height: 26px;
    font-weight: 300;
    color: #bcbcbc;
}

.small-text a {
    color: #bcbcbc;
     font-size: 14px !important;
       font-weight: 300;
    text-decoration: underline;
    font-family: var(--primary-font) !important;
}

/* Responsive */
@media(max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input {
        width: 100%;
    }
    .newsletter-form button {
        width: 100%;
    }
}
/* -----ends------- */
/* case studies section css */
.industry-section {
    width: 100%;
    padding: 50px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: flex-start;
}
.main-article {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    margin-top: 35px;
}

.main-article img {
    width: 45%;
    border-radius: 8px;
}
.article-info {
    padding-left: 15px;
}
.article-info h3>a {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    color: #183354;
    text-decoration: none;
}

.article-info .meta {
    font-size: 13px;
    margin: 10px 0;
    font-weight: 400;
    color: #6D757F;
}
p.excerpt {
    font-size: 16px;
    font-weight: 400;
    color: #545E69;
    line-height: 28px;
}
.sub-articles {
   display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-left: -6px;
}

.sub-card {
   display: flex;
    gap: 10px;
    flex-direction: row-reverse;
    margin-left: 10px;
}

.sub-card img {
      width: 100px;
    height: fit-content;
    /* border-radius: 6px; */
    object-fit: cover;
}

.tag {
    color: #6D757F;
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.sub-title {
    font-size: 17px;
    text-decoration: none;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 4px;
    color: #183354;
}
.sub-title>a {
    font-size: 17px;
    text-decoration: none;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 4px;
    color: #183354;
}
.meta.small {
    font-size: 13px;
    color: #6D757F;
    padding-top: 6px;
}
.sidebar {
    position: relative;
    padding-left: 20px; /* spacing from vertical line */
    border-left: 1px solid #DFDFDF; /* Vertical Line */
}
.sidebar hr {
    border: none;
    border-top: 1px solid #DFDFDF;
    margin: 10px 0;
}
/* Right Sidebar */
.sidebar .case-card {
    margin-bottom: 18px;
}
.cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers cards horizontally */
    gap: 20px; /* Optional spacing between cards */
}

.sidebar img {
      width: 100%;
    height: auto;
    /* display: block; */
    /* border-radius: 6px; */
    object-fit: cover;
}

/* Ad Banner */
.ad-banner {
    margin-top: 40px;
    width: 100%;
    text-align: center;
}

.ad-banner img {
    width: 100%;
    /* border-radius: 10px; */
}

/* Responsive */
@media(max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
}

.progress-line-five {
    width: 100%;
    height: 4px;
    background-color: #ddd; /* Light Base */
    position: relative;
    margin-bottom: 20px;
}

/* 10% Filled Indicator */
.progress-line-five::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10%; /* show 10% width */
    height: 4px;
    background-color: #F4796C;
}
aside.sidebar {
    margin-top: 4px;
    height: 100%;
}
p.tag.small {
    color: #A2ABB7;
    font-size: 13px;
        margin-top: 15px;
    margin-bottom: 10px;
}
.sub-title-one {
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 4px;
    color: #3C4C41;
    text-transform: inherit;
}
/* --------industry section css ends------- */
.ai-section {
    padding: 50px;
    width: 100%;
}
.section-underline {
    width: 100%;
    height: 4px;
    background-color: #ddd; /* Light Base */
    position: relative;
    margin-bottom: 20px;
}
.section-underline::after  {
content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10%; /* show 10% width */
    height: 4px;
    background-color: #F4796C;
}
.ai-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
}

/* Left Content */
.ai-top-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.ai-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.ai-card {
    background: #fff;
    border-radius: 8px;
    padding-bottom: 10px;
    overflow: hidden;
    position: relative;
}

.ai-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}



.ai-card .meta {
    font-size: 13px;
}

.badge.sponsored {
   position: absolute;
    top: 0px;
    left: 0px;
    background: var(--primary-color);
    color: #fff;
   padding: 10px 25px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
}

/* Sidebar */
.progress-line-six {
    width: 100%;
    height: 4px;
    background-color: #ddd; /* Light Base */
    position: relative;
    margin-bottom: 20px;
}

/* 10% Filled Indicator */
.progress-line-six::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10%; /* show 10% width */
    height: 4px;
    background-color: #F4796C;
}
.ai-sidebar {
    padding-left: 20px;
    margin-top: 4px;
    /* border-left: 2px solid #e4e4e4; */
}

.pod-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 0px !important;
}

/* .tag {
    font-size: 11px;
    font-weight: 700;
    color: #183354;
    text-transform: uppercase;
    margin-bottom: 4px;
} */

.meta.small {
    font-size: 12px;
    color: #777;
}

.ai-sidebar hr {
    border: none;
    border-top: 1px solid #e4e4e4;
    margin: 12px 0;
}

/* Responsive */
@media(max-width: 992px) {
    .ai-container {
        grid-template-columns: 1fr;
    }
    .ai-sidebar {
        border-left: none;
        padding-left: 0;
    }
}
/* Overlay style for left cards */
.ai-card.large {
    position: relative;
    color: #fff;
}

.ai-card.large img {
    height: 300px;
    object-fit: cover;
    filter: brightness(40%); /* Darken image for readable text */
}

.ai-card.large .overlay-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 0px 10px;
}

.ai-card.large h3>a {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 26px;
    line-height: 1.3;
    text-decoration: none;
    color: #fff;
}

.ai-card.large .meta {
        color: #fff;
    font-weight: 300;
}

.badge.sponsored {
    z-index: 2;
}
/* Small cards overlay */
.ai-card.small {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.ai-card.small img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: brightness(40%);
}

.ai-card.small .overlay-content {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    color: #fff;
    padding: 0 10px;
}

.ai-card.small h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 26px;
}

.ai-card.small .meta {
    font-size: 12px;
    color: #e5e5e5;
}

.ai-card.small:hover img {
    transform: scale(1.05);
    transition: 0.4s ease-in-out;
}
/* -------------- */
.videos-section {
    padding: 50px;
    color: #fff;
    background: url("https://staging.techversions.com/assets/video_bg_image.jpg") no-repeat center center/cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background: rgb(0 0 0 / 69%);
    z-index: 2;
}
/* Header */
.videos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.videos-header h2 {
    font-size: 22px;
    font-weight: 700;
}

.view-all {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
}
.view-all:hover {
    color: #fff;
}


/* Grid */
.videos-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 20px;
    margin-top: 35px;
}

/* Thumbnails */
.video-thumb {
    position: relative;
}

.video-thumb img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
    /* filter: brightness(70%); */
}

.video-thumb.small img {
    width: 130px;
    height: 90px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
   transform: translate(-50%, -50%) scale(1);
    padding: 15px;
    border-radius: 50%;
    z-index: 3;
    transition: transform 0.3s ease, background 0.3s ease;
}
.video-thumb:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.15); /* pops up */
}

.feature-img-play-btn {
    width: 60px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* Icon also grows a little */
.video-thumb:hover .feature-img-play-btn {
    transform: scale(1.1);
}
.play-btn.small {
    padding: 6px;
    font-size: 10px;
}
img.feature-img-play-btn {
    width: 40px;
    height: 40px;
    background: transparent !important;
    /* object-fit: cover; */
    /* filter: brightness(-16%); */
}
/* Right list structure */
.video-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.video-small {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
iframe.right_video_img{
   width: 180px;
    /* max-width: 100%; */
    height: 150px;
}
img.btn-icon {
    width: 20px;
}
/* Tags */
.tag-line {
    background: #6f808b;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    padding: 4px 7px;
    border-radius: 4px;
    margin: 10px 0 5px;
    display: inline-block;
    font-weight: 300;
}

.tag-line.gray {
    background: #374955;
    color: #fff;
}

/* Titles */
h3.video-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    margin: 0 0 6px;
}

/* Meta Info */
.video-meta {
    font-size: 13px;
    color: #fff;
    font-weight: 300;
}

.video-meta i {
    margin: 0 4px;
}
h4.video-small-text {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
}
@media(max-width: 768px) {
    .video-small {
        flex-direction: column;
    }

    .video-thumb {
        width: 100%;
        height: 180px;
    }
}

/* ---------------------- */

/* Upcoming Events Section */
.events-section {
    text-align: center;
    padding: 60px 50px 100px 50px;
}

.events-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 44px;
    color: var(--accent-color);
}

span.arrow-unit {
    color: rgba(244, 121, 108, 1);
}

/* 3 Column Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1260px;
    margin: 0 auto;
}

/* Cards */
.event-card {
    position: relative;
    border-radius: 15px;
    background: transparent;
}

.event-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.event-info {
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 85%;
    background: rgba(245, 247, 250, 1);
    border-radius: 12px;
    padding: 15px 10px;
    box-shadow: 0 6px 18px rgba(171, 190, 209, 0.4);
    text-align: center;
}

.event-info h4 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    color: #717171;
    padding-bottom: 10px;
    line-height: 28px;
}

.event-info span {
    display: block;
    margin-top: 8px;
    font-size: 20px;
    line-height: 28px;
    padding-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
}
@media (max-width: 992px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}



/* CTA Section */
.lead-section {
    background: rgba(245, 247, 250, 1);
    padding: 70px 50px 100px 50px;
    text-align: center;
}

.lead-section h2 {
    font-size: 40px;
    line-height: 60px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(77, 77, 77, 1);
}

.lead-section p {
    font-size: 16px;
    max-width: 550px;
    margin: auto;
    font-weight: 400;
    line-height: 30px;
    color: rgba(113, 113, 113, 1);
    margin-bottom: 35px;
}

a.cta-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    display: inline-block;
    animation: buttonBounce 2s ease-out 1s both;
}

a.cta-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
}
/* ✨ Shine Layer */
a.cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -156%;
    width: 150%;
    height: 100%;
    background: rgb(255 255 255 / 7%);
    /* transform: skewX(-6deg); */
    transition: 0.5s ease;
}

/* Hover → slide shine layer */
a.cta-btn:hover::after {
    left: 150%;          /* swipe across to the right */
}

/* Active Click */
a.cta-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Responsive */
@media (max-width: 700px) {
    .events-grid {
        flex-direction: column;
        align-items: center;
    }
}
.footer-widgets .widget li a {
    text-decoration: none;
}
.footer-widgets {
        background-color: rgba(47, 57, 50, 1) !important;
            padding: 50px 50px !important;
}
.footer-bottom{
background-color: rgba(47, 57, 50, 1) !important;
}
h1.newsletter-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}
.footer-newsletter-form button {
    position: absolute;
    right: 5px;
    top: 20%;
    transform: translateY(-50%);
    padding: 1px 10px;
    border: none;
    border-radius: 8px;
    background: no-repeat;
    color: #2f3932;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
}
.footer-newsletter-form {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: auto;
}
.footer-newsletter-form input {
    width: 100%;
    padding: 12px 6px;
    font-size: 12px;
    border-radius: 8px;
    border: none;
}
.footer-icons {
    display: flex;
    /* justify-content: center; */
    gap: 10px;
    /* padding: 20px; */
    /* background-color: #111; */
}

.footer-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.footer-btn img {
    width: 22px;
    height: 22px;
    /* filter: invert(1);  */
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

.footer-btn:hover img {
    transform: scale(1.2);
    opacity: 0.8;
     filter: brightness(0) invert(1); 
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
       padding: 0px 50px;
    /* background-color: #111; */
    color: #fff;
    flex-wrap: wrap; /* For mobile layout */
    padding-bottom: 20px;
}

.footer-left {
    font-size: 14px;
}
hr.solid-footer {
    border-top: 1px solid #DFDFDF;
    width: 100%;
    max-width: 1420px;
    margin: 20px auto;
}
.key_left {
    /* width: 41%; */
    padding-right: 60px;
}
.footer-bottom-content {
    padding-top: 0px;
    margin-top: -15px;
}
.newsletter-box>p {
    line-height: 32px;
}

@media (max-width: 576px) {
    .cards-row {
        padding-left: 35px;
        padding-right: 35px;
    }
    .section-three {
    padding: 50px 35px;
    margin-bottom: 0 !important;
}
.trending-header h2 {
    font-size: 22px;
}
.section-four {
    padding: 50px 35px 50px 35px;
}
.feature-card {
    margin-bottom: 30px;
}
.schedule-list.container {
    padding: 50px 0px 10px 0px !important;
}
.section_six {
    padding: 50px 35px !important;
    margin-bottom: 0px !important;
}
.section_seven {
    padding: 50px 35px;
}
}


/* ---------------sub menu ---------------- */
 .sidebar-menu .navbar-nav {
	 float: none;
	 margin: 0;
	 padding-bottom: 0px;
	 /* width: 100%; */
 }

 .sidebar-menu .navbar-nav>li {
	 margin: 10px 0;
	 display: block;
 }

 .sidebar-menu .navbar-nav>li:last-child {
	 margin-bottom: 0;
 }

 .sidebar-menu .navbar-nav>li>a {
	 padding: 5px 0;
	 display: block;
 }

 .tr-menu .navbar-nav li a {
	 font-size: 14px;
	 display: block;
	 font-weight: 600;
	 padding: 6px 3px;
	 color: #ffffff;
	 text-transform: capitalize;
 }

 .sidebar-menu .navbar-nav li a i {
	 color: #010101;
	 margin-right: 30px;
 }

 .tr-menu li.active>a,
 .tr-menu li.active a i,
 .tr-menu li a:hover,
 .tr-menu .navbar-nav li a:focus,
 .tr-menu li a:hover i,
 .tr-menu .navbar-nav>li>a:hover,
 .tr-menu .navbar-nav>li>a:focus,
 .tr-menu .navbar-nav>li.active>a:focus,
 .tr-menu .navbar-nav>li.active>a,
 .tr-menu .navbar-nav>.active>a:hover,
 .tr-menu .navbar-nav li a:focus i,
 .tr-menu li.active .sub-menu li a:hover,
 .tr-menu li.active .sub-menu li.active>a,
 .navbar-default .navbar-nav>.open>a,
 .navbar-default .navbar-nav>.open>a:focus,
 .navbar-default .navbar-nav>.open>a:hover,
 .tr-menu.menu-style-two .navbar-nav li a:hover,
 .tr-menu.menu-style-two .navbar-nav li.active,
 .tr-menu.menu-style-two .navbar-nav li.active>a,
 .tr-menu.sidebar-menu ul.sub-menu li a:hover,
 .tr-menu.sidebar-menu ul.sub-menu li.active>a {
	 /* color: #212529; */
	 background-color: transparent;
 }
.tr-menu .navbar-nav>li>a:hover,.tr-menu li a:hover,.tr-menu .navbar-nav>li.active>a, #navbarNav .current-menu-item a {
	background-color: #c4c4c47d;
    color: #fff !important;
}
 /* Navbar Toggle */

 .tr-menu .navbar-toggle {
	 border-color: #212529;
 }

 .tr-menu .navbar-toggle .icon-bar {
	 background-color: #212529;
 }

 .tr-menu .navbar-toggle:focus,
 .tr-menu .navbar-toggle:hover {
	 background-color: transparent;
 }

 .toggle-white.navbar-toggle {
	 border-color: #fff;
 }

 .toggle-white.navbar-toggle .icon-bar {
	 background-color: #fff;
 }

 .toggle-white.navbar-toggle:focus,
 .toggle-white.navbar-toggle:hover {
	 background-color: transparent;
 }

 .navbar-toggler {
	 position: absolute;
	 top: 15px !important;
	 right: 15px;
	 color: #ffffff;
	 padding: 6px 8px;
	 border: 1px solid #ffffff;
 }

 .menu-responsive .navbar-toggler {
	 top: 16px;
	 right: 0;
 }

 .sidebar-menu-two.menu-responsive .navbar-toggler {
	 right: 15px;
	 top: 22px;
 }

 .menu-responsive .navbar {
	 padding-left: 0;
	 padding-right: 0;
 }

 .menu-responsive .navbar-brand {
	 padding-left: 0;
 }

 .navbar-toggler-icon {
	 width: inherit;
	 height: inherit;
 }

 .tr-menu .feed  {
	 margin-right: 15px;
	 padding: 20px 0;
 }

 .tr-menu .navbar-default .feed li a i {
	 margin-right: 0;
 }

 .tr-menu .navbar-default .feed li a {
	 transition: inherit;
	 color: #696969;
 }

 ul.sub-menu,
 ul.sub-menu .sub-menu-2 {
	 position: absolute;
	 top: 100%;
	 left: 0;
	 z-index: 1000;
	 min-width: 180px;
     width:max-content;
	 background-color: #fff;
	 opacity: 0;
	 -webkit-transform: rotateX(-75deg);
	 -moz-transform: rotateX(-75deg);
	 -ms-transform: rotateX(-75deg);
	 -o-transform: rotateX(-75deg);
	 transform: rotateX(-75deg);
	 visibility: hidden;
	 -webkit-transform-origin: 0% 0%;
	 -moz-transform-origin: 0% 0%;
	 -ms-transform-origin: 0% 0%;
	 -o-transform-origin: 0% 0%;
	 transform-origin: 0% 0%;
	 transition: transform 0.3s, opacity 0.3s;
	 -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
	 -moz-box-shadow: 0 6px 12px rgba(0,0,0,.175);
	 -ms-box-shadow: 0 6px 12px rgba(0,0,0,.175);
	 -o-box-shadow: 0 6px 12px rgba(0,0,0,.175);
	 box-shadow: 0 6px 12px rgba(0,0,0,.175);
 }
/* Enable submenu for WordPress class */
.nav-menu li.menu-item-has-children:hover > .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: rotateX(0deg) !important;
    display: block !important;
    padding: 0px 20px 10px;
}
ul#menu-new-menu-type>li>a {
        color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--primary-font);
    font-size: 16px;
    position: relative;
    padding: 0.5rem 0;

}
 .dropdown:hover .sub-menu,
 .topbar-right .user:hover .sub-menu,
 ul.sub-menu li:hover .sub-menu-2 {
	 opacity: 1;
	 visibility: visible;
	 display: block;
	 -webkit-transform: rotateX(0deg);
	 -moz-transform: rotateX(0deg);
	 -ms-transform: rotateX(0deg);
	 -o-transform: rotateX(0deg);
	 transform: rotateX(0deg);
 }

 ul.sub-menu .sub-menu-2 {
	 left: 100%;
	 top: 0;
 }

 .sub-menu i {
	 margin-right: 10px;
 }

 .tr-menu .sub-menu li a,
 .sub-menu li a {
	padding: 10px 0px;
    /* border-top: 1px solid #f0f3f5; */
    display: block;
    color: #696969;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter';
 }

 .sub-menu li a:hover,
 .sub-menu li.active a,
 .sub-menu li a:focus {
	 /* background-color: #f6f8f9 !important; */
 }

 .sub-menu li a:hover,
 .topbar-right .user a:hover,
 .search-icon:hover,
 .sub-menu li a:focus,
 .topbar-right a:hover {
	 color:var(--primary-color);
     font-weight: 600;
 }

 .user .user-dropdown i {
	 margin-left: 10px;
 }

 .tr-menu.sidebar-menu .sub-menu {
	 min-width: 180px;
 }

span.arrow-unit>img {
    width: 10px;
    height: auto;
    margin-left: 6px;
}



