 
        :root {
            --primary-red: #ff3131;
            --primary-dark: #1d3557;
            --black: #000000;
            --white: #ffffff;
            --light-bg: #f8f9fa;
            --gray: #495057;
            --light-gray: #e9ecef;
            --text-dark: #212529;
            --text-light: #6c757d;
            --gradient-1: linear-gradient(135deg, #ff3131 0%, #ff3131 100%);
            --gradient-2: linear-gradient(135deg, #ff3131 0%, #ff3131 50%, #ff3131 100%);
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
             font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: var(--white);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            padding: 1.25rem 0;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--primary-red);
            box-shadow: var(--shadow);
        }

        .navbar.scrolled {
            padding: 0.9rem 0;
            background: var(--primary-dark);
            box-shadow: 0 10px 40px rgba(29, 53, 87, 0.25);
            border-bottom-color: transparent;
        }

        .navbar.scrolled .nav-logo .logo-img {
            filter: brightness(0) invert(1);
        }
        
        /* Logo with Image */
        .nav-logo {
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.4s ease;
        }

        .logo-img {
            height: 40px;
            transition: all 0.4s ease;
            filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
        }

        .nav-logo:hover .logo-img {
            transform: scale(1.1) rotate(5deg);
        }

        /* --- Unique Navigation Links --- */
        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 600;
            margin: 0 1rem;
            position: relative;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            padding: 0.5rem 0;
            z-index: 1;
        }
        
        .navbar.scrolled .nav-link {
            color: var(--white) !important;
        }

        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: var(--gradient-1);
            transition: transform 0.4s ease;
            transform-origin: left;
            transform: scaleX(0);
            z-index: -1;
        }

        .navbar-nav .nav-link:hover::before,
        .navbar-nav .nav-link.active::before {
            transform: scaleX(1);
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--white) !important;
            transform: translateY(-5px) rotate(-1deg);
        }

        /* --- Dropdown Menu --- */
        .dropdown-menu {
            border: none;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 0.5rem 0;
            margin-top: 0.8rem;
            animation: fadeIn 0.3s ease;
            border-left: 3px solid var(--primary-red);
        }

        .dropdown-item {
            padding: 0.7rem 1.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            color: var(--text-dark);
        }

        .dropdown-item::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 49, 49, 0.05);
            transition: transform 0.3s ease;
            transform-origin: right;
            transform: scaleX(0);
        }

        .dropdown-item:hover {
            color: var(--primary-red);
        }
        
        .dropdown-item:hover::before {
            transform: scaleX(1);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- Unique Call-to-Action Buttons --- */
        .cta-container {
            position: relative;
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .cta-btn {
            position: relative;
            overflow: hidden;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.7rem;
            display: inline-block;
            transition: all 0.4s ease;
            padding: 0.8rem 2rem;
            border-radius: 30px;
        }

        .cta-btn.primary {
            background: var(--primary-red);
            color: var(--white);
            box-shadow: 0 5px 20px rgba(255, 49, 49, 0.2);
        }

        .cta-btn.secondary {
            background: var(--primary-dark);
            color: var(--white);
            box-shadow: 0 5px 20px rgba(29, 53, 87, 0.2);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        
        .navbar.scrolled .cta-btn.primary {
            background: var(--white);
            color: var(--primary-red);
        }
        
        .navbar.scrolled .cta-btn.secondary {
            background: var(--primary-red);
            color: var(--white);
        }


        /* --- Mobile Menu Button --- */
        .open-aside {
            background: var(--primary-red);
            border: none;
            border-radius: 8px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled .open-aside {
            background: var(--white);
            color: var(--primary-red);
        }

        .open-aside:hover {
            transform: rotate(90deg);
            box-shadow: 0 5px 15px rgba(255, 49, 49, 0.3);
        }

        /* --- Mobile Sidebar --- */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background: var(--primary-dark);
            z-index: 1050;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
            transition: right 0.4s ease;
            padding: 2rem;
            display: flex;
            flex-direction: column;
        }

        .mobile-sidebar.active {
            right: 0;
        }

        .close-sidebar {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--white);
            transition: all 0.3s ease;
        }
        
        .close-sidebar:hover {
            color: var(--primary-red);
            transform: rotate(90deg);
        }

        .mobile-sidebar .nav-link {
            color: var(--white) !important;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .mobile-sidebar .nav-link:hover,
        .mobile-sidebar .nav-link.active {
            color: var(--primary-red) !important;
            padding-left: 10px;
            border-bottom-color: var(--primary-red);
        }
        
        .mobile-sidebar .cta-btn {
            background: var(--primary-red);
            color: var(--white);
            margin: 0.5rem 0;
        }

        /* Overlay for mobile menu */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1040;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Floating notification */
        .notification {
            position: fixed;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-2);
            color: var(--white);
            padding: 12px 25px;
            border-radius: 30px;
            box-shadow: 0 5px 20px rgba(29, 53, 87, 0.3);
            z-index: 1100;
            transition: top 0.5s ease;
        }

        .notification.show {
            top: 100px;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .navbar-nav {
                display: none !important;
            }
            .cta-container {
                display: none !important;
            }
            .navbar-collapse {
                display: none !important;
            }
            .open-aside {
                display: flex !important;
            }
        }
        
     

        /* Enhanced Header Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            padding: 1rem 0;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(230, 57, 70, 0.1);
            box-shadow: var(--shadow);
        }

        .navbar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
           
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .navbar.scrolled::before {
            opacity: 1;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 10px 40px rgba(230, 57, 70, 0.15);
            transform: translateY(0);
        }

        .nav-logo {
            position: relative;
            overflow: hidden;
        }

        .nav-logo .logo-text {
            background: var(--gradient-1);
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            color: var(--white);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .nav-logo .logo-text::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
           
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .nav-logo:hover .logo-text::before {
            animation: shine 0.8s ease-in-out;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
        }

        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 600;
            margin: 0 1.2rem;
            position: relative;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -8px;
            left: 50%;
            
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(230, 57, 70, 0.1);
            border-radius: 50%;
            transition: all 0.4s ease;
            transform: translate(-50%, -50%);
            z-index: -1;
        }

        .navbar-nav .nav-link:hover::before,
        .navbar-nav .nav-link.active::before {
            width: 80%;
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
            height: 100%;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-red) !important;
            transform: translateY(-2px);
        }

        /* Enhanced Search & Button */
        .search-icon {
            position: relative;
            margin-right: 1.5rem;
        }

        .search-icon input {
            background: rgba(230, 57, 70, 0.05);
            border: 2px solid rgba(230, 57, 70, 0.2);
            border-radius: 30px;
            color: var(--text-dark);
            padding: 0.7rem 1.2rem 0.7rem 3rem;
            transition: all 0.4s ease;
            width: 200px;
        }

        .search-icon input:focus {
            outline: none;
            box-shadow: 0 0 30px rgba(230, 57, 70, 0.2);
            background: rgba(230, 57, 70, 0.1);
            border-color: var(--primary-red);
            transform: scale(1.05);
        }

        .search-icon i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-red);
            font-size: 1rem;
        }

        .header-btn a {
            background: var(--gradient-1);
            color: var(--white);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
        }

        .header-btn a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .header-btn a:hover::before {
            left: 100%;
        }

        .header-btn a:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 35px rgba(230, 57, 70, 0.3);
        }

        /* HERO SLIDER STYLES */
       


 /* about changes ==========================================*/
  

