/* 
   PDS IT Solutions - Premium Custom CSS 
   Modern, Glassmorphism, and Vibrant Theme
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #0070f3;
    /* Bright Tech Blue */
    --primary-gradient: linear-gradient(135deg, #0070f3 0%, #00c6ff 100%);
    --primary-dark: #0051a8;
    --primary-soft: rgba(0, 112, 243, 0.1);

    --secondary-color: #7928ca;
    /* Deep Purple */
    --secondary-gradient: linear-gradient(135deg, #7928ca 0%, #ff0080 100%);
    --secondary-soft: rgba(121, 40, 202, 0.1);

    --accent-color: #f5a623;

    --dark-bg: #0a0a0a;
    /* True modern dark */
    --dark-surface: #111111;
    --light-bg: #fafafa;

    --text-main: #171717;
    --text-muted: #666666;
    --text-light: #ededed;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--light-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-font {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* --- Utilities --- */
.text-gradient-primary {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-secondary {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--primary-gradient) !important;
}

.bg-gradient-secondary {
    background: var(--secondary-gradient) !important;
}

/* Buttons */
.btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00c6ff 0%, #0070f3 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 112, 243, 0.3);
    color: white;
}

/* --- Glass Navbar --- */
.navbar {
    background: #fff !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-link {
    font-weight: 500;
    color: var(--text-main) !important;
    padding: 0.5rem 1.2rem !important;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* --- Modern Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--light-bg);
    overflow: hidden;
    padding-top: 80px;
    /* Account for navbar */
}

/* Abstract Blobs */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: blob-float 20s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: rgba(0, 112, 243, 0.4);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: rgba(121, 40, 202, 0.4);
    animation-delay: -5s;
    animation-direction: alternate-reverse;
}

@keyframes blob-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(10%, 10%) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--primary-soft);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 112, 243, 0.2);
}

.floating-img {
    animation: float-img 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

@keyframes float-img {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* --- Premium Cards --- */
.feature-card {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-card:hover::before {
    opacity: 0.03;
}

.icon-box-premium {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--light-bg);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05), 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    padding: 4px;
}

.feature-card:hover .icon-box-premium {
    transform: scale(1.1) rotate(5deg);
}

/* --- Testimonials --- */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-soft);
    position: absolute;
    top: 1rem;
    right: 2rem;
    opacity: 0.5;
}

/* --- Call to Action --- */
.cta-premium {
    background: #007cad;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    padding: 3rem 2rem;
}

.cta-premium::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-gradient);
    filter: blur(80px);
    top: -100px;
    right: -100px;
    opacity: 0.5;
}

.cta-premium::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--secondary-gradient);
    filter: blur(80px);
    bottom: -100px;
    left: -100px;
    opacity: 0.3;
}

/* --- Footer --- */
.modern-footer {
    background: var(--dark-bg);
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-link {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    padding-left: 8px;
}

/* --- Modern Animated Banner Hero --- */
.hero-carousel-section {
    height: 900px;
    min-height: 600px;
}

.hero-carousel-section .banner-img {
    /* filter: brightness(0.65) saturate(1.2); */
}

.hero-carousel-section .carousel-caption {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
}

.hero-carousel-section .glass-panel {
    background: rgba(255, 255, 255, 0.85) !important;
    border: none;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.animate-slide-up {
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* --- Vendor Logo Scroll --- */
.vendor-scroll-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 0rem 0;
}

.vendor-scroll-container::before,
.vendor-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.vendor-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.vendor-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

.vendor-scroll-track {
    display: inline-flex;
    align-items: center;
    gap: 4rem;
    animation: scroll-vendors 25s linear infinite;
    padding-left: 4rem;
    /* Match the gap */
    width: max-content;
}

.vendor-scroll-track:hover {
    animation-play-state: paused;
}

.vendor-logo-item {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* filter: grayscale(100%) opacity(60%); */
    transition: all 0.3s ease;
}

.vendor-logo-item:hover {
    /* filter: grayscale(0%) opacity(100%); */
    transform: scale(1.05);
}

.vendor-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll-vendors {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.max-w-600 {
    max-width: 800px;
}


@media (max-width: 992px) {
    .hero-carousel-section {
        height: 604px;
    }

    .max-w-600 {
        max-width: 90%;
    }

    .btn-primary {
        font-size: 15px;
    }
}

.feature-card ul li{
    color: #212529bf;
}


.glass-panel.ms-5{
    margin-left: 6rem !important;
}


.icon-box-premium img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.list-unstyled li .icon-box{
    width: 30px;
    height: 30px;
    display: inline-flex;
    background-color: #fff;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
}
.list-unstyled li .icon-box i{
    color:#000 !important;
}

.icon-box-premium-service{
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--light-bg);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05), 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    padding: 4px;
    }
    .icon-box-premium-service img{
        width:100%;
        height:100%;
        object-fit: contain;
    }
    
    .service-box{
       transition: transform 0.3s ease; 
    }
    .service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease;
}
.service-box ul li{
    list-style: none;
    position: relative;
    padding-left: 20px;
}
.service-box ul{
    margin-top: 20px;
}
.service-box ul li i{
    position: absolute;
    left: 0;
}
.service-feature-card ul li i{
    position: absolute;
    left: 0;
}
.service-feature-card ul{
    margin-top: 20px;
}
.service-feature-card ul li{
    list-style: none;
    position: relative;
    padding-left: 20px;
}
.wpcf7-spinner{
   position: absolute !important; 
}
.cont-form p{
    margin-bottom: 0px !important;
}
.wpcf7-form-control-wrap .wpcf7-form-control{
    font-size: 16px !important;
    color: #5b5b5b !important;
}
.wpcf7-form-control-wrap textarea{
    height: 150px !important;
}
@media (max-width: 480px) {
.border-top.border-secondary{
    justify-content: center !important;
}
}





