:root {
            --primary-color: #FF6550;
            --secondary-color: #2C3E50;
            --accent-color: #3498db;
            --light-bg: #f9f9ff;
            --dark-bg: #1a1a2e;
            --text-color: #333;
            --light-text: #777;
        }
        
        /* Base Styles */
       
        
        /* Hero Banner */
        .attendance-hero-banner {
            position: relative;
            padding: 120px 0;
            background: linear-gradient(135deg, #f9f9ff 0%, #e6f0ff 100%);
            overflow: hidden;
        }
        
        .hero-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        
        .circle-animation {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            border: 1px solid rgba(255, 101, 80, 0.1);
            top: -300px;
            right: -300px;
            animation: rotate 25s linear infinite;
        }
        
        .pulse-animation {
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255, 101, 80, 0.05);
            border-radius: 50%;
            bottom: -200px;
            left: -200px;
            animation: pulse 8s ease-in-out infinite;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .breadcrumb-animated {
            animation: fadeInDown 0.8s ease-out;
        }
        
        .hero-title {
            font-size: 42px;
            font-weight: 700;
            margin: 20px 0;
            color: var(--secondary-color);
        }
        
        .hero-text {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--light-text);
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
        }
        
        .btn {
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }
        
        .primary-btn {
            background: var(--primary-color);
            color: white;
            border: 2px solid var(--primary-color);
        }
        
        .primary-btn:hover {
            background: transparent;
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .secondary-btn {
            background: transparent;
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
        }
        
        .secondary-btn:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        .hero-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform-style: preserve-3d;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .hero-image-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary-color);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            animation: pulse 2s infinite;
        }
        
        /* Solutions Section */
        .attendance-solutions {
            background: white;
        }
        
        .section-header {
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-subtitle {
            display: inline-block;
            color: var(--primary-color);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        
        .section-divider {
            position: relative;
            display: inline-block;
        }
        
        .divider-circle {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: var(--primary-color);
            border-radius: 50%;
            position: relative;
        }
        
        .divider-circle:before,
        .divider-circle:after {
            content: '';
            position: absolute;
            top: 50%;
            width: 50px;
            height: 1px;
            background: var(--primary-color);
        }
        
        .divider-circle:before {
            right: 15px;
        }
        
        .divider-circle:after {
            left: 15px;
        }
        
        .solution-card {
            position: relative;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .solution-img-container {
            position: relative;
            overflow: hidden;
            height: 250px;
        }
        
        .solution-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .solution-card:hover .solution-img {
            transform: scale(1.05);
        }
        
        .solution-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .solution-card:hover .solution-overlay {
            opacity: 1;
        }
        
        .solution-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            transform: translateY(-20px);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .solution-card:hover .solution-badge {
            transform: translateY(0);
            opacity: 1;
        }
        
        .solution-content {
            padding: 25px;
        }
        
        .solution-content h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .solution-content p {
            color: var(--light-text);
            margin-bottom: 15px;
            font-size: 15px;
            line-height: 1.6;
        }
        
        .solution-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .solution-features li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .solution-features i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 14px;
        }
        
        /* Benefits Section */
        .attendance-benefits {
            background: var(--light-bg);
        }
        
        .benefits-content {
            padding-right: 30px;
        }
        
        .benefits-list {
            margin-top: 30px;
        }
        
        .benefit-item {
            display: flex;
            margin-bottom: 25px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
        }
        
        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 101, 80, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .benefit-icon i {
            color: var(--primary-color);
            font-size: 20px;
        }
        
        .benefit-text h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--secondary-color);
        }
        
        .benefit-text p {
            color: var(--light-text);
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }
        
        .benefits-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .benefits-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .image-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: var(--primary-color);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
        }
        
        /* CTA Section */
        .attendance-cta {
            position: relative;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-bg) 100%);
            color: white;
            overflow: hidden;
        }
        
        .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('img/bg/cta-bg.png') no-repeat center;
            background-size: cover;
            opacity: 0.1;
        }
        
        .cta-content h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ff6550;
        }
        
        .cta-content p {
            font-size: 18px;
            opacity: 0.9;
        }
        
        .cta-btn {
            background: var(--primary-color);
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }
        
        .cta-btn:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Integration Section */
        .integration-section {
            background: white;
        }
        
        .feature-card {
            text-align: center;
            padding: 40px 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 101, 80, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {

            background: var(--primary-color);
        }
        
        .feature-icon i {
            color: var(--primary-color);
            font-size: 30px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon i {
            color: white;
        }
        
        .feature-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .feature-card p {
            color: var(--light-text);
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
        }
        
        /* Animations */
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.8; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 1199px) {
            .hero-title {
                font-size: 36px;
            }
            
            .section-title {
                font-size: 32px;
            }
        }
        
        @media (max-width: 991px) {
            .hero-title {
                font-size: 32px;
            }
            
            .hero-image {
                margin-top: 50px;
            }
            
            .benefits-content {
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .section-title {
                font-size: 28px;
            }
        }
        
        @media (max-width: 767px) {
            .hero-title {
                font-size: 28px;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .section-title {
                font-size: 26px;
            }
            
            .cta-content h2 {
                font-size: 26px;
            }
            .cta-bg::before {
    background: #444;

  }
        }
        
        

        
        @media (max-width: 575px) {
            .hero-title {
                font-size: 24px;
            }
            
            .section-title {
                font-size: 22px;
            }
            
            .solution-content {
                padding: 20px;
            }
        }