.about-journey {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    position: relative;
    overflow: hidden;
    
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}



.journey-text h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.2;
}

.journey-text h2 span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.journey-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    padding-left: 25px;
    border-left: 4px solid var(--primary-red);
}

.journey-visual .main-image {
    width: 100%;
    height: 380px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.journey-visual .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.journey-visual .main-image:hover img {
    transform: scale(1.05);
}

/* floating shapes */
.bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
   
}
.bg-element-1 {
    width: 260px;
    height: 260px;
    top: -130px;
    left: -130px;
}
.bg-element-2 {
    width: 180px;
    height: 180px;
    bottom: -90px;
    right: -90px;
}

/* Responsive */
@media (max-width: 992px) {
    .journey-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .journey-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-journey {
        padding: 50px 0;
    }
    .journey-text h2 {
        font-size: 1.7rem;
    }
}


 /* Unique class names to prevent conflicts */
        .pw-best-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            position: relative;
            overflow: hidden;
        }

        .pw-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
            z-index: 2;
        }

        .pw-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .pw-text-content {
            position: relative;
        }

        .pw-section-badge {
            display: inline-block;
            
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .pw-heading {
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--text-dark);
            line-height: 1.2;
        }

        .pw-heading span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pw-description {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .pw-features-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .pw-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            animation: pw-featureSlideIn 0.6s ease-out forwards;
            opacity: 0;
            transform: translateX(-20px);
        }

        .pw-feature-item:nth-child(1) {
            animation-delay: 0.2s;
        }

        .pw-feature-item:nth-child(2) {
            animation-delay: 0.4s;
        }

        .pw-feature-item:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes pw-featureSlideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .pw-feature-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .pw-feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .pw-feature-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .pw-feature-content p {
            color: var(--text-light);
        }

        .pw-visual-content {
            position: relative;
        }

        .pw-main-visual {
            width: 100%;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
            position: relative;
        }

        .pw-main-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .pw-main-visual:hover img {
            transform: scale(1.05);
        }

        .pw-floating-card {
            position: absolute;
            background: var(--white);
            padding: 20px;
            border-radius: 15px;
            box-shadow: var(--shadow-hover);
            display: flex;
            align-items: center;
            gap: 15px;
            animation: pw-float 6s ease-in-out infinite;
            z-index: 3;
        }

        .pw-floating-card:nth-child(2) {
            top: -30px;
            right: -30px;
            animation-delay: 0s;
            width: 220px;
        }

        .pw-floating-card:nth-child(3) {
            bottom: 40px;
            left: -30px;
            animation-delay: 2s;
            width: 240px;
        }

        .pw-floating-card:nth-child(4) {
            bottom: -20px;
            right: 80px;
            animation-delay: 4s;
            width: 200px;
        }

        @keyframes pw-float {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
            }
            50% { 
                transform: translateY(-20px) rotate(5deg); 
            }
        }

        .pw-card-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .pw-card-content h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: var(--text-dark);
        }

        .pw-card-content p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Background Elements */
        .pw-bg-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
           
        }

        .pw-bg-element-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
        }

        .pw-bg-element-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
        }

        /* Stats section */
        .pw-stats-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 80px;
            padding-top: 60px;
            border-top: 1px solid var(--light-gray);
        }

        .pw-stat-item {
            text-align: center;
            padding: 30px;
            background: var(--white);
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            animation: pw-statFadeIn 1s ease-out forwards;
            opacity: 0;
        }

        .pw-stat-item:nth-child(1) {
            animation-delay: 0.3s;
        }

        .pw-stat-item:nth-child(2) {
            animation-delay: 0.6s;
        }

        .pw-stat-item:nth-child(3) {
            animation-delay: 0.9s;
        }

        @keyframes pw-statFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pw-stat-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .pw-stat-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--white);
            font-size: 1.8rem;
        }

        .pw-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .pw-stat-label {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .pw-content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .pw-heading {
                font-size: 2.2rem;
            }
            
            .pw-stats-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .pw-floating-card {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .pw-best-section {
                padding: 60px 0;
            }
            
            .pw-heading {
                font-size: 1.8rem;
            }
            
            .pw-description {
                font-size: 1rem;
            }
        }



/* ===== UNIQUE partner section css NAMESPACE ===== */
/* Section */
.upc-section {
  padding: 40px;
}

.upc-header {
  display: flex;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}


.upc-carousel {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
}

.upc-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
 
  scroll-behavior: smooth;
}

