:root {
    --primary-color: #0088cc;
    --secondary-color: #f8f9fa;
    --accent-color: #3992b3;
    --text-color: #333;
    --white: #ffffff;
    --footer-bg: #0088cc;
    --default-font-size: 16px;
    --primary-blue: #18bbf1;
    --secondary-blue: #047adc;
    --tertiary-color: #3992b3;
    --deep-blue: #002356;
    --ser-ind-dark-blue: #1e293b;
    --ser-ind-text-color: #64748b;
    --ser-ind-title-color: #1e293b;
    --ser-ind-heading-color: #0f172a;
    --black: #000;
    --theme: #7f6eb4;
    --aliceblue: #f0f8ff;
    ;
    --header: #0a79a9;
    --text: #504E4E;
    --border: #E5E5E5;
}

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


body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    overflow-x: hidden;
    font-size: 14px;
    padding: 0;
    background-color: #f5f9ff;
}

.hide-overflow {
    overflow: hidden;
}

/* Header Styles */
.index-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.index-header-transparent {
    background-color: transparent;
}

.index-header-white {
    background-color: #053141d1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.index-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.index-header.sticky {
    background: #1f5987e0
        /* Change to your preferred color */
}

.index-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index-logo {
    display: flex;
    align-items: center;
}

.index-logo img {
    top: 0px;
        width: 80px;
    height: 100px;
}

.index-nav-links {
    display: flex;
    gap: 20px;
}

.index-nav-links a {
    color: #e9f9ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    display: inline-block;
    border-radius: 4px;
    font-size: 16px;
    font-style: normal;
    line-height: 20px;
    padding: 10px 13px;
    text-transform: uppercase;
}

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

.index-nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.index-nav-links a:hover::after {
    width: 100%;
}

.index-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

/* Mobile Bottom Navigation */
.index-mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--footer-bg);
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 76px 75px 67px 76px;
    padding: 4px
}

.index-mobile-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
}

.index-mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
}

.index-mobile-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Hero Section for Demo */
.index-hero {
    height: 77vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://source.unsplash.com/random/1600x900/?interior');
    background-size: cover;
    background-position: center;
    position: relative;
}

.index-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.index-hero-content {
    position: relative;
    color: white;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.index-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.index-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.index-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.index-btn:hover {
    background-color: #8c4b2a;
    color: white;
}

/* Sticky Call Buttons */
.index-sticky-call {
    position: fixed;
    bottom: 125px;
    right: 20px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.index-call-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 25px;
}

.index-whatsapp-btn {
    background-color: #25D366;
}

/* Content Section */
.index-content {
    padding: 50px 0;
}

.index-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.index-heading-accent {
    color: var(--accent-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .index-nav-links {
        display: none;
    }

    .index-mobile-toggle {
        display: block;
    }

    .index-mobile-footer {
        display: block;
    }
}

@media (max-width: 576px) {
    .index-hero-content h1 {
        font-size: 2rem;
    }

    .index-hero-content p {
        font-size: 1rem;
    }

    .index-logo img {
        height: 30px;
    }

    .index-heading {
        font-size: 1.8rem;
    }
}

/* Menu icon and hamburger */
.index-hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.index-hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.index-hamburger span:nth-child(1) {
    top: 0px;
}

.index-hamburger span:nth-child(2) {
    top: 8px;
}

.index-hamburger span:nth-child(3) {
    top: 16px;
}

/*mobile sidebar menu */

/* Sidebar Container */
.index-sidebar {
    position: fixed;
    top: 0;
    right: -250px;
    /* Hidden initially */
    width: 250px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
}

/* Show Sidebar */
.index-sidebar.active {
    right: 0;
}

/* Sidebar Close Button */
.index-sidebar-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Sidebar Content */
.index-sidebar-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.index-sidebar-content a {
    text-decoration: none;
    padding: 12px 10px;
    color: black;
    font-size: 16px;
    transition: 0.3s;
}

.index-sidebar-content a:hover {
    background-color: #f4f4f4;
    border-radius: 5px;
}

/* banner */
/* General Reset */

/* Banner Container */
.banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 75vh;
    background-color: #000;
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.banner-carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Banner Slides */
.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background: linear-gradient(135deg, #000614, #001a41);
    display: flex;
    align-items: center;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Banner Content Layout */
.banner-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    z-index: 3;
}

/* Banner Text Container */
.banner-text-container {
    flex: 1;
    max-width: 50%;
    padding: 0 2rem;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
}

.banner-slide.active .banner-text-container {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* Banner Counter */
.banner-counter {
    font-size: 8rem;
    font-weight: 800;
    opacity: 0.1;
    position: absolute;
    top: -80px;
    left: 0;
    color: #0ff;
    line-height: 1;
}

/* Banner Title */
.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    line-height: 1.2;
}

/* Banner Highlight */
.banner-highlight {
    color: #84deff;
    position: relative;
}

.banner-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0, 255, 255, 0.2);
    z-index: -1;
}

/* Banner Description */
.banner-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 90%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.5s;
}

.banner-slide.active .banner-description {
    opacity: 1;
    transform: translateY(0);
}

/* Banner Button */
.banner-btn {
    background: rgb(107 172 198);
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    border: 0;
    border-radius: 30px;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    font-size: 14px;
    color: white;
}

.banner-slide.active .banner-btn {
    opacity: 1;
    transform: translateY(0);
}

/* .banner-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 0%);
    transition: all 0.4s ease;
} */

.banner-btn:hover {
    background: linear-gradient(90deg, #00ffff, #0088ff);
    color: #fff;
}

.banner-btn:hover::before {
    left: 100%;
}

/* Banner Graphic */
.banner-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 50%;
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.8s;
}

.banner-slide.active .banner-graphic {
    opacity: 1;
    transform: translateX(0);
}

/* Tech Grid Animation */
.banner-tech-grid {
    width: 350px;
    height: 350px;
    position: relative;
    border: 2px solid rgba(0, 255, 255, 0.3);
    transform: rotate(45deg);
    animation: rotate 20s linear infinite;
}

.banner-tech-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #0ff, transparent);
    height: 2px;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    animation: scan 3s ease-in-out infinite alternate;
}

.banner-tech-line:nth-child(2) {
    transform: translateY(-50%) rotate(90deg);
    animation-delay: 1.5s;
}

.banner-tech-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid #0ff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
}

