/* ================= FEATURE CARD ================= */
.feature-card {
    background: linear-gradient(145deg, #ffffff, #f7f9fc);
    border-radius: 22px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    will-change: transform;
}

/* subtle animated gradient border */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #4f46e5, #22c55e, #ef4444);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* CARD HOVER: move + rotate + scale + shadow */
.feature-card:hover {
    transform: translateY(-10px) rotate(-1deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

/* ================= ICON ================= */
.icon-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: floatIcon 4s ease-in-out infinite;
    will-change: transform;
}

/* icon glow */
.icon-circle::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: inherit;
    filter: blur(20px);
    opacity: 0.4;
    z-index: -1;
}

/* ICON HOVER: move + rotate + scale + shadow */
.feature-card:hover .icon-circle {
    transform: translateY(-6px) scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    animation-play-state: paused;
}

/* ================= TEXT ================= */
.feature-card h5 {
    margin-top: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================= FLOAT ANIMATION ================= */
@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* ================= ENTRANCE ANIMATION ================= */
.feature-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.25s; }
.feature-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {
    .feature-card {
        padding: 2.5rem 1.5rem;
    }
}


/* Floating gradient shapes */
.shape-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}
.bg-gradient-1 {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}
.bg-gradient-2 {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

/* Image hover zoom effect */
.hover-zoom {
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}
.hover-zoom:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Gradient overlay on image */
.overlay-gradient {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 25px;
    /* background: linear-gradient(135deg, rgba(102,16,242,0.15), rgba(0,123,255,0.1)); */
    z-index: -1;
}

.shadow-lg {
    border-radius: 25px !important;
}

/* Button hover effect */
.btn-primary {
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .overlay-gradient {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .shape-circle {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .shape-circle {
        display: none;
    }
    .bg-shape {
        display: none;
    }
}



/* Service card hover effect */
.service-card {
    background: #fff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Gradient icon circles */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.service-card:hover .icon-circle {
    transform: scale(1.2) rotate(10deg);
}

.bg-gradient-1 {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}
.bg-gradient-2 {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}
.bg-gradient-3 {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}
.bg-gradient-4 {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .service-card {
        padding: 2rem 1rem;
    }
}

.testimonial-alt {
    background: #ffffff;
}

.testimonial-alt .testimonial-box {
    border: 1px solid #e9ecef;
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    height: 100%;
}

.testimonial-alt .testimonial-quote i {
    font-size: 30px;
    color: #dee2e6;
    margin-bottom: 10px;
}

.testimonial-alt .testimonial-quote p {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-alt .testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-alt .testimonial-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-alt .testimonial-user h6 {
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-alt .testimonial-user span {
    font-size: 0.8rem;
    color: #777;
}

.testimonial-alt .linkedin {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0a66c2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Owl Nav */
.testimonial-alt .owl-nav button {
    background: none !important;
    font-size: 22px;
    position: absolute;
    top: -60px;
    color: #333;
}

.testimonial-alt .owl-nav .owl-prev {
    left: 0;
}
.testimonial-alt .owl-nav .owl-next {
    right: 0;
}
/* REAL space between owl items */
.testimonial-alt .owl-stage {
    display: flex;
}

.testimonial-alt .owl-item {
    padding-right: 10px;
    padding-left: 10px;
    box-sizing: border-box;
}
/* Counter Section Background */
.counter-section .blue-bg {
    background: linear-gradient(135deg, #0b1f33, #102a43, #163a5f);
    padding: 80px 0;
}

/* Counter Card */
.counter-section .counter-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition:
        transform 0.35s ease,
        background 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect on card only */
.counter-section .counter-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.14);
}

/* Bottom glow line */
.counter-section .counter-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.counter-section .counter-card:hover::after {
    width: 60%;
}

/* Icon Circle */
.counter-section .counter-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(0, 198, 255, 0.25);
}

.counter-section .counter-icon img {
    width: 36px;
}

/* Counter Number (Static, readable, no animation) */
.counter-section h2.counter {
    color: #ffffff !important; /* 🔥 Fixed readability */
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
    transition: none !important; /* ❌ Disable CSS transition */
    animation: none !important; /* ❌ Disable any animation */
}

.counter-section h2.counterr {
    color: #ffffff !important; /* 🔥 Fixed readability */
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
    transition: none !important; /* ❌ Disable CSS transition */
    animation: none !important; /* ❌ Disable any animation */
}

/* Prevent hover from affecting number */
.counter-section .counter-card:hover h2.counter {
    transform: none !important;
}

/* Label text */
.counter-section span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    letter-spacing: 0.4px;
}

/* Responsive tweak */
@media (max-width: 767px) {
    .counter-section h2.counter {
        font-size: 2.2rem;
    }
}

/* Hover scale animation */
.hover-scale:hover {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

/* Fade-in animation */
.animated.fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animated geometric background shapes */
.animated-shapes span.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 6s infinite ease-in-out alternate;
}
.shape-1 {
    width: 150px;
    height: 150px;
    background: #ffcc00;
    top: 20%;
    left: 10%;
    animation-duration: 8s;
}
.shape-2 {
    width: 100px;
    height: 100px;
    background: #00ffff;
    top: 40%;
    left: 70%;
    animation-duration: 6s;
}
.shape-3 {
    width: 200px;
    height: 200px;
    background: #ff00ff;
    top: 60%;
    left: 30%;
    animation-duration: 10s;
}
.shape-4 {
    width: 120px;
    height: 120px;
    background: #00ffcc;
    top: 10%;
    left: 50%;
    animation-duration: 7s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Card hover effect */
.opportunity-card {
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.opportunity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Image zoom & overlay */
.card-img-wrapper {
    overflow: hidden;
    position: relative;
}
.card-img-wrapper img {
    transition: transform 0.5s ease;
}
.card-img-wrapper:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.card-img-wrapper:hover .overlay {
    opacity: 1;
}

/* Carousel Control Styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 50% 50%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

a:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 12px 25px rgba(0,0,0,0.25); */
}

.hero-slider {
    position: relative;
}

.hero-slide {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
}

/* Text Styling */
.hero-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white !important;
}

.hero-title span {
    color: #4da3ff;
}

.hero-text {
    font-size: 18px;
    opacity: 0.9;
    max-width: 520px;
    margin-bottom: 25px;
}

/* Buttons */
.hero-buttons .btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(90deg, #4da3ff, #1e6fff);
    border: none;
}

.btn-outline-light:hover {
    background: #fff;
    color: #000;
}

/* Owl Dots */
.hero-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

.hero-slider .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    display: inline-block;
    margin: 0 5px;
    border-radius: 50%;
}

.hero-slider .owl-dot.active span {
    background: #4da3ff;
}

/* Responsive */
@media (max-width: 768px) {
.hero-title {
    font-size: 38px;
}
.hero-text {
    font-size: 16px;
}
.hero-section-btn{
    margin-top: 1rem;
}
}