.upc-item {
  flex: 0 0 auto;
  width: calc(100% / 5);
  text-align: center;
  padding: 10px 10px;
  box-sizing: border-box;
 
  opacity: 1;
  border-right: 1px solid #bcbcbc;   /* 🔹 vertical line */
}

.upc-item:last-child {
  border-right: none;             /* no line after last */
}

.upc-item:hover {
  transform: scale(1.05);

}
.upc-item img {
  max-width: 100%;
  height: auto;
  max-height: 100px;
  display: inline-block;
  opacity: 1;
}

.upc-item:hover {
  transform: scale(1.05);
 
}

.upc-nav {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
  
  top: 25px;
  right: 20px;
}
.upc-nav button {
  background: transparent;
  border: 2px solid #ccc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5em;
  color: #333;
  margin-left: 10px;
  transition: background-color 0.3s, border-color 0.3s;
  outline: none;
}
.upc-nav button:hover {
  background-color: #eee;
  border-color: #aaa;
}
.upc-nav button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* Responsive tweaks */
@media (max-width: 1300px) { .upc-item { width: calc(100% / 5); } }
@media (max-width: 992px)  { .upc-item { width: calc(100% / 4); } }
@media (max-width: 768px)  { 
  .upc-item { width: calc(100% / 3); }
  .upc-header { font-size: 1.5em; }
  .upc-nav { top: 10px; right: 10px; }
  
  
  
  
      .download-images img {
      width: 100px;
      border-radius: 25px;
      animation: floatTilt 5s ease-in-out infinite;
    }

}
@media (max-width: 576px)  {
  .upc-item { width: calc(100% / 2); }
  .upc-carousel { padding: 10px; }
}