.banner-tech-square {
    position: absolute;
    width: 85px;
    height: 85px;
    border: 2px solid rgba(0, 255, 255, 0.5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 5s linear infinite reverse;
}

/* Code Animation */
.banner-code-animation {
    width: 350px;
    height: 250px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.banner-code-line {
    height: 24px;
    background: linear-gradient(90deg, #0ff, transparent);
    width: 0;
    opacity: 0.7;
    animation: codeType 3s forwards infinite;
    border-radius: 2px;
}

.banner-code-line:nth-child(1) {
    animation-delay: 0s;
    width: 100%;
}

.banner-code-line:nth-child(2) {
    animation-delay: 0.5s;
    width: 60%;
}

.banner-code-line:nth-child(3) {
    animation-delay: 1s;
    width: 80%;
}

.banner-code-line:nth-child(4) {
    animation-delay: 1.5s;
    width: 40%;
}

.banner-code-line:nth-child(5) {
    animation-delay: 2s;
    width: 70%;
}

/* Chart Animation */
/* Chart Animation */
.banner-chart-animation {
    width: 350px;
    height: 250px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding-bottom: 30px;
}

.banner-chart-bar {
    width: 50px;
    background: linear-gradient(to top, #0ff, rgba(0, 255, 255, 0.2));
    border-radius: 4px 4px 0 0;
    position: relative;
    opacity: 0;
    /* Remove the height: 0; declaration */
}

/* Fix 1: Set specific heights on individual bars */
.banner-chart-bar:nth-child(1) {
    animation: barGrow 1.5s forwards ease-out 0.2s;
    height: 0;
    /* Start with zero height */
}

.banner-chart-bar:nth-child(2) {
    animation: barGrow 1.5s forwards ease-out 0.4s;
    height: 0;
    /* Start with zero height */
}

.banner-chart-bar:nth-child(3) {
    animation: barGrow 1.5s forwards ease-out 0.6s;
    height: 0;
    /* Start with zero height */
}

.banner-chart-bar:nth-child(4) {
    animation: barGrow 1.5s forwards ease-out 0.8s;
    height: 0;
    /* Start with zero height */
}

/* Fix 2: Update the animation to use percentages instead of CSS variables */
@keyframes barGrow {
    from {
        height: 0;
        opacity: 0;
    }

    to {
        opacity: 1;
        /* Heights for individual bars are controlled by JavaScript */
    }
}

.banner-chart-bar::after {
    content: attr(data-value);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(0, 255, 255, 0.8);
    font-size: 0.8rem;
}

.banner-chart-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(0, 255, 255, 0.5);
    bottom: 0;
    left: 0;
    transform-origin: left;
    transform: scaleX(0);
    animation: lineGrow 1s forwards;
    animation-delay: 0.2s;
}

/* Controls */
.banner-controls {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.banner-indicators {
    display: flex;
    gap: 10px;
}

.banner-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-indicator.active {
    background: #a8cedc;
    transform: scale(1.2);
}

.banner-nav-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    transform: translateY(-50%);
}

.banner-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.banner-arrow:hover {
    background: rgba(0, 255, 255, 0.3);
    opacity: 1;
}

.banner-arrow svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scan {
    0% {
        opacity: 0;
        transform: translateY(-50%) scaleX(0.3);
    }

    50% {
        opacity: 1;
        transform: translateY(-50%) scaleX(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-50%) scaleX(0.3);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }
}

@keyframes rotate {
    from {
        transform: rotate(45deg);
    }

    to {
        transform: rotate(405deg);
    }
}

@keyframes codeType {
    0% {
        width: 0;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}

@keyframes barGrow {
    from {
        height: 0;
        opacity: 0;
    }

    to {
        height: var(--height);
        opacity: 1;
    }
}

@keyframes lineGrow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .banner-title {
        font-size: 3rem;
    }

    .banner-tech-grid {
        width: 280px;
        height: 280px;
    }

    .banner-tech-circle {
        width: 100px;
        height: 100px;
    }

    .banner-code-animation,
    .banner-chart-animation {
        width: 300px;
    }
}

@media (max-width: 992px) {
    .banner-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 2rem;
    }

    .banner-text-container,
    .banner-graphic {
        max-width: 100%;
        width: 100%;
    }

    .banner-text-container {
        padding: 2rem 1rem;
        order: 2;
    }

    .banner-graphic {
        order: 1;
        margin-bottom: 2rem;
        height: auto;
    }

    .banner-counter {
        font-size: 6rem;
        top: -60px;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-description {
        max-width: 100%;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-counter {
        font-size: 5rem;
        top: -50px;
    }

    .banner-tech-grid {
        width: 220px;
        height: 220px;
    }

    .banner-tech-circle {
        width: 80px;
        height: 80px;
    }

    .banner-tech-square {
        width: 60px;
        height: 60px;
    }

    .banner-code-animation,
    .banner-chart-animation {
        width: 250px;
        height: 200px;
    }

    .banner-arrow {
        width: 40px;
        height: 40px;
    }

    .banner-arrow svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 1.8rem;
    }

    .banner-description {
        font-size: 1rem;
    }

    .banner-counter {
        font-size: 4rem;
        top: -40px;
    }

    .banner-tech-grid {
        width: 180px;
        height: 180px;
    }

    .banner-code-animation,
    .banner-chart-animation {
        width: 200px;
        height: 160px;
    }

    .banner-chart-bar {
        width: 30px;
    }

    .banner-controls {
        bottom: 30px;
    }

    .banner-indicator {
        width: 10px;
        height: 10px;
    }

    .banner-nav-arrows {
        padding: 0 10px;
    }

    .banner-arrow {
        width: 36px;
        height: 36px;
    }
}

/* digital marketing */
/* Digital Marketing Banner Styles */
.banner-marketing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

.banner-marketing-item {
    background-color: rgba(71, 166, 255, 0.1);
    border: 1px solid rgba(71, 166, 255, 0.3);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    animation: fadeInScale 0.5s forwards;
    opacity: 0;
    transform: scale(0.9);
}

.banner-marketing-item:nth-child(1) {
    animation-delay: 0.3s;
}

.banner-marketing-item:nth-child(2) {
    animation-delay: 0.5s;
}

.banner-marketing-item:nth-child(3) {
    animation-delay: 0.7s;
}

.banner-marketing-item:nth-child(4) {
    animation-delay: 0.9s;
}

.banner-marketing-item:hover {
    background-color: rgba(71, 166, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(71, 166, 255, 0.3);
}

.banner-marketing-icon {
    font-size: 28px;
    color: #47A6FF;
    margin-bottom: 10px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(71, 166, 255, 0.1);
    border: 1px solid rgba(71, 166, 255, 0.2);
}

.banner-marketing-label {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Make sure the banner indicator for the 4th slide is added */
.banner-indicator:nth-child(4) {
    opacity: 0.6;
}

.banner-indicator:nth-child(4).active {
    opacity: 1;
}

/* Ensure responsiveness for marketing grid */
@media (max-width: 768px) {
    .banner-marketing-grid {
        grid-gap: 10px;
        max-width: 300px;
    }

    .banner-marketing-item {
        padding: 15px 10px;
    }

    .banner-marketing-icon {
        font-size: 22px;
        height: 35px;
        width: 35px;
    }

    .banner-marketing-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .banner-marketing-grid {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
}

/* intro about */
/* Modern About section styling */
.ind-abt-section {
    background: linear-gradient(135deg, #000814 0%, #001233 100%);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Circuit animation styles */
@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fill {
    from {
        fill-opacity: 0;
    }

    to {
        fill-opacity: 0.3;
    }
}

.circuit-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.15;
    z-index: 1;
}

.circuits {
    position: absolute;
    fill: none;
    stroke: #3676e8;
    stroke-width: 2px;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 20s alternate infinite, fill 3s forwards;
}

.circuit-top-right {
    top: 0;
    right: 0;
    width: 25%;
    height: auto;
}

.circuit-bottom-left {
    bottom: 0;
    left: 0;
    width: 25%;
    height: auto;
}

/* Content styling */
.ind-abt-headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, #8A2BE2, #3676e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ind-abt-content {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.ind-abt-highlight {
    color: #3676e8;
    font-weight: 600;
}

/* Modern stats display */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.ind-abt-stat-box {
    background: rgba(1, 24, 69, 0.3);
    backdrop-filter: blur(10px);
    border-left: 4px solid #3676e8;
    border-radius: 8px;
    padding: 25px;
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ind-abt-stat-box:hover {
    transform: translateY(-10px);
    background: rgba(54, 118, 232, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.ind-abt-stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #8A2BE2, #3676e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.ind-abt-stat-text {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Image and content styling */
.ind-abt-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.ind-abt-img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    transform-origin: center;
}

.ind-abt-img-container:hover .ind-abt-img {
    transform: scale(1.05);
}

.ind-abt-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(54, 118, 232, 0.2), rgba(138, 43, 226, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ind-abt-img-container:hover .ind-abt-img-overlay {
    opacity: 1;
}

/* Button styling */
.ind-abt-btn {
    background: linear-gradient(90deg, #3676e8, #8A2BE2);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(54, 118, 232, 0.3);
}

.ind-abt-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(54, 118, 232, 0.5);
}

/* Floating elements */
.floating-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.4;
    z-index: 1;
}

.dots-1 {
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.dots-2 {
    bottom: 10%;
    right: 5%;
    animation: float 6s ease-in-out infinite;
}

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .ind-abt-headline {
        font-size: 2.8rem;
    }

    .ind-abt-img-container {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .ind-abt-headline {
        font-size: 2.2rem;
    }

    .ind-abt-stat-number {
        font-size: 2.5rem;
    }

    .ind-abt-section {
        padding: 60px 0;
    }
}

.default-font-txt {
    font-size: var(--default-font-size);
}

/* index-sevices */

.ind-pro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.ind-pro-header {
    margin-bottom: 3rem;
}

.ind-pro-header h1 {
    font-size: 3rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ind-pro-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    line-height: 1.6;
}

.ind-pro-view-services {
    display: flex;
    justify-content: flex-end;

}

.ind-pro-view-link {
    display: flex;
    align-items: center;
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.ind-pro-view-link:hover {
    color: var(--primary-blue);
}

.ind-pro-arrow {
    margin-left: 10px;
    font-size: 1.5rem;
}

.ind-pro-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.ind-pro-service-card {
    background-color: #6fc4e44d;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #f0f0f0;
    height: 200px;
}

.ind-pro-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ind-pro-service-card:nth-child(3n+1) {
    border-top: 4px solid var(--primary-blue);
}

.ind-pro-service-card:nth-child(3n+2) {
    border-top: 4px solid var(--secondary-blue);
}

.ind-pro-service-card:nth-child(3n+3) {
    border-top: 4px solid var(--tertiary-color);
}

.ind-pro-service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    fill: var(--primary-blue);
}

.ind-pro-service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.ind-pro-arrow-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--primary-blue);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.ind-pro-service-card:hover .ind-pro-arrow-icon {
    color: var(--secondary-blue);
}

.ind-pro-chat-bubble {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--deep-blue);
    color: var(--white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 100;
}

.ind-pro-chat-bubble:hover {
    background-color: var(--secondary-blue);
}

@media (max-width: 768px) {
    .ind-pro-header h1 {
        font-size: 2.5rem;
    }

    .ind-pro-header p {
        font-size: 1.1rem;
    }

    .ind-pro-services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .ind-pro-container {
        padding: 1.5rem;
    }

    .ind-pro-header h1 {
        font-size: 2rem;
    }

    .ind-pro-services-grid {
        grid-template-columns: 1fr;
    }

    .ind-pro-service-card {
        height: auto;
        min-height: 180px;
    }
}

.ind-pro-header h1 {
    font-weight: 600;
}

.ind-pro-view-btn {
    padding: 10px 30px;
    border-radius: 7px;
    /* background: #01e8ff; */
    border: navajowhite;
    background: linear-gradient(135deg, #76b6d5, #0088cc);
    color: #ffffff;
}

/* index-first tab */

.section-padding {
    padding-top: 120px;
    padding-bottom: 10px;
}

/* .section,
.main-wrapper {
    float: left;
    width: 100%;
} */

.techwix-about-section-04 .about-content-wrap {
    padding-right: 105px;
}

.section-title .sub-title {
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
    color: #086ad8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title .title {
    font-size: 48px;
    line-height: 54px;
    font-weight: 600;
    color: #0e0e0e;
}

.techwix-about-section-04 .about-content-wrap .text {
    font-size: 16px;
    line-height: 30px;
    margin-top: 30px;
}

.about-author-info-wrap {
    display: flex;
    align-items: center;
    border-top: 2px solid #ececec;
    margin-top: 30px;
    padding-top: 30px;
}

.about-author-info-wrap {
    display: flex;
    align-items: center;
    border-top: 2px solid #ececec;
    margin-top: 30px;
    padding-top: 30px;
}

img {
    max-width: 100%;
}

.about-author-info-wrap .about-author .name {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-top: 20px;
}

.about-author-info-wrap .about-info {
    flex: 1;
    padding-left: 50px;
    margin-left: 30px;
    position: relative;
}

.about-author-info-wrap .about-info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    background: #ececec;
    width: 2px;
    height: 95px;
    transform: translateY(-50%);
}

.about-author-info-wrap .about-info p {
    font-size: 16px;
    line-height: 30px;
    color: #0e0e0e;
}

.about-author-info-wrap .about-info .number {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    color: #086ad8;
}

.techwix-about-section-04 .about-img-wrap {
    position: relative;
}

.play-btn-02 {
    position: absolute;
    left: 15%;
    top: 16%;
}

.play-btn-02 a {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 15px;
    display: inline-block;
    text-align: center;
    position: relative;
    border-radius: 50%;
    background: linear-gradient(240deg, #086ad8 0%, #42b9ff 100%);
    color: #ffffff;
    transition: all 0.3s linear;
}

.techwix-about-section-04 .about-img-wrap .about-img-big {
    text-align: right;
}

.techwix-about-section-04 .about-img-wrap .about-img img {
    border-radius: 10px;
}

.techwix-about-section-04 .about-img-wrap .about-img-sm {
    position: absolute;
    left: -15px;
    bottom: 35px;
    border: 2px solid #ffffff;
    border-radius: 40px 0 54px 0 !important;
}

.about-img-radiai {
    border-radius: 40px 0 54px 0 !important;
}

.techwix-about-section-04 .about-img-wrap .about-img-big {
    text-align: right;
}

.techwix-about-section-04 .about-img-wrap {
    position: relative;
}

.play-btn-02 {
    position: absolute;
    left: 15%;
    top: 16%;
}

.about-img-wrap .abt-img-big {
    border-radius: 10px;
    max-width: 60% !important;
    height: auto;
}

.about-img-wrap .abt-img-small {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

/* Who We Are Section Styles */
.techwix-about-section-04 {
    position: relative;
    overflow: hidden;
}

.techwix-about-section-04 .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    z-index: -1;
}

.section-title .sub-title {
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
    color: #78aec3;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.section-title .title {
    font-size: 31px;
    line-height: 1.2;
    font-weight: 600;
    color: #00183d;
    margin-bottom: 20px;
}

.techwix-about-section-04 .about-content-wrap {
    padding-right: 50px;
}

.techwix-about-section-04 .about-content-wrap .text {
    font-size: 16px;
    line-height: 1.9;
    margin-top: 30px;
    color: #000000;
}

.about-author-info-wrap {
    display: flex;
    align-items: center;
    border-top: 2px solid #ececec;
    margin-top: 30px;
    padding-top: 30px;
}

.about-author-info-wrap .about-author {
    margin-right: 30px;
}

.about-author-info-wrap .about-author img {
    max-width: 50px;
    margin-bottom: 10px;
}

.about-author-info-wrap .about-author .name {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-top: 10px;
    color: #0e0e0e;
    margin-bottom: 5px;
}

.about-author-info-wrap .about-author .designation {
    font-size: 14px;
    color: #696969;
}

.about-author-info-wrap .about-info {
    flex: 1;
    padding-left: 50px;
    position: relative;
}

.about-author-info-wrap .about-info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    background: #ececec;
    width: 2px;
    height: 95px;
    transform: translateY(-50%);
}

.about-author-info-wrap .about-info p {
    font-size: 16px;
    line-height: 30px;
    color: #0e0e0e;
    margin-bottom: 5px;
}

.about-author-info-wrap .about-info .number {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    color: #086ad8;
    margin: 0;
}

.text-blue {
    color: rgb(151 207 212);
}

.glass-blue {
    background-color: #00b0bd;
}

/* Image tyles */
.about-img-wrap {
    position: relative;
    height: 100%;
}

.about-img-wrap .about-img {
    position: relative;
}

.about-img-wrap .about-img img {

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

.about-img-wrap .about-img-big {
    text-align: right;
    margin-bottom: 20px;
}

.about-img-wrap .about-img-sm {
    position: absolute;
    left: 0;
    bottom: 24px;
    width: 62%;
    border: 8px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Play Button Styles */
.play-btn-02 {
    position: absolute;
    left: 15%;
    top: 16%;
    z-index: 9;
}

.play-btn-02 a {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(240deg, #086ad8 0%, #42b9ff 100%);
    color: #ffffff;
    transition: all 0.3s ease;
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(8, 106, 216, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(8, 106, 216, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(8, 106, 216, 0);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .col-lg-6 {
        width: 100%;
    }

    .techwix-about-section-04 .about-content-wrap {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .section-title .title {
        font-size: 36px;
    }

    .about-img-wrap .about-img-sm {
        width: 40%;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .about-author-info-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-author-info-wrap .about-author {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .about-author-info-wrap .about-info {
        padding-left: 0;
    }

    .about-author-info-wrap .about-info::before {
        display: none;
    }

    .section-title .title {
        font-size: 30px;
    }

    .play-btn-02 {
        left: 10%;
        top: 10%;
    }

    .play-btn-02 a {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 14px;
    }

    .phn {
        width: 100px;
    }
}

/* Video Popup Styles */
.video-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.video-popup-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
}

.video-popup-close {
    position: absolute;
    right: -40px;
    top: -40px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.abt-img-big {
    border-radius: 40px 0 150px 0 !important;
}


/* footer */

/* Main Footer Styles */
.footer-wrapper {
    position: relative;
    margin-top: 120px;
}

/* Newsletter Section (Blue Box) */
.footer-newsletter {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1120px;
    background-color: var(--accent-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.footer-newsletter-content {
    display: flex;
    align-items: center;
}

.footer-newsletter-image {
    flex: 0 0 25%;
    padding-right: 20px;
}

.footer-newsletter-image img {
    max-width: 100%;
    height: auto;
    margin-top: -110px;
}

.footer-newsletter-info {
    flex: 0 0 75%;
    color: white;
}

.footer-newsletter-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-newsletter-offer {
    font-size: 16px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.footer-form-group {
    display: flex;
    margin-bottom: 8px;
}

.footer-input-wrapper {
    position: relative;
    background-color: white;
    border-radius: 20px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    margin-right: 10px;
    flex: 1;
}

.footer-input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
    padding: 5px 5px;
}

.footer-subscribe-btn {
    background-color: #FFF8E1;
    color: #000;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.footer-privacy-note {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 8px;
}

.footer-privacy-link {
    color: white;
    text-decoration: underline;
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-newsletter-image {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .footer-form-group {
        max-width: 400px;
        margin: 0 auto 8px;
    }

    .footer-nav-section {
        flex-wrap: wrap;
    }

    .footer-nav-column {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .footer-wrapper {
        margin-top: 80px;
    }

    .footer-newsletter {
        position: relative;
        top: 0;
        transform: none;
        left: 0;
        width: 100%;
        border-radius: 0;
    }

    .footer-main {
        padding-top: 40px;
        border-radius: 0;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .footer-nav-column {
        flex: 0 0 100%;
    }

    .footer-newsletter-title {
        font-size: 16px;

    }

    .footer-newsletter-offer {
        font-size: 12px;
    }

    .footer-form-group {
        flex-direction: column;
    }

    .footer-input-wrapper {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* service section */






.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
    margin-top: -1px;
}


/* ... service animation ... */



/* we use section */


/* section below slider */


.about-wrapper .about-image {
    position: relative;
    text-align: center;
    z-index: 2;
}

.footer-social {
    display: flex;
    gap: 15px;
}


.about-section .left-shape {
    z-index: 4;
    position: absolute;
    bottom: 0px;
    left: 275px;
    width: 436px;
}

.float-bob-y {
    animation-name: float-bob-y;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.img-anim-left animation {
    transform: translateX(0px);
    opacity: 1;
    clip-path: inset(0px 0% 0px 0px);
}

element.style {
    visibility: visible;
    animation-duration: 1.5s;
    animation-delay: 0.3s;
    animation-name: img-anim-left;
}

.img-custom-anim-left {
    visibility: visible;
    animation-duration: 1.5s;
    animation-delay: 0.3s;
    animation-name: img-anim-left;
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    transform: translateX(0px);
    opacity: 1;
    clip-path: inset(0px 0% 0px 0px);
    height: 520px;
    margin-left: 0%;
}


.about-wrapper .about-image .bg-shape {
    position: absolute;
    bottom: -14px;
    left: 66%;
    transform: translateX(-50%);
    z-index: -1;
    display: none;
}

.brand-img {
    width: 40%;
}

.float-bob-x animation {
    transform: translateX(27.0525px);
}

.about-wrapper .about-image .grap-shape {
    position: absolute;
    bottom: 29%;
    left: 0%;
    animation: bounce 3s ease-in-out infinite;
}

.float-bob-x {
    animation-name: float-bob-x;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.about-wrapper .about-image {
    position: relative;
    text-align: center;
    z-index: 2;
}

.float-bob-y animation {
    transform: translateY(-14.5573px);
}

.about-wrapper .about-image .box-shape {
    position: absolute;
    left: 2%;
    top: 31%;
}

.float-bob-y {
    animation-name: float-bob-y;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.bounce-x animation {
    transform: translateX(10.5515px);
}


@keyframes bounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }
}

.about-wrapper .about-image .emoji-shape {
    position: absolute;
    top: 7%;
    left: 21%;
    animation: bounce 3s ease-in-out infinite;
    /* Removed the duplicate animation property */
}


.about-wrapper .about-content {
    margin-left: 10px;
}

.about-wrapper .about-content .circle-progress-bar-wrapper {
    display: flex;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 30px;
}

.about-section {
    background-repeat: no-repeat;
    position: relative;
    background-color: #001639;
}

.txt-white {
    color: var(--white);
}

.about-section {
    background-repeat: no-repeat;
    position: relative;
    background-color: #001639;
    padding-top: 80px;
    /* Added padding for curve space */
}

.brand-wrapper {
    position: relative;
    background-color: #fff;
    padding: 50px 0;
    margin-top: -33px;
    border-radius: 25px 26px 91px 95px;


    /* Bottom curves */
}

/* Optional: Add a subtle shadow for depth */

/* Adjust the about-wrapper to maintain proper spacing */


/* timeline */
/*===== Vertical Timeline =====*/
#conference-timeline {
    position: relative;
    max-width: 920px;
    width: 125%;

    margin: 0 auto;
}

#conference-timeline .timeline-start,
#conference-timeline .timeline-end {
    display: table;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    background: transparent;
    padding: 15px 23px;
    color: #00b0bd;
    max-width: 5%;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    border: 2px solid #00b0bd;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 176, 189, 0.5);
    position: relative;
    z-index: 100;
    transition: all 0.3s ease;
}

#conference-timeline .timeline-start:hover,
#conference-timeline .timeline-end:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 176, 189, 0.8);
}

#conference-timeline .conference-center-line {
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: 50%;
    margin-left: -2px;
    background: linear-gradient(to bottom, rgba(0, 176, 189, 0), rgba(0, 176, 189, 1), rgba(0, 176, 189, 0));
    z-index: -1;
    box-shadow: 0 0 10px rgba(0, 176, 189, 0.5);
}

.timeline-title {
    font-size: 16px;
    font-weight: 600;
    color: #00b0bd;
    margin-bottom: 10px;
}

#conference-timeline .timeline-start,
#conference-timeline .timeline-end {
    font-size: 24px;
    color: #00b0bd;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

.timeline-article p {
    margin: 0;
    padding: 0;
    font-weight: 400;
    color: #242424;
    font-size: 14px;
    line-height: 24px;
    position: relative;
}

#conference-timeline .conference-timeline-content {
    padding-top: 0px;
    padding-bottom: 0px;
}

.timeline-article {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.timeline-article .content-left-container,
.timeline-article .content-right-container {
    max-width: 44%;
    width: 100%;
}

.timeline-article .timeline-author {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #00b0bd;
    text-align: right;
    margin-top: 10px;
    text-shadow: 0 0 5px rgba(0, 176, 189, 0.3);
}

.timeline-article .content-left,
.timeline-article .content-right {
    position: relative;
    width: auto;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 20px rgba(0, 176, 189, 0.2);
    padding: 11px 10px;
    border-radius: 41px 0px 60px 0px;
    transition: all 0.3s ease;
}

.timeline-article .content-left:hover,
.timeline-article .content-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 176, 189, 0.4);
}

.timeline-article p {
    margin: 0 0 0 60px;
    padding: 0;
    font-weight: 400;
    color: #242424;
    font-size: 14px;
    line-height: 24px;
    position: relative;
}

.timeline-article p span.article-number {
    position: absolute;
    font-weight: 300;
    font-size: 44px;
    top: 10px;
    left: -60px;
    color: #00b0bd;
    text-shadow: 0 0 10px rgba(0, 176, 189, 0.3);
}

.timeline-article .content-left-container {
    float: left;
}

.timeline-article .content-right-container {
    float: right;
}

.timeline-article .content-left:before,
.timeline-article .content-right:before {
    position: absolute;
    top: 16px;
    font-size: 26px;
    color: #239aa3;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f0d9";
    z-index: 33;
    transform: scaleX(-1);

}

.title-main {
    font-size: 31px;
    line-height: 1.2;
    font-weight: 600;
    color: #00183d;
    margin-bottom: 20px;
}

.timeline-article .content-left:before {
    content: "\f0da";
    right: -8px;
}

.timeline-article .content-right:before {
    content: "\f0d9";
    left: -8px;
}

.timeline-article .meta-date {
    position: absolute;
    top: 0;
    left: 50%;
    width: 62px;
    height: 62px;
    margin-left: -31px;
    color: #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, #007a82, #00b0bd);
    box-shadow: 0 0 20px rgba(0, 176, 189, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.timeline-article .meta-date:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 176, 189, 0.8);
}

.timeline-article .meta-date .date,
.timeline-article .meta-date .month {
    display: block;
    text-align: center;
    font-weight: 500;
}

.timeline-article .meta-date .date {
    font-size: 24px;
    line-height: 30px;
}

.timeline-article .meta-date .month {
    font-size: 10px;
    line-height: 10px;

}

/* Tech look connector dots */
.timeline-article:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00b0bd;
    left: 50%;
    top: 30px;
    margin-left: -6px;
    z-index: 5;
    box-shadow: 0 0 10px rgba(0, 176, 189, 0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 176, 189, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 176, 189, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 176, 189, 0);
    }
}

/* Responsive styles */
@media only screen and (max-width: 830px) {

    #conference-timeline .timeline-start,
    #conference-timeline .timeline-end {
        margin: 0;
    }

    #conference-timeline .conference-center-line {
        margin-left: 0;
        left: 50px;
    }

    .timeline-article:before {
        left: 50px;
        margin-left: 0;
    }

    .timeline-article .meta-date {
        margin-left: 0;
        left: 50px;
    }

    .timeline-article .content-left-container,
    .timeline-article .content-right-container {
        max-width: 100%;
        width: auto;
        float: none;
        margin-left: 110px;
        min-height: 53px;
    }

    .timeline-article .content-left-container {
        margin-bottom: 20px;
    }

    .timeline-article .content-left,
    .timeline-article .content-right {
        padding: 15px 20px;
        min-height: 65px;
    }

    .timeline-article .content-left:before {
        content: "\f0d9";
        right: auto;
        left: -8px;
    }

    .timeline-article .content-right:before {
        display: none;
    }
}

@media only screen and (max-width: 400px) {
    .timeline-article p {
        margin: 0;
    }

    .timeline-article p span.article-number {
        display: none;
    }

    .timeline-article .content-left,
    .timeline-article .content-right {
        border-radius: 50px 0 50px 0;
        padding: 15px;
    }
}

.techwix-about-section-04 {
    background: #d7edf67a;
}

/* faq */
.faq-section {
    padding: 80px 0;
    background-color: #f5f9ff;
    width: 100%;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    color: #0d1b2a;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-header p {
    color: #4a6380;
    font-size: 18px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(13, 27, 42, 0.05);
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: rgba(13, 27, 42, 0.08);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(13, 27, 42, 0.12);
}

.faq-question h3 {
    margin: 0;
    font-size: 16px;
    color: #0d1b2a;
    font-weight: 600;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #375663;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    background-color: rgba(13, 27, 42, 0.03);
}

.faq-answer p {
    margin: 0;
    padding: 20px 25px;
    color: #4a6380;
    line-height: 1.6;
        font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Responsive styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-header h2 {
        font-size: 28px;
    }

    .faq-header p {
        font-size: 16px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-question,
    .faq-answer p {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-header h2 {
        font-size: 24px;
    }

    .faq-header p {
        font-size: 14px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-question,
    .faq-answer p {
        padding: 12px 15px;
    }
}

/* chatbox */
.chat-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

.chat-header {
    background: #25d366;
    color: white;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    padding: 15px;
    height: 250px;
    overflow-y: auto;
}

.chat-message {
    background: #f0f0f0;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.chat-footer {
    padding: 15px;
    display: flex;
    gap: 10px;
}

.chat-footer input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.send-btn {
    background: #25d366;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}



.what_we_use {
    max-width: 217px;
}

.text-service-s {
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
    color: #78aec3;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

/* flex box */
/* flex box */
/* flex box */
/* flex box */
/* flex box */
.tab-content {
    display: none;
}

.tab-content.active {
    display: flex;
    /* or block, depending on your layout */
}

.fea-ind-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 60vh;
}

.fea-ind-hero-image {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.fea-ind-year-badge {
    background: linear-gradient(135deg, #6f42c1 0%, #5a2d91 100%);
    color: white;
    border-radius: 15px;
    transform: rotate(-5deg);
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.3);
}

.fea-ind-small-image {
    border-radius: 15px;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fea-ind-services-section {
    background: #f8f9fa;
}

.fea-ind-service-card {
    background: #2c3e50;
    border-radius: 15px;
    color: white;
    transition: all 0.3s ease;
    height: 100%;
}

.fea-ind-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.3);
}

.fea-ind-service-icon {
    color: #2ecc71;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.fea-ind-service-link {
    color: #2ecc71;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.fea-ind-callback-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.fea-ind-form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 8px;
}

.fea-ind-form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.fea-ind-form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #007bff;
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.fea-ind-submit-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.fea-ind-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.fea-ind-tab-section {
    background: white;
}

.fea-ind-nav-tabs .nav-link {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    margin-right: 10px;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
}

.fea-ind-nav-tabs .nav-link.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.fea-ind-tab-image {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.fea-ind-check-item {
    color: #007bff;
    margin-bottom: 0.5rem;
}

.fea-ind-expert-section {
    background: linear-gradient(135deg, #6f42c1 0%, #5a2d91 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.fea-ind-expert-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: url('public/images/index/banner1.jpg');
    opacity: 0.5;
}

.fea-ind-expert-card {
    background: white;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.fea-ind-expert-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fea-ind-step-number {
    background: #6f42c1;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.fea-ind-step-content {
    background: #f8f9fa;
    border-radius: 15px;
}

@keyframes fea-ind-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fea-ind-animate {
    animation: fea-ind-fadeInUp 0.8s ease-out;
}

@keyframes fea-ind-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fea-ind-float {
    animation: fea-ind-float 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .fea-ind-process-step:not(:last-child)::after {
        display: none;
    }

    .fea-ind-year-badge {
        transform: none;
        margin-top: 1rem;
    }

    .fea-ind-small-image {
        width: 100px;
        height: 80px;
        object-fit: cover;
    }
}

/* flex box */
.tab-content {
    display: none;
}

.tab-content.active {
    display: flex;
    /* or block, depending on your layout */
}

.fea-ind-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 60vh;
}

.fea-ind-hero-image {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.fea-ind-year-badge {
    background: linear-gradient(135deg, #6f42c1 0%, #5a2d91 100%);
    color: white;
    border-radius: 15px;
    transform: rotate(-5deg);
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.3);
}

.fea-ind-small-image {
    border-radius: 15px;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fea-ind-services-section {
    background: #f8f9fa;
}

.fea-ind-service-card {
    background: #2c3e50;
    border-radius: 15px;
    color: white;
    transition: all 0.3s ease;
    height: 100%;
}

.fea-ind-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.3);
}

.fea-ind-service-icon {
    color: #2ecc71;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.fea-ind-service-link {
    color: #2ecc71;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.glass-blue-txt {
    color: rgb(177 221 228);
}

.fea-ind-callback-section {
    background: #051532;
    color: white;
}

.fea-ind-form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 8px;
}

.fea-ind-form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.fea-ind-form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #007bff;
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.fea-ind-submit-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.fea-ind-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.fea-ind-tab-section {
    background: white;
}

.fea-ind-nav-tabs .nav-link {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    margin-right: 10px;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
}

.fea-ind-nav-tabs .nav-link.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.fea-ind-tab-image {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.fea-ind-check-item {
    color: #007bff;
    margin-bottom: 0.5rem;
}

.fea-ind-process-section {
    background: #f8f9fa;
}

.fea-ind-process-step {
    text-align: center;
    position: relative;
}

.fea-ind-process-icon {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #6f42c1;
    font-size: 2rem;
}

.fea-ind-process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #dee2e6;
    z-index: -1;
}

.fea-ind-expert-section {
    background: linear-gradient(135deg, #6f42c1 0%, #5a2d91 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.fea-ind-expert-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: url('public/images/index/banner1.jpg');
    opacity: 0.5;
}

.fea-ind-expert-card {
    background: white;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.fea-ind-expert-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fea-ind-step-number {
    background: #6f42c1;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.fea-ind-step-content {
    background: #f8f9fa;
    border-radius: 15px;
}

@keyframes fea-ind-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fea-ind-animate {
    animation: fea-ind-fadeInUp 0.8s ease-out;
}

@keyframes fea-ind-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fea-ind-float {
    animation: fea-ind-float 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .fea-ind-process-step:not(:last-child)::after {
        display: none;
    }

    .fea-ind-year-badge {
        transform: none;
        margin-top: 1rem;
    }

    .fea-ind-small-image {
        width: 100px;
        height: 80px;
        object-fit: cover;
    }
}

.container {

    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
    max-width: 1190px !important;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

.higher-index {
    z-index: 44;
}

.lower_index {
    z-index: 1;
}

.bg-white-tr {

    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / 95%);

}

.text-fnd {
    font-size: 17px;
    line-height: 1.75rem;
    color: #001639;
    text-transform: capitalize;
}

/* work process index */
.wrk-pro-container {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 3rem 1rem;
}

.wrk-pro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.wrk-pro-header {
    text-align: center;
    margin-bottom: 4rem;
}



.wrk-pro-process {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.wrk-pro-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.wrk-pro-step-number {
    position: relative;
    z-index: 10;
    width: 45px;
    height: 45px;
    background:#0c2559;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.wrk-pro-image-container {
    position: relative;
    margin-bottom: 2rem;
}

.text-caption {
    font-size: 1.875rem;
    margin-top: 0rem;
}

.wrk-pro-step-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px dashed #cbd5e1;
    padding: 8px;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.wrk-pro-step-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.wrk-pro-step-description {
    color: #64748b;
    line-height: 1.7;
    max-width: 300px;
    font-size: 16px;
}

.wrk-pro-arrow {
    display: none;
}

.wrk-pro-bg-pattern {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.05;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23334155"/><circle cx="20" cy="20" r="1" fill="%23334155"/><circle cx="80" cy="20" r="1" fill="%23334155"/><circle cx="20" cy="80" r="1" fill="%23334155"/><circle cx="80" cy="80" r="1" fill="%23334155"/></svg>');
    pointer-events: none;
}

.wrk-pro-bg-pattern-1 {
    top: 10%;
    left: 10%;
}

.wrk-pro-bg-pattern-2 {
    top: 20%;
    right: 15%;
}

.wrk-pro-bg-pattern-3 {
    bottom: 10%;
    left: 20%;
}

/* Desktop styles */
@media (min-width: 768px) {
    .wrk-pro-process {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 0;
        position: relative;
    }

    .wrk-pro-step {
        flex: 1;
        max-width: 350px;
        position: relative;
    }

    .wrk-pro-step:not(:last-child) {
        margin-right: 2rem;
    }

    .wrk-pro-arrow {
        display: block;
        position: absolute;
        top: 50%;
        right: -1rem;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 20px solid #e2e8f0;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        z-index: 5;
    }

    .wrk-pro-step:last-child .wrk-pro-arrow {
        display: none;
    }

    .wrk-pro-step-number {
        position: absolute;
        top: -22px;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 0;
    }

    .wrk-pro-image-container {
        margin-top: 2rem;
    }
}

@media (min-width: 1024px) {
    .wrk-pro-title {
        font-size: 3.25rem;
    }

    .wrk-pro-step:not(:last-child) {
        margin-right: 3rem;
    }

    .wrk-pro-arrow {
        right: -1.5rem;
        border-left-width: 25px;
        border-top-width: 18px;
        border-bottom-width: 18px;
    }

    .wrk-pro-step-image {
        width: 160px;
        height: 160px;
    }
}

/* contact form index */
.callback-bg {
    background: #ffffff21;

}

/* about banner */
.hero-bg {
    min-height: 65vh;
    background: linear-gradient(135deg, #474d4f 0%, #27303d 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 20px;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -21%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgb(7 26 57 / 85%) 0%, #000000e3 70%);
    transform: rotate(15deg);
    z-index: 1;
}

.hero-container {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-container {
        flex-direction: row;
    }
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    z-index: 22;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: wheat;
}

.hero-text h1 span {
    color: #9ad0e4;
}

.hero-text p {
    color: #ffffff;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 480px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary-custom,
.btn-secondary-custom {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-custom {
    background: #3b82f6;
    color: white;
    border: none;
}

.btn-primary-custom:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary-custom {
    background: #f59e0b;
    color: white;
    border: none;
}

.btn-secondary-custom:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image-box {
    width: 300px;
    height: 400px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.main-image-box .avatar {
    width: 400px;
    height: 400px;
    background: #ffffff85;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-box .device {
    width: 150px;
    height: 100px;
    background: #111827;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.decor-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    z-index: 1;
}

.decor-yellow {
    width: 60px;
    height: 60px;
    background: #3992b38f;
    top: 15%;
    right: -10%;
}

.decor-green {
    width: 40px;
    height: 40px;
    background: #10b981;
    top: 70%;
    left: -5%;
}

.decor-blue {
    width: 30px;
    height: 30px;
    background: #3b82f6;
    bottom: 10%;
    right: 10%;
}

/* Optional: floating animation for fun shapes */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.geometric-shape {
    width: 30px;
    height: 30px;
    background: #f59e0b;
    transform: rotate(45deg);
    position: absolute;
    opacity: 0.8;
}

.geometric_position {
    top: 0%;
    right: 17%;
}

.hexagon {
    width: 43px;
    height: 50px;
    background: #10b981;
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid #3b82f6;
    position: absolute;
}

.btn-primary-custom {
    background: #a3adb2;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.circle-behind {
    width: 450px;
    height: 450px;
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #b1d0db91;
}


.decor-border {
    --bs-border-opacity: 1;
    border-color: rgba(var(--primary-color), 1) !important;

    border-width: 2px !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -40%);
}

.offset-circle {
    transform: translate(-60%, -60%);
}

.circle-behind-two {
    width: 500px;
    height: 500px;
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #dde8ff;
}

.shape-bounce {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-bounce-two {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

/* about vedio model */
/* ... existing styles ... */

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 27%);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: auto;
    aspect-ratio: 16/9;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 10;
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* ... vedio end ... */
/* about page first section hexogon */
.hexagon-two {
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

@media (max-width: 768px) {
    .hexagon-two {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hexagon-two {
        width: 80px;
        height: 80px;
    }
}

.img-sizing {
    width: 24rem;
    height: 18rem;
}

.img-lft-abt {
    width: 13rem;
    height: 9rem;
    top: -5.5rem;
    left: -3.5rem;
}

.hex-pos {
    right: -1.5rem;
    bottom: -1.5rem;
}

.h-sec {
    min-height: 68vh;
}

.bg-hex-gd {
    --tw-bg-opacity: 1;
    background-color: rgb(64 153 186);
}

.title-main {
    margin-top: 0px !important;
    color: #04265e;
}

.text-steelblue-600 {
    --tw-text-opacity: 1;
    color: #3992b3;
}

.bg-steelblue-100 {
    --tw-bg-opacity: 1;
    background-color: #f0f8ff;
}

.text-white {
    color: #fff;
}

.proj-img-dots {
    background-image: url(../images/index/content.png);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.2;
    position: absolute;
    width: 300px;
    height: 300px;
    z-index: -1;
    top: -43px;
    right: -164px;
}

.card {
    position: relative;
    z-index: 2;
    background-color: var(--tolak-white, #fff);
    border-radius: 20px 20px 0 0;
    padding: 0 28px 22px;
    padding: 28px;
    width: 365px;
    height: 210px;
}

.card_section {
    display: flex;
    gap: 10px
}

.card-title {
    font-size: 17px;
    line-height: 1.75rem;
    font-weight: 600;
    color: #095186;
    text-transform: capitalize;
}

.service-three__item__image {
    position: relative;
}

.service-three__item__image img {
    width: 100%;
    height: 250px;
    clip-path: polygon(0% 0%, 100% 0, 100% 69%, 50% 100%, 0 69%);
}

.service-three__item__icon {
    position: relative;
    z-index: 3;
    top: 17px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto -22px;
    background-color: rgba(var(--tolak-white-rgb, 255, 255, 255), 0.8);
    font-size: 42px;
    color: var(--tolak-base, #3d72fc);
    transition: all 500ms ease;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.08));
}

.tolak-icons-two-cybersecurity:before {
    color: beige;
}

.gradient-icon {
    background: linear-gradient(to right, #034aac, #1aa3c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.flex-direction {
    display: flex
}

/* testimonial */
.slider-container {
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-item {
    flex: 0 0 100%;
    padding: 0 12px;
}

@media (min-width: 768px) {
    .testimonial-item {
        flex: 0 0 50%;
    }
}

.star-filled {
    color: #fbbf24;
}

.star-empty {
    color: #d1d5db;
}

.navigation-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.navigation-dot.active {
    background-color: #fbbf24;
}

.arrow-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.arrow-button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.arrow-button.prev {
    left: -24px;
}

.arrow-button.next {
    right: -24px;
}

@media (max-width: 767px) {
    .arrow-button {
        display: none;
    }
}

.cont-width-img {
    width: 40%;
}

.cont-width {
    width: 60%;
}

.dot-style {
    margin-top: 30px;
    gap: 15px;
}

.fa-star:before {
    color: gold;
}

.big-img {
    height: 281vh;
}

.large-visibility {
    z-index: 22;
}

.index-one {
    z-index: 1;
}

.index-two {
    z-index: 2;
}

/* SERVICE BANNER */
.service-banner {
    background: linear-gradient(135deg, #001233 0%, #000814 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.service-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/service/b.png') repeat;
    opacity: 0.1;
}

.service-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-banner-content {
    flex: 1;
    z-index: 2;
}

.service-breadcrumb {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}

.service-breadcrumb-separator {
    color: #47A6FF;
    margin: 0 10px;
}

.service-breadcrumb-active {
    color: #47A6FF;
}

.service-banner-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.service-banner-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.service-img {
    max-width: 400px;
    height: auto;
}

@media (max-width: 768px) {
    .service-banner-container {
        flex-direction: column;
        text-align: center;
    }

    .service-banner-image {
        justify-content: center;
        margin-top: 30px;
    }

    .service-img {
        max-width: 300px;
    }

    .service-banner-title {
        font-size: 36px;
    }
}

.circle-behind-ser {
    width: 600px;
    height: 600px;
    opacity: 0.2;
    top: 33%;
    left: 30%;
    background: #b1d0dbe6;
}

.main-image-box .avatar-ser {
    width: 400px;
    height: 400px;

}

/* New Shape Styles */
.decor-diamond {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: rgba(255, 215, 0, 0.3);
    width: 60px;
    height: 60px;
    top: 56%;
    left: 20%;
}

.decor-square {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: rgba(255, 215, 0, 0.2);
    width: 31px;
    height: 38px;
    top: 33%;
    left: 34%;
}



.decor-pentagon {
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    background: rgba(255, 215, 0, 0.2);
    width: 65px;
    height: 65px;
    top: 15%;
    right: 17%;

}



/* Add pulse animation for pentagon */
@keyframes shape-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.shape-pulse {
    animation: shape-pulse 3s infinite ease-in-out;
}

/* service contents */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(57, 146, 179, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(57, 146, 179, 0.6);
    }
}

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

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

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

@keyframes slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* service tabs */
.service-tab {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: #333;
    border: 1px solid rgba(57, 146, 179, 0.1);
    margin-bottom: 10px;
}

.service-tab:hover {
        transform: translateX(8px) scale(1.02);
    background: #ecf9ff;
    color: #09465d;
}

.service-tab.active {
       background: linear-gradient(135deg, #195f78, #080240);
    color: white;
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 10px 25px rgba(57, 146, 179, 0.3);
}

.service-tab:hover .icon-bg,
.service-tab.active .icon-bg {
    background: rgba(255, 255, 255, 0.2);
}
.bg-blue-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 243 249) !important;
}
.service-tab:hover i,
.service-tab.active i {
    color: #305eb4!important;
}
.w-ful-h-64{
        width: 80%;
            height: 100%;
}
/* Update service content transitions */

.service-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.text-icon-600 {
    --tw-text-opacity: 1;
    color: rgb(14 46 116);
}

.service-title {
    font-weight: 600;
    font-size: 21px;
    margin-bottom: 10px;
    color: #1e608c;
}

.font-14 {
    font-size: 14px;
}

.service-title-middle {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    color: #1e608c;
    margin-top: 20px;
}

/* Add these styles for the service section background */
/* .service-section {
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.8);
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1;
} */

.img-pos {
    width: 26%;
    bottom: 25px;
    height: 81%;
    opacity: .2;
}

/* contact page */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(57, 146, 179, 0.1);
}

.input-group {
    position: relative;
    transition: all 0.3s ease;
}

.input-group input,
.input-group select,
.input-group textarea {
    transition: all 0.3s ease;
}

.input-group:focus-within {
    transform: scale(1.02);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #3992b3;
    box-shadow: 0 0 0 3px rgba(57, 146, 179, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #3992b3, #2c7a94);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2c7a94, #236073);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(57, 146, 179, 0.3);
}

.hero-image {
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

.f-pad {
    padding: 30px;
    border-radius: 1.5rem;
    gap: 1.5rem;
}

.mar-6 {
    margin-top: 15px;
}

.btn-light-bl {
    background-color: #6cafba !important;
}

.btn-light-bl:hover {
    background: linear-gradient(135deg, #2c7a94, #236073);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(57, 146, 179, 0.3);
}

.hero-bg-contact::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -21%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgb(27 67 132 / 85%) 0%, #000000e3 70%);
    transform: rotate(15deg);
    z-index: 1;
}

.hero-bg-contact {
    min-height: 65vh;
    background: linear-gradient(135deg, #6a6c73 0%, #8199f9 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 20px;
}

.hero-text-contact h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.hero-text-contact {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    z-index: 22;
}

.hero-text-contact p {
    color: #ffffff;
    font-size: 14px;
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 27px;
    border-radius: 50%;
    background-color: #f3fcff69;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4px;
    position: relative;
    overflow: hidden;
}

.header-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    background-color: #ffffff;
    color: #3992b3;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.header-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.header-social-link:hover::before {
    width: 120%;
    height: 120%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.header-social-link:active {
    animation: pulse 0.3s ease-in-out;
}

.main-image-box-contact .avatar {
    width: 400px;
    height: 400px;
    background: #0a0a11a8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.main-image-box-contact {
    width: 300px;
    height: 400px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

/* contact banner shapes */
/* Hexagon shapes with blue variations */
.hex-shape {
    position: absolute;
    width: 59px;
    height: 65px;
    background: transparent;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

.hex-blue-1 {
    background: #c0fcfe47;
    top: 16%;
    left: 15%;
}

.hex-blue-2 {
    background: rgba(0, 102, 204, 0.15);
    top: 35%;
    right: 20%;
}

.hex-blue-3 {
    background: #8df2f252;
    bottom: 37%;
    left: 25%;
}

.hex-blue-4 {
    background: rgba(30, 144, 255, 0.08);
    top: 15%;
    right: 30%;
}

.blue-bubble {
    width: 40px;
    height: 40px;
    background: #6cafba;
    top: 70%;
    left: -5%;
}

.hexagon-trans {
    width: 43px;
    height: 50px;
    background: #27447f;
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hex-blue-5 {
    background: rgba(65, 105, 225, 0.1);
    bottom: 36%;
    right: 15%;
}

.hex-blue-6 {
    background: rgba(0, 191, 255, 0.15);
    top: 40%;
    left: 30%;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

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

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes drift {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(15px, 15px) rotate(10deg);
    }
}

.shape-float {
    animation: float 6s infinite ease-in-out;
}

.shape-rotate {
    animation: rotate 8s infinite linear;
}

.shape-pulse {
    animation: pulse 4s infinite ease-in-out;
}

.shape-bounce {
    animation: bounce 3s infinite ease-in-out;
}

.shape-spin {
    animation: spin 10s infinite linear;
}

.shape-drift {
    animation: drift 5s infinite ease-in-out;
}

/* contact map */
/* Map Section Styling */
.map-section {
    padding: 30px 20px;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    text-transform: capitalize;
}

.map-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 30px;
    position: relative;
}

.map-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #6cafba, #3992b3);
    border-radius: 2px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-section {
        padding: 40px 15px;
    }

    .map-title {
        font-size: 1.5rem;
    }

    .map-container iframe {
        height: 350px;
    }
}

.img-pos-con-one {
    width: 15%;
    bottom: 36px;
    height: 93%;
    opacity: .2;
}

.img-pos-con-two {
    position: absolute;
    left: -18px;
    bottom: 284px;
    width: 26%;
    height: 54%;
    opacity: 0.2;
    transform: rotate(15deg);
    /* optional */
}


.img-pos-con-three {
    width: 15%;
    bottom: 36px;
    height: 93%;
    opacity: .2;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.footer-bottom .footer-container {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-copyright {
    font-size: 12px;
    color: #ffffff;
}
/* portfolio */


.banner-project {
    border-radius: 50%;
}

.banner-project {
    border-radius: 50%;
    height: 395px;
    width: 400px;
}

.hero-bg-project {
    min-height: 55vh;
    background: linear-gradient(135deg, #4a94ae 0%, #488fa8 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 20px;
}

.hero-bg-project::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -21%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgb(57 132 157) 0%, #000000e3 70%);
    transform: rotate(15deg);
    z-index: 1;
}

.hexagon-pro {
    width: 53px;
    height: 60px;
    background: #fefeff66;
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.decor-bl {
    width: 30px;
    height: 30px;
    background: #00ffff5e;
    bottom: 10%;
    right: 10%;
}

.brand-color {
    background-color: #3992b3c2;
}

.brand-text {
    color: #3992b3;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #3595b2, #3a9fbd99, rgba(255, 107, 53, 0));
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
    clip-path: none;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.play-button {
    width: 60px;
    height: 60px;
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.1s;
}

.fade-in-delay-2 {
    animation-delay: 0.2s;
}

.fade-in-delay-3 {
    animation-delay: 0.3s;
}

.fade-in-delay-4 {
    animation-delay: 0.4s;
}

.fade-in-delay-5 {
    animation-delay: 0.5s;
}

.fade-in-delay-6 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.mt-16 {
    margin-top: 4rem;
}

.flex-row-cn {
    flex-direction: row;

}

.button-padding {
    padding: 5px 15px;
}


.portfolio-bg-image {
    position: absolute;
    top: 65%;
    right: 0;
    width: 34%;
    height: 72%;
    object-fit: cover;
    opacity: 0.08;
    transform: scale(1.1);
}

.port-bg-image {
    position: absolute;
    top: 150%;
    left: 0;
    width: 34%;
    height: 49%;
    object-fit: cover;
    opacity: 0.08;
    transform: scale(1.1);
    /* filter: blur(5px); */
}

.hex-blue-7 {
    background: #00b0bd21;
    bottom: -73%;
    right: 5%;

}

/* project details */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-pulse-hover:hover {
    animation: pulse 0.3s ease-in-out;
}

.hero-gradient {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.text-gradient {
    background: linear-gradient(135deg, #3992b3, #4da8c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

.check-icon {
    transition: all 0.3s ease;
}

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

/* footer latest */
.footer-two-container {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

/* Left animated triangle - simple up/down motion */
.footer-two-triangle-left {
    position: absolute;
    left: 50px;
    top: 30%;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 60px solid #3992b3;
    animation: footer-two-move-up-down 3s ease-in-out infinite;
    opacity: 0.6;
}

/* Right triangle with overlapping lines */
.footer-two-triangle-right {
    position: absolute;
    right: 20px;
    top: 20%;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 80px solid #3992b3;
    opacity: 0.4;
}

/* Triangle outline/border effect */
.footer-two-triangle-outline {
    position: absolute;
    right: 25px;
    top: 25%;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 70px solid transparent;
    border-bottom-color: rgba(57, 146, 179, 0.3);
    animation: footer-two-line-slide 4s linear infinite;
}

/* Moving line inside right triangle */
.footer-two-moving-line {
    position: absolute;
    right: 45px;
    top: 45%;
    width: 20px;
    height: 2px;
    background: #3992b3;
    animation: footer-two-line-move 2s ease-in-out infinite;
    transform-origin: left;
}

/* Simple up and down animation for left triangle */
@keyframes footer-two-move-up-down {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Line sliding animation */
@keyframes footer-two-line-slide {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(0);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-10px);
    }
}

/* Moving line animation */
@keyframes footer-two-line-move {

    0%,
    100% {
        transform: scaleX(1);
        opacity: 0.6;
    }

    50% {
        transform: scaleX(1.5);
        opacity: 1;
    }
}

.footer-two-logo {
    color: #3992b3;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/*.footer-two-logo::before {*/
/*    content: "◆";*/
/*    color: #3992b3;*/
/*    font-size: 1.2rem;*/
/*}*/

.footer-two-link {
    color: #cbd5e1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    font-size: 0.9rem;
}
.footer-two-logo img {
    top: 0px;
    width: 93px;
    height: 101px;
}

.footer-two-link:hover {
    color: #3992b3;
    transform: translateX(5px);
}

.footer-two-link::before {
    content: "▶";
    font-size: 0.6rem;
    color: #3992b3;
}

.footer-two-social {
    width: 36px;
    height: 36px;
    background: rgba(57, 146, 179, 0.1);
    border: 1px solid rgba(57, 146, 179, 0.3);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-two-social:hover {
    background: #3992b3;
    color: white;
    transform: translateY(-2px);
}

.footer-two-section-title {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-two-contact-item {
    color: #cbd5e1;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-two-contact-icon {
    width: 18px;
    height: 18px;
    color: #3992b3;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-two-description {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .footer-two-triangle-left {
        left: 20px;
        border-left-width: 30px;
        border-right-width: 30px;
        border-bottom-width: 45px;
    }

    .footer-two-triangle-right {
        right: 15px;
        border-left-width: 45px;
        border-right-width: 45px;
        border-bottom-width: 60px;
    }

    .footer-two-triangle-outline {
        right: 18px;
        border-left-width: 38px;
        border-right-width: 38px;
        border-bottom-width: 53px;
    }

    .footer-two-moving-line {
        right: 35px;
        width: 15px;
    }

    .footer-two-logo {
        font-size: 1.25rem;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .footer-two-section-title {
        text-align: center;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .footer-two-triangle-left,
    .footer-two-triangle-right,
    .footer-two-triangle-outline {
        display: none;
    }
}

.triangle-wrapper {
    transform: rotate(90deg);
    /* Rotate entire triangle to the right */
    position: absolute;
    left: 50px;
    top: 30%;
}

.footer-two-triangle-left {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 70px solid #3992b3;
    animation: footer-two-move-up-down 3s ease-in-out infinite;
    opacity: 0.6;
}

.footer-two-triangle-right {
    position: absolute;
    right: -10px;
    top: 26%;
    width: 0;
    height: 0;
    border-top: 117px solid transparent;
    border-bottom: 122px solid transparent;
    border-right: 119px solid rgba(57, 146, 179, 0.3);
    animation: footer-two-line-slide 4s linear infinite;
}

.footer-two-triangle-outline {
    position: absolute;
    right: -9px;
    top: 19%;
    width: 0;
    height: 0;
    border-top: 74px solid transparent;
    border-bottom: 102px solid transparent;
    border-right: 86px solid rgba(57, 146, 179, 0.3);
    animation: footer-two-line-slide 4s linear infinite;
}

.footer-top {
    margin-top: 6%;
}

.container-fluid {
    max-width: 1280px;
}

/* portfolio new */
/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.animate-delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

.animate-delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
}

/* Custom hover effects */
.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-card:hover .project-title {
    background: linear-gradient(45deg, #ffffff, #d1d5db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-card:hover .project-line {
    width: 4rem;
    background-color: #ebb854;
}

.project-card:hover .project-category {
    color: #ffffff;
}

.project-card:hover .project-year {
    color: #ebb854;
}

.project-year {
    color: #ebb854;
}

.project-category {
    color: #ebb854;
}

.project-line {
    background-color: #ebb854;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .project-card:hover {
        transform: none;
    }

    .project-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
}


.project-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
}

.portfolio-bg-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.portfolio-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background-image: url('../images/portfolio/lines.png');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.9;
    filter: blur(1px);

}

.portfolio-bg.top-left {
    top: 0;
    right: 0;
    transform: rotate(180deg);
}

.portfolio-bg.bottom-right {
    bottom: 46%;
    left: 0;
    transform: rotate(90deg);
}

.portfolio-bg.bottom-left {
    bottom: 0;
    left: 0;
    transform: rotate(0deg);
}

.project-title-one {
    font-size: 35px;
    line-height: 1;
    text-transform: capitalize;
}

/* Shooting Star Styling */
.portfolio-bg-wrapper span {
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
    animation: shooting 3s linear infinite;
    z-index: 0;
    /* behind content if needed */
}

.portfolio-bg-wrapper span::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, #fff, transparent);
    opacity: 0.5;
}

/* Keyframes */
@keyframes shooting {
    0% {
        transform: rotate(315deg) translateX(0);
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: rotate(315deg) translateX(-1000px);
        opacity: 0;
    }
}

.portfolio-bg-wrapper span:nth-child(3) {
    top: 10%;
    right: 0;
    animation-delay: 0s;
    animation-duration: 2.5s;
}

.portfolio-bg-wrapper span:nth-child(4) {
    top: 25%;
    right: 100px;
    animation-delay: 1s;
    animation-duration: 3s;
}

.portfolio-bg-wrapper span:nth-child(5) {
    top: 40%;
    right: 200px;
    animation-delay: 2s;
    animation-duration: 2s;
}

.portfolio-bg-wrapper span:nth-child(6) {
    top: 55%;
    right: 300px;
    animation-delay: 0.7s;
    animation-duration: 2.8s;
}

.portfolio-bg-wrapper span:nth-child(7) {
    top: 70%;
    right: 400px;
    animation-delay: 1.5s;
    animation-duration: 2.4s;
}

.heading-underline {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.heading-underline::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(to right, silver, #ddd);
    transition: width 0.4s ease;
}

.heading-underline:hover::after {
    width: 100%;
}

/* service section index */
.title-white {
    margin-top: 0px !important;
    color: #ffffff;
    font-size: 31px;
    text-transform: capitalize;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 43px;
    height: 43px;
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    z-index: 99;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    /* start from below */
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: bounceIn 0.6s ease;
}

.scroll-to-top:hover {
    transform: scale(1.15);
    background-color: #fff;
    /* or any hover color */
    color: var(--accent-color);
}

.scroll-to-top span {
    display: inline-block;
    transition: transform 0.4s ease;
    font-size: 19px;
}

.scroll-to-top:hover span {
    transform: rotate(-360deg);
}

/* Bounce animation */
@keyframes bounceIn {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    60% {
        transform: translateY(-10px);
        opacity: 1;
    }

    80% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

/* services index new*/
.ser-sec-slider-container {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" opacity="0.05"><circle cx="100" cy="100" r="80" fill="%23e0e7ff"/><circle cx="1000" cy="150" r="60" fill="%23ddd6fe"/><circle cx="200" cy="600" r="100" fill="%23fef3c7"/><circle cx="900" cy="650" r="70" fill="%23dcfce7"/><circle cx="600" cy="200" r="40" fill="%23fee2e2"/><circle cx="800" cy="500" r="90" fill="%23e0f2fe"/></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ser-sec-slide {
    transition: transform 0.4s ease-in-out;
    flex: 0 0 auto;
}

.ser-sec-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.ser-sec-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ser-sec-nav-btn {
    transition: all 0.3s ease;
}

.ser-sec-nav-btn:hover {
    background-color: #f3f4f6;
    transform: scale(1.05);
}

.ser-sec-slider-track {
    transition: transform 0.4s ease-in-out;
}

/* Mobile: 1 slide */
@media (max-width: 767px) {
    .ser-sec-slide {
        width: 100%;
    }
}

/* Tablet: 2 slides */
@media (min-width: 768px) and (max-width: 1023px) {
    .ser-sec-slide {
        width: 50%;
    }
}

/* Desktop: 4 slides */
@media (min-width: 1024px) {
    .ser-sec-slide {
        width: 25%;
    }
}
.card-description{
        font-size: 15px;
}
.title-cl-black {
    margin-top: 0px !important;
    font-size: 28px;
    text-transform: capitalize;
}
/* technologies */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes slideReverse {
    0% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

.slider-track {
    animation: slide 25s linear infinite;
}

.slider-track-reverse {
    animation: slideReverse 25s linear infinite;
}

.slider-container:hover .slider-track,
.slider-container:hover .slider-track-reverse {
    animation-play-state: paused;
}

.tech-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(51, 65, 85, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-2px);
    border-color: rgba(148, 163, 184, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gradient-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}
.img-pos-two {
    position: absolute;      /* Or 'fixed' if you want it to stay on scroll */
    top: 0;                  /* Stick to the top */
    right: 0;                /* Stick to the right */
    width: 26%;              /* Adjust as needed */
    height: 81%;             /* Adjust as needed */
    opacity: 0.2;            /* Valid opacity between 0 and 1 */
    z-index: -1;             /* Optional: move behind other elements */
}
.testimonial-slider .swiper-container {
    overflow: hidden !important;
}

.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.text-3xl-cstm{
    font-size:31px;
}
.font-15{
    font-size:15px;
}
.cont-para-st{
     
    font-size: 16px;
}
.cont-para-weight{
        max-width: 500px;
}
}
.testimonial-slider .swiper-button-next:after,
.testimonial-slider .swiper-button-prev:after {
    font-size: 18px;
    color: #333;
}
.text-greek-gray-900 {
    --tw-text-opacity: 1;
    color: rgb(52 78 89);
}
.samll-caps{
    font-size: 16px;
    color: #074f54;
    font-weight: bold;
}
.text-xl-lx {
    font-size: 16px;
    line-height: 1.75rem;
}
.d-center{
    display:flex;
    justify-content:center;
    align-items:center;
}