/* 
testimonial-card section =====================================*/

  .testimonial-section {
      padding: 80px 20px;
      background: var(--white);
      position: relative;
      overflow: hidden;
    }

    .testimonial-section .container {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .testimonial-content h2 {
      font-size: 3rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 20px;
    }

    .testimonial-content h2 .highlight {
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .testimonial-content p {
      font-size: 1rem;
      color: var(--text-light);
      margin-bottom: 40px;
    }

    .read-more-btn {
      display: inline-flex;
      align-items: center;
      padding: 14px 28px;
     background: var(--gradient-1);
      color: #ffffff;
      border: 2px solid var(--light-gray);
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.4s ease;
    }

    .read-more-btn:hover {
     
      color: var(--white);
      border-color: var(--primary-red);
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
    }

    .testimonial-card {
      background: var(--white);
      border-radius: 20px;
      padding: 32px;
      box-shadow: var(--shadow);
      border: 1px solid var(--light-gray);
      transition: all 0.4s ease;
      min-height: 300px;
    }

    .testimonial-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }

    /* ⭐ Font Awesome Stars */
    .stars {
      display: flex;
      gap: 6px;
      margin-bottom: 16px;
    }
    .stars i {
      font-size: 18px; /* ✅ smaller */
      color: #FFD700;
      transition: transform 0.3s ease, color 0.3s ease;
    }
    .stars i.empty {
      color: #dcdcdc;
    }
    .stars i:hover {
      transform: scale(1.2);
      color: #ffcc00;
    }

    .testimonial-text {
      font-size: 1rem;
      color: var(--text-dark);
      line-height: 1.6;
      margin-bottom: 24px;
      font-style: italic;
      position: relative;
    }
    .testimonial-text::before {
      content: '"';
      font-size: 3rem;
      color: var(--primary-red);
      position: absolute;
      top: -18px; left: -10px;
      opacity: 0.3;
    }

    .client-info {
      display: flex; align-items: center; gap: 14px;
    }
    .client-avatar {
      width: 55px; height: 55px;
      border-radius: 50%;
      overflow: hidden;
    }
    .client-avatar img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .client-details h4 {
      font-size: 1.2rem;
      color: var(--primary-red);
      font-weight: 600;
    }
    .client-details p {
      font-size: 0.9rem;
      color: var(--text-light);
    }

    .testimonial-indicators {
      display: flex;
      gap: 8px;
      margin-top: 16px;
      justify-content: center;
    }
    .indicator {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--light-gray);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .indicator.active {
      background: var(--primary-red);
      transform: scale(1.2);
    }

    .fade-in { animation: fadeIn 0.6s ease-in-out; }
    .fade-out { animation: fadeOut 0.3s ease-in-out; }
    @keyframes fadeIn { from {opacity:0; transform:translateY(15px);} to {opacity:1; transform:translateY(0);} }
    @keyframes fadeOut { from {opacity:1;} to {opacity:0;} }

    @media (max-width: 768px) {
      .container { grid-template-columns: 1fr; gap: 40px; }
      .testimonial-content { text-align: center; }
      .testimonial-content h2 { font-size: 2.4rem; }
      .testimonial-card { padding: 28px; }
       .testimonial-section .container {
      max-width: 1300px;
      margin: 0 auto;
      
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
      display: flex;
        flex-direction: column;
    
    }
    }

    @media (max-width: 480px) {
      .testimonial-content h2 { font-size: 2rem; }
      .testimonial-card { padding: 22px; }
    }


    /* download section */

    .download-section {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 80px 10%;
      background: var(--white);
      overflow: hidden;
    }

    /* Decorative gradient circle */
    /* .download-section::before {
      content: "";
      position: absolute;
      right: -200px;
      bottom: -150px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      
      filter: blur(180px);
      opacity: 0.3;
      z-index: 0;
    } */

    .download-text {
      max-width: 500px;
      position: relative;
      z-index: 2;
    }

    .download-text h2 {
      font-size: 2.8rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 20px;
      color: var(--text-dark);
    }

    .download-text h2 span {
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .download-text p {
      color: var(--gray);
      margin-bottom: 30px;
      font-size: 1rem;
      line-height: 1.6;
    }

    .store-buttons {
      display: flex;
      gap: 20px;
    }

    .store-buttons img {
      height: 60px;
      cursor: pointer;
      transition: transform 0.3s;
      border-radius: 10px;
    }

    .store-buttons img:hover {
      transform: translateY(-5px) scale(1.05);
    }

    /* Phone mockups */
    .download-images {
      position: relative;
      display: flex;
    gap: -20px;
      z-index: 2;
    }

    .download-images img {
      width: 400px;
      border-radius: 25px;
      animation: floatTilt 5s ease-in-out infinite;
    }

    .download-images img:nth-child(2) {
      animation-delay: 2.5s;
    }

    /* Floating + tilt effect */
    @keyframes floatTilt {
      0%   { transform: translateY(0) rotate(0deg); }
      25%  { transform: translateY(-15px) rotate(-2deg); }
      50%  { transform: translateY(0) rotate(0deg); }
      75%  { transform: translateY(-10px) rotate(2deg); }
      100% { transform: translateY(0) rotate(0deg); }
    }

    /* Responsive */
    @media (max-width: 992px) {
      .download-section {
        flex-direction: column;
        text-align: center;
      }

      .download-images {
        margin-top: 40px;
        justify-content: center;
      }
    }


    /* footer css */


        footer {
            background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
            padding: 70px 5% 30px;
            color: var(--white);
            width: 100%;
            border-top: 2px solid var(--primary-red);
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 49, 49, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 60px;
            margin-bottom: 50px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 2;
        }

        /* Logo Section */
        .footer-logo {
            animation: fadeInUp 0.8s ease-out;
        }
        
        .footer-logo img {
            height: 75px;
            margin-bottom: 25px;
            /* Removed filter to show original colored logo */
            transition: transform 0.3s ease;
        }
        
        .footer-logo:hover img {
            transform: scale(1.05);
        }
        
        .footer-logo p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin-bottom: 30px;
            font-weight: 300;
        }

        /* Social Media */
        .footer-social {
            display: flex;
            gap: 18px;
        }
        
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--white);
            text-decoration: none;
            transition: all 0.4s ease;
            font-size: 18px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .footer-social a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            transition: left 0.4s ease;
        }
        
        .footer-social a:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(255, 49, 49, 0.3);
        }
        
        .footer-social a:hover::before {
            left: 0;
        }
        
        .footer-social a:hover {
            color: var(--white);
        }

        /* All Link Sections */
        .footer-links,
        .footer-services {
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        .footer-links h3,
        .footer-services h3 {
            margin-bottom: 25px;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--white);
            position: relative;
            padding-bottom: 12px;
            letter-spacing: 0.5px;
        }
        
        .footer-links h3::after,
        .footer-services h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-1);
            border-radius: 2px;
            transition: width 0.4s ease;
        }
        
        .footer-links:hover h3::after,
        .footer-services:hover h3::after {
            width: 80px;
        }
        
        .footer-links ul,
        .footer-services ul {
            list-style: none;
        }
        
        .footer-links ul li,
        .footer-services ul li {
            margin-bottom: 14px;
            transition: transform 0.3s ease;
        }
        
        .footer-links ul li:hover,
        .footer-services ul li:hover {
            transform: translateX(8px);
        }
        
        .footer-links ul li a,
        .footer-services ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            position: relative;
            padding: 4px 0;
        }
        
        .footer-links ul li a::after,
        .footer-services ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
            border-radius: 1px;
        }
        
        .footer-links ul li a:hover,
        .footer-services ul li a:hover {
            color: var(--white);
        }
        
        .footer-links ul li a:hover::after,
        .footer-services ul li a:hover::after {
            width: 100%;
        }

        /* Contact Section */
        .footer-contact {
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }
        
        .footer-contact h3 {
            margin-bottom: 25px;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--white);
            position: relative;
            padding-bottom: 12px;
            letter-spacing: 0.5px;
        }
        
        .footer-contact h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-1);
            border-radius: 2px;
            transition: width 0.4s ease;
        }
        
        .footer-contact:hover h3::after {
            width: 70px;
        }
        
        .footer-contact .item {
            display: flex;
            align-items: center;
           
            gap: 15px;
            padding: 12px;
            border-radius: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .footer-contact .item:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(5px);
        }
        
        .footer-contact .icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--white);
            flex-shrink: 0;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-contact .item:hover .icon {
            background: var(--gradient-1);
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(255, 49, 49, 0.2);
        }
        
        .footer-contact .info strong {
            display: block;
            color: var(--white);
            margin-bottom: 4px;
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        .footer-contact .info p {
            margin: 0;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Bottom Section */
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--primary-red);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .footer-container {
                grid-template-columns: 1fr 1fr 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            footer {
                padding: 40px 5% 20px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 35px;
                text-align: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-bottom-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-social {
                justify-content: center;
            }
            
            .footer-bottom-links {
                gap: 20px;
            }
        }
   
    

    /* why choose us */

    /* Unique class names to prevent conflicts */
        .pcs-choose-section {
            
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            position: relative;
            overflow: hidden;
        }

        .pcs-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
            z-index: 2;
        }

        .pcs-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .pcs-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-dark);
            line-height: 1.2;
        }

        .pcs-title span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pcs-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .pcs-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 80px;
        }

        .pcs-feature-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: pcs-cardFloat 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .pcs-feature-card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .pcs-feature-card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .pcs-feature-card:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes pcs-cardFloat {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pcs-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .pcs-feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
           
        }

        .pcs-feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--white);
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .pcs-feature-card:hover .pcs-feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .pcs-feature-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .pcs-feature-desc {
            color: var(--text-light);
            margin-bottom: 25px;
        }

        .pcs-feature-list {
            text-align: left;
            margin-bottom: 30px;
        }

        .pcs-feature-list li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .pcs-feature-list li i {
            color: var(--primary-red);
            margin-right: 10px;
            font-size: 1rem;
        }

        .pcs-signup-btn {
            background: var(--gradient-1);
            color: var(--white);
            padding: 14px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .pcs-signup-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .pcs-signup-btn:hover:before {
            left: 100%;
        }

        .pcs-signup-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
        }

        /* Benefits section */
        .pcs-benefits-section {
            background: var(--white);
            border-radius: 20px;
            padding: 60px;
            box-shadow: var(--shadow);
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
        }

        .pcs-benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .pcs-benefits-content h3 {
            font-size: 2.3rem;
            margin-bottom: 25px;
            color: var(--text-dark);
            font-weight: 700;
        }

        .pcs-benefits-content p {
            color: var(--text-light);
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .pcs-benefits-list {
            margin-bottom: 35px;
        }

        .pcs-benefits-list li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: var(--text-dark);
            font-weight: 500;
        }

        .pcs-benefits-list li i {
            color: var(--primary-red);
            margin-right: 15px;
            font-size: 1.2rem;
            width: 25px;
        }

        .pcs-benefits-image {
            position: relative;
        }

        .pcs-benefits-img {
            width: 100%;
            border-radius: 15px;
            box-shadow: var(--shadow-hover);
            transition: all 0.5s ease;
        }

        .pcs-benefits-image:hover .pcs-benefits-img {
            transform: scale(1.03);
        }

        .pcs-floating-element {
            position: absolute;
            width: 70px;
            height: 70px;
           
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            box-shadow: var(--shadow-hover);
            animation: pcs-float 6s ease-in-out infinite;
            z-index: 3;
        }

        .pcs-floating-element:nth-child(2) {
            top: -20px;
            right: -20px;
            animation-delay: 0s;
        }

        .pcs-floating-element:nth-child(3) {
            bottom: 30px;
            left: -20px;
            animation-delay: 2s;
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }

        @keyframes pcs-float {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
            }
            50% { 
                transform: translateY(-15px) rotate(5deg); 
            }
        }

        /* Background Elements */
        .pcs-bg-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
           
        }

        .pcs-bg-element-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
        }

        .pcs-bg-element-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .pcs-features-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .pcs-benefits-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .pcs-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .pcs-choose-section {
                padding: 60px 0;
            }
            
            .pcs-title {
                font-size: 1.8rem;
            }
            
            .pcs-benefits-section {
                padding: 40px 30px;
            }
            
            .pcs-floating-element {
                display: none;
            }
        }


         /* Reset for our specific components only =======================================================*/

         :root {
            --primary-red: #ff3131;
            --primary-dark: #1d3557;
            --black: #000000;
            --white: #ffffff;
            --light-bg: #fafbfc;
            --gray: #495057;
            --light-gray: #e9ecef;
            --text-dark: #212529;
            --text-light: #6c757d;
            --accent-blue: #457b9d;
            --success-green: #28a745;
            --gradient-primary: linear-gradient(135deg, #ff3131 0%, #ff4757 100%);
            --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
            --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
            --border-radius: 20px;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

            .pd-blog-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .pd-blog-container {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--light-bg);
            line-height: 1.7;
            color: var(--text-dark);
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 20px;
            position: relative;
        }

        /* Decorative Background Elements */
        .pd-blog-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, rgba(255, 49, 49, 0.03) 0%, rgba(29, 53, 87, 0.03) 100%);
            border-radius: 0 0 50% 50%;
            z-index: 0;
        }

        /* Header Section */
        .pd-section-title-wrapper {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 1;
        }

        .pd-top-sub-title-wrap {
            margin-bottom: 24px;
            animation: pd-fadeInUp 1.2s ease-out;
        }

        .pd-top-sub-title {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--primary-red);
            text-transform: uppercase;
            position: relative;
            padding: 12px 28px;
            background: linear-gradient(135deg, rgba(255, 49, 49, 0.1) 0%, rgba(255, 49, 49, 0.05) 100%);
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 49, 49, 0.1);
        }

        .pd-top-sub-title::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--primary-red);
            border-radius: 50%;
        }

        .pd-top-sub-title::after {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--primary-red);
            border-radius: 50%;
        }

        .pd-main-title {
            font-size: 48px;
            font-weight: 700;
            color:black;
            margin: 0;
            line-height: 1.1;
            position: relative;
            display: inline-block;
            padding-bottom: 30px;
            animation: pd-fadeInUp 1.2s ease-out 0.2s both;
            background:linear-gradient(135deg, #000000 0%, #4f5051 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pd-main-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
            animation: pd-expandWidth 2s ease-out 1s both;
        }

        .pd-header-description {
            font-size: 20px;
            color: var(--text-light);
            max-width: 720px;
            margin: 24px auto 0;
            line-height: 1.7;
            font-weight: 400;
            animation: pd-fadeInUp 1.2s ease-out 0.4s both;
        }

        /* Blog Grid Layout */
        .pd-blog-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .pd-main-post-section {
            animation: pd-slideInRight 1.5s ease-out 0.6s both;
        }

        .pd-side-posts-section {
            display: flex;
            flex-direction: column;
            gap: 35px;
            animation: pd-slideInLeft 1.5s ease-out 0.4s both;
        }

        /* Enhanced Post Card Styles */
        .pd-post-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .pd-post-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
            opacity: 0;
            transition: var(--transition);
            z-index: 1;
            pointer-events: none;
        }

        .pd-post-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-strong);
            border-color: rgba(255, 49, 49, 0.1);
        }

        .pd-post-card:hover::before {
            opacity: 1;
        }

        .pd-article-inner {
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 2;
        }

        /* Main Post Enhanced */
        .pd-main-post-section .pd-post-card {
            height: 580px;
            background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
        }

        .pd-main-post-section .pd-post-thumb-wrap {
            height: 320px;
            overflow: hidden;
            position: relative;
        }

        .pd-main-post-section .pd-post-thumb-wrap::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
            z-index: 2;
        }

        .pd-main-post-section .pd-post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
            filter: brightness(1.05) contrast(1.1);
        }

        .pd-main-post-section .pd-post-card:hover .pd-post-thumb img {
            transform: scale(1.05);
        }

        .pd-main-post-section .pd-entry-content {
            padding: 35px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: var(--white);
            position: relative;
        }

        .pd-main-post-section .pd-entry-title a {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-dark);
            text-decoration: none;
            line-height: 1.2;
            display: block;
            transition: var(--transition);
            margin-bottom: 18px;
            position: relative;
        }

        .pd-main-post-section .pd-entry-title a:hover {
            color: var(--primary-red);
        }

        /* Side Posts Enhanced */
        .pd-side-posts-section .pd-post-card {
            height: 272px;
            background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
        }

        .pd-side-posts-section .pd-post-card:nth-child(1) {
            animation-delay: 0.6s;
        }

        .pd-side-posts-section .pd-post-card:nth-child(2) {
            animation-delay: 0.8s;
        }

        .pd-side-posts-section .pd-article-inner {
            flex-direction: row;
            height: 100%;
        }

        .pd-side-posts-section .pd-post-thumb-wrap {
            width: 42%;
            overflow: hidden;
            flex-shrink: 0;
            position: relative;
        }

        .pd-side-posts-section .pd-post-thumb {
            width: 100%;
            height: 100%;
        }

        .pd-side-posts-section .pd-post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
            filter: brightness(1.05) contrast(1.1);
        }

        .pd-side-posts-section .pd-post-card:hover .pd-post-thumb img {
            transform: scale(1.08);
        }

        .pd-side-posts-section .pd-entry-content {
            width: 58%;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: var(--white);
        }

        .pd-side-posts-section .pd-entry-title a {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-dark);
            text-decoration: none;
            line-height: 1.3;
            margin-bottom: 15px;
            display: block;
            transition: var(--transition);
        }

        .pd-side-posts-section .pd-entry-title a:hover {
            color: var(--primary-red);
        }

        .pd-entry-text p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.6;
            margin: 12px 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-weight: 400;
        }

        /* Enhanced Button Styles */
        .pd-action-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient-primary);
            color: var(--white);
            padding: 14px 24px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            border-radius: 50px;
            margin-top: 20px;
            align-self: flex-start;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(255, 49, 49, 0.3);
        }

        .pd-action-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .pd-action-btn:hover::before {
            left: 100%;
        }

        .pd-action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 49, 49, 0.4);
            gap: 15px;
        }

        .pd-action-btn i {
            font-size: 13px;
            transition: transform 0.4s ease;
        }

        .pd-action-btn:hover i {
            transform: translateX(5px);
        }

        /* Enhanced Category Badge */
        .pd-category-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--white);
            color: var(--primary-red);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            z-index: 3;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 49, 49, 0.1);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Enhanced Animations */
        @keyframes pd-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pd-slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pd-slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pd-expandWidth {
            from {
                width: 0;
            }
            to {
                width: 100px;
            }
        }

        /* Auto-lining for text */
        .pd-auto-line {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .pd-title-auto-line {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Reading Time Badge */
        .pd-read-time {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.7);
            color: var(--white);
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 600;
            z-index: 3;
            backdrop-filter: blur(10px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .pd-blog-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .pd-main-title {
                font-size: 42px;
            }

            .pd-blog-container {
                padding: 80px 20px;
            }
        }

        @media (max-width: 768px) {
            .pd-blog-container {
                padding: 60px 15px;
            }

            .pd-blog-container::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: -50%;
                    width: 100%;
                    height: 300px;
                    background: linear-gradient(135deg, rgba(255, 49, 49, 0.03) 0%, rgba(29, 53, 87, 0.03) 100%);
                    border-radius: 0 0 50% 50%;
                    z-index: 0;
                }

            .pd-main-title {
                font-size: 36px;
            }

            .pd-top-sub-title {
                font-size: 11px;
                letter-spacing: 1px;
                padding: 10px 20px;
            }

            .pd-header-description {
                font-size: 18px;
            }

            .pd-main-post-section .pd-post-card {
                height: auto;
            }

            .pd-main-post-section .pd-post-thumb-wrap {
                height: 250px;
            }

            .pd-main-post-section .pd-entry-content {
                padding: 30px 25px;
            }

            .pd-side-posts-section .pd-post-card {
                height: auto;
            }

            .pd-side-posts-section .pd-article-inner {
                flex-direction: column;
                height: auto;
            }

            .pd-side-posts-section .pd-post-thumb-wrap,
            .pd-side-posts-section .pd-entry-content {
                width: 100%;
            }

            .pd-side-posts-section .pd-post-thumb-wrap {
                height: 200px;
            }

            .pd-side-posts-section .pd-entry-content {
                padding: 25px;
            }

            .pd-blog-grid {
                gap: 10px;
            }
        }

        /* Fix for images */
        .pd-post-image {
            opacity: 1 !important;
            display: block !important;
            width: 100% !important;
            height: 140% !important;
        }

        /* Hover effects for better interaction */
        .pd-post-card:hover .pd-category-badge {
            background: var(--primary-red);
            color: var(--white);
            transform: scale(1.05);
        }

        .pd-post-card:hover .pd-read-time {
            background: var(--primary-red);
            transform: scale(1.05);
        }
 



        /* why choose our services new */


        .section {
      padding: 80px 10%;
      text-align: center;
      position: relative;
      background: var(--white);
    }

    .fw-floating-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .fw-floating-element {
      position: absolute;
      opacity: 0.03;
      animation: fw-float-element 20s infinite ease-in-out;
    }

    .fw-element-1 {
      width: 300px;
      height: 300px;
     
      top: 10%;
      left: 5%;
      border-radius: 42% 58% 70% 30% / 30% 43% 57% 70%;
      animation-delay: 0s;
    }

    .fw-element-2 {
      width: 200px;
      height: 200px;
      background: var(--black);
      top: 60%;
      right: 10%;
      border-radius: 63% 37% 42% 58% / 51% 30% 70% 49%;
      animation-delay: -7s;
    }

    .fw-element-3 {
      width: 150px;
      height: 150px;
    
      bottom: 10%;
      left: 15%;
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      animation-delay: -14s;
    }

    @keyframes fw-float-element {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      33% {
        transform: translateY(-30px) rotate(12deg);
      }
      66% {
        transform: translateY(20px) rotate(-8deg);
      }
    }

    .fw-section-heading {
      position: relative;
      z-index: 2;
    }

    .fw-section-heading h5 {
      color: var(--primary-red);
      font-size: 14px;
      text-transform: uppercase;
      margin-bottom: 10px;
      letter-spacing: 2px;
      position: relative;
      display: inline-block;
      font-weight: 600;
    }

    .fw-section-heading h5::after {
      content: '';
      position: absolute;
      height: 2px;
      width: 40px;
      background: var(--primary-red);
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%);
    }

    .fw-section-heading h2 {
      font-size: 36px;
      margin-bottom: 15px;
      font-weight: 700;
      color: var(--black);
      opacity: 0;
      transform: translateY(20px);
      animation: fw-fade-in-up 1s forwards 0.5s;
    }

    .fw-section-heading p {
      max-width: 700px;
      margin: 0 auto 50px auto;
      font-size: 1rem;
      color: var(--text-light);
      line-height: 1.6;
      opacity: 0;
      transform: translateY(20px);
      animation: fw-fade-in-up 1s forwards 0.8s;
    }

    .fw-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      position: relative;
      z-index: 2;
    }

    .fw-card {
      background: var(--white);
      border-radius: 16px;
      padding: 30px 25px;
      box-shadow: var(--shadow);
      transition: all 0.4s ease;
      cursor: pointer;
      text-align: left;
      position: relative;
      overflow: hidden;
      border-left: 4px solid transparent;
    }

    .fw-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0;
     
      opacity: 0.05;
      transition: height 0.4s ease;
      z-index: 0;
    }

    .fw-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
      border-left: 4px solid var(--primary-red);
    }

    .fw-card:hover::before {
      height: 100%;
    }

    .fw-card-content {
      position: relative;
      z-index: 1;
    }

    .fw-card-icon {
      font-size: 42px;
      margin-bottom: 20px;
      display: inline-block;
      transition: all 0.4s ease;
      position: relative;
      color: var(--primary-red);
    }

    .fw-card:hover .fw-card-icon {
      transform: rotate(15deg) scale(1.2);
      animation: fw-icon-pulse 1.5s infinite;
    }

    @keyframes fw-icon-pulse {
      0% {
        filter: drop-shadow(0 0 5px rgba(255, 49, 49, 0.5));
      }
      50% {
        filter: drop-shadow(0 0 15px rgba(255, 49, 49, 0.8));
      }
      100% {
        filter: drop-shadow(0 0 5px rgba(255, 49, 49, 0.5));
      }
    }

    .fw-card h3 {
      font-size: 20px;
      margin-bottom: 15px;
      font-weight: 600;
      color: var(--black);
      transition: color 0.3s ease;
    }

    .fw-card:hover h3 {
      color: var(--primary-red);
    }

    .fw-card p {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--text-light);
      margin-bottom: 0;
    }

    .fw-card-cta {
      display: inline-block;
      margin-top: 15px;
      font-size: 14px;
      font-weight: 500;
      color: var(--primary-red);
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .fw-card:hover .fw-card-cta {
      opacity: 1;
      transform: translateX(0);
    }

    @keyframes fw-fade-in-up {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Particle animation */
    .fw-particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .fw-particle {
      position: absolute;
      background: var(--primary-red);
      border-radius: 50%;
      opacity: 0.2;
      animation: fw-particle-float 20s infinite linear;
    }

    @keyframes fw-particle-float {
      0% {
        transform: translateY(0) translateX(0) rotate(0deg);
      }
      100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
      }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .section {
        padding: 60px 5%;
      }
      
      .fw-section-heading h2 {
        font-size: 28px;
      }
      
      .fw-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    /* Custom decorative elements */
    .fw-corner-decoration {
      position: absolute;
      width: 120px;
      height: 120px;
      z-index: 1;
    }
    
    .fw-corner-top-left {
      top: 0;
      left: 0;
      border-top: 3px solid var(--primary-red);
      border-left: 3px solid var(--primary-red);
      border-top-left-radius: 15px;
      opacity: 0.2;
    }
    
    .fw-corner-bottom-right {
      bottom: 0;
      right: 0;
      border-bottom: 3px solid var(--primary-red);
      border-right: 3px solid var(--primary-red);
      border-bottom-right-radius: 15px;
      opacity: 0.2;
    }

    /* Staggered animation for cards */
    .fw-card {
      opacity: 0;
      transform: translateY(20px);
      animation: fw-fade-in-up 0.8s forwards;
    }



    /* why choose us software  tabs css */

     :root {
      --sw-primary-red: #ff3131;
      --sw-primary-dark: #000000;
      --sw-accent-yellow: #fca311;
      --sw-accent-blue: #118ab2;
      --sw-black: #000000;
      --sw-white: #ffffff;
      --sw-light-bg: #f1faee;
      --sw-gray: #495057;
      --sw-light-gray: #e9ecef;
      --sw-text-dark: #212529;
      --sw-text-light: #6c757d;
      --sw-gradient-1: linear-gradient(135deg, #ff3131 0%, #ff3131 100%);
      --sw-gradient-2: linear-gradient(135deg, #ff3131 0%, #ff3131 50%, #ff3131 100%);
      --sw-gradient-blue: linear-gradient(135deg, #118ab2 0%, #073b4c 100%);
      --sw-gradient-yellow: linear-gradient(135deg, #fca311 0%, #fb8500 100%);
      --sw-gradient-purple: linear-gradient(135deg, #7209b7 0%, #560bad 100%);
      --sw-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      --sw-shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.12);
    }

     .sw-section {
      text-align: center;
      padding: 80px 20px;
      max-width: 1300px;
      margin: 0 auto;
    }

    .sw-heading {
      font-size: 2.3rem;
      margin-bottom: 50px;
      color: var(--sw-primary-dark);
      position: relative;
      display: inline-block;
      font-weight: 700;
    }

    .sw-heading:after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--sw-gradient-1);
      border-radius: 2px;
    }

    .sw-tabs-container {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .sw-tab-button {
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      background: var(--sw-white);
      color: var(--sw-text-light);
      box-shadow: var(--sw-shadow);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .sw-tab-button:hover {
      transform: translateY(-3px);
      box-shadow: var(--sw-shadow-hover);
      color: var(--sw-primary-dark);
    }

    .sw-tab-button.sw-active {
      background: var(--sw-gradient-1);
      color: var(--sw-white);
    }

    .sw-content-container {
      max-width: 1300px;
      margin: auto;
      background: var(--sw-white);
      border-radius: 20px;
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      box-shadow: var(--sw-shadow);
      transition: all 0.3s ease;
    }

    .sw-content-container:hover {
      box-shadow: var(--sw-shadow-hover);
    }

    .sw-text-content {
      flex: 1;
      text-align: left;
    }

    .sw-text-content h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: var(--sw-primary-dark);
    }

    .sw-text-content p {
      margin-bottom: 20px;
      color: var(--sw-text-light);
      font-size: 1.1rem;
    }

    .sw-feature-list {
      list-style: none;
      padding: 0;
      margin-bottom: 25px;
    }

    .sw-feature-list li {
      padding: 8px 0;
      display: flex;
      align-items: center;
      font-weight: 500;
    }

    .sw-feature-list li::before {
      content: "✓";
      color: var(--sw-white);
      background: var(--sw-primary-red);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      margin-right: 10px;
      font-size: 12px;
    }

    .sw-primary-button {
      background: var(--sw-gradient-1);
      color: white;
      padding: 12px 30px;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      font-weight: 600;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
    }

    .sw-primary-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
    }

    .sw-image-container {
      flex: 1;
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--sw-shadow);
      transition: all 0.3s ease;
    }

    .sw-image-container:hover {
      transform: translateY(-5px);
      box-shadow: var(--sw-shadow-hover);
    }

    .sw-tab-image {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }

    .sw-image-container:hover .sw-tab-image {
      transform: scale(1.05);
    }

    .sw-stat-badge {
      position: absolute;
      background: var(--sw-gradient-yellow);
      color: var(--sw-black);
      padding: 8px 15px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.9rem;
      box-shadow: var(--sw-shadow);
      z-index: 10;
    }

    /* Animation for tab switching */
    .sw-fade-in {
      animation: swFadeIn 0.5s ease-in-out;
    }

    @keyframes swFadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive design */
    @media (max-width: 900px) {
      .sw-content-container {
        flex-direction: column;
        text-align: center;
      }
      
      .sw-text-content {
        text-align: center;
      }
      
      .sw-feature-list li {
        justify-content: center;
      }
      
      .sw-heading {
        font-size: 2rem;
      }
    }