        /* Existing styles */
        .mockup-content img {
            width: 100%;
            height: auto;
            box-shadow: 1px 5px 7px 3px #f9eded;
        }

        .modal-header {
            border: none;
        }

        .modal-dialog {
            max-width: 790px;
        }

        .modal-content,
        .modal-popup-box .modal-content {
            background: none;
            border-radius: 0;
            border: none;
            outline: none;
        }
        
        .header-close{
            justify-content: flex-end !important;
        }

        .btn-close-popup {
            color: #ffffff;
            background-color: #D93C2A !important;
            opacity: 1;
            height: 34px;
            width: 35px;
            padding: 5px;
            border-radius: 50%;
            font-size: 16px;
            background: none;
            border: none;
            float: right;
        }

        .popup-box iframe {
            width: 100%;
            height: 450px;
        }

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

        body {
            font-family: 'DM Sans', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #fff;
        }

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

        /* Header */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #D93C2A;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #D93C2A;
        }

        .cta-button {
            background: #D93C2A;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-button a{color: #ffffff;}

        .cta-button:hover {
            background: #b82419;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 120px 0 80px;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
            line-height: 1.2;
            font-family: "DM Sans", sans-serif;
        }

        .hero-text .highlight {
            color: #D93C2A;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: #433c3c;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            align-items: center;
            margin-bottom: 2rem;
        }

        .cta-primary {
            background: #D93C2A;
            color: white;
            padding: 18px 36px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-primary:hover {
            background: #b82419;
            transform: translateY(-2px);
        }

        .cta-secondary {
            background: transparent;
            color: #D93C2A;
            padding: 16px 32px;
            border: 2px solid #D93C2A;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-secondary:hover {
            background: #D93C2A;
            color: white;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 2rem;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #D93C2A;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
        }

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

        .dashboard-mockup {
            width: 100%;
            max-width: 500px;
            height: 400px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            border: 1px solid #e0e0e0;
            position: relative;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {

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

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

        .mockup-header {
            background: #D93C2A;
            color: white;
            padding: 20px;
            text-align: center;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .mockup-content {
            padding: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #D93C2A;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .contact-details h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 2px;
        }

        .contact-details p {
            font-size: 0.9rem;
            color: #666;
        }

        .contact-status {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .status-active {
            background: #d4edda;
            color: #155724;
        }

        .status-pending {
            background: #fff3cd;
            color: #856404;
        }

        /* Manage Contacts Section */
        .manage-contacts {
            padding: 100px 0;
            background: rgb(247 175 175 / 12%);
            position: relative;
        }

        .manage-contacts::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, #D93C2A, transparent);
        }

        .manage-contacts-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .manage-contacts-text h2,
        .why-special-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-family: "DM Sans", sans-serif;
        }

        .manage-contacts-text .highlight,
        .why-special-section .highlight {
            color: #D93C2A;
        }

        .manage-contacts-text p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .manage-contacts-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .feature-highlight {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex: 1 1 calc(50% - 1rem);
        }

        .feature-highlight-extra {

            width: 200px;
            margin: auto;
            height: 50px;
            padding: 18px;
            background: linear-gradient(135deg, #f3e5e3 0%, #fbf5f5 100%);
            border-radius: 10px;
            border: 2px solid #c02a1d;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c42c1e;
            font-size: 17px;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(217, 60, 42, 0.3);
        }

        .feature-highlight-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #D93C2A 0%, #b82419 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(217, 60, 42, 0.3);
        }

        .feature-highlight-text {
            font-size: 1rem;
            font-weight: 600;
            color: #333;
        }

        .demo-button {
            background: #D93C2A;
            color: white;
            padding: 14px 28px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: "DM Sans", sans-serif;
        }

        .demo-button:hover {
            background: #b82419;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(217, 60, 42, 0.4);
        }

        .manage-contacts-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: floatBox 4s ease-in-out infinite;
        }

        @keyframes floatBox {

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

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

        .contact-management-mockup {
            width: 100%;
            max-width: 500px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            border: 1px solid #e0e0e0;
            position: relative;
        }

        .manage-contacts-img {
            width: 100%;
            height: auto;
            object-fit: cover;
            min-height: 500px;
        }

        .video-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: #D93C2A;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 6px 15px rgba(217, 60, 42, 0.4);
            animation: dropPlay 2s ease-in-out infinite;
        }

        @keyframes dropPlay {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }

            50% {
                transform: translate(-50%, -40%) scale(1.1);
                opacity: 0.9;
            }

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

        .video-play-button:hover {
            background: #b82419;
            transform: translate(-50%, -50%) scale(1.1);
        }

        /* Features Section */
        .features {
            padding: 50px 0;
            background: #f8f9fa;
        }

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

        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-bottom: 40px;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            border: 1px solid #f0f0f0;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #D93C2A 0%, #b82419 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 2rem;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Benefits Section */
        .benefits {
            padding: 100px 0;
            background: #ffffff;
            position: relative;
        }

        .benefits::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, #D93C2A, transparent);
        }

        .benefits-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin: 0 auto;
        }

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

        .benefits-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .benefits-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            background: #f9fafb;
            border-radius: 10px;
            padding: 10px 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 4px solid #D93C2A;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideIn 0.5s ease forwards;
        }

        .benefit-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .benefit-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .benefit-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .benefit-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .benefit-item:nth-child(5) {
            animation-delay: 0.5s;
        }

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

        .benefit-item:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, #ffffff 0%, #f9f1ef 100%);
        }

        .benefit-icon {
            width: 48px;
            height: 48px;
            background: #D93C2A;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }

        .benefit-content h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #222;
            margin-bottom: 0.5rem;
        }

        .benefit-content p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.5;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-text h1 {
                margin-top: 3rem;
            }

            .hero-cta {
                flex-direction: row;
                align-items: center;
            }

            .cta-primary {
                padding: 10px 17px;
            }

            .cta-secondary {
                padding: 8px 26px;
            }

            .section-header {
                margin-bottom: 1rem;
            }

            .hero-content {
                gap: 2rem;
            }

            .hero-stats {
                justify-content: center;
            }

            .nav-links {
                display: none;
            }

            .manage-contacts-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .manage-contacts-text {
                text-align: center;
            }

            .manage-contacts-text h2 {
                font-size: 2rem;
            }

            .manage-contacts-features {
                flex-direction: column;
                gap: 1rem;
            }

            .feature-highlight {
                flex: 1 1 100%;
            }

            .benefit-item {
                flex-direction: column;
                align-items: flex-start;
                padding: 1.2rem;
            }

            .benefit-icon {
                margin-bottom: 1rem;
                margin-right: 0;
            }
        }

        /* Features Section */

        .features-list {
            list-style: none;
            margin: 2rem 0;
            text-align: left;
        }

        .features-list li {
            padding: 0.8rem 0;
            color: #666;
            position: relative;
            padding-left: 2rem;
        }

        .features-list li::before {
            content: "✓";
            color: #D93C2A;
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: #fffbfb;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid #f0f0f0;
        }

        .faq-question {
            padding: 2rem;
            background: #f8f9fa;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #333;
            font-size: 18px;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #e9ecef;
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: #D93C2A;
            font-weight: bold;
            transition: transform 0.3s;
        }

        .faq-answer {
            padding: 2rem;
            color: #666;
            line-height: 1.8;
            display: none;
        }

        .faq-answer.active {
            display: block;
        }

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

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus {
            outline: none;
            border-color: #D93C2A;
        }

        .benefits {
            padding: 50px 0;
            background: #ffffff;
            position: relative;
        }

        .benefits::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, #D93C2A, transparent);
        }

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

        .benefits-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .benefits-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .benefits-item {
            display: flex;
            align-items: center;
            background: #f9fafb;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 4px solid #D93C2A;
            opacity: 0;
            transform: translateX(100px);
            animation: slideInRight 0.5s ease forwards;
        }

        .benefits-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .benefits-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .benefits-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .benefits-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .benefits-item:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, #ffffff 0%, #f9f1ef 100%);
        }

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

        .benefits-icon {
            width: 48px;
            height: 48px;
            background: #D93C2A;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }

        .benefits-content h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #222;
            margin-bottom: 0.5rem;
        }

        .benefits-content p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.5;
        }
        
        /*Testimonial section*/
        .testimonials-section {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
        }

        /*.section-header {*/
        /*    text-align: center;*/
        /*    padding: 60px 20px 40px;*/
        /*    background: linear-gradient(135deg, #000 0%, #333 100%);*/
        /*    color: white;*/
        /*}*/

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            opacity: 0.8;
            font-weight: 300;
        }

        .slider-container {
            position: relative;
            padding: 60px 0;
            overflow: hidden;
        }

        .testimonials-wrapper {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            width: 300%;
        }

        .testimonial-slide {
            width: 33.333%;
            padding: 0 40px;
            display: flex;
            gap: 40px;
            flex-shrink: 0;
        }

        .testimonial-card {
            flex: 1;
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #f0f0f0;
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .client-logo {
            width: 320px;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
        }
        .client-logo img{ width: 100%;}
        .quote-icon {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 3rem;
            color: #D93C2A;
            opacity: 0.15;
        }

        .testimonial-content {
            margin-bottom: 30px;
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: #333;
            font-style: italic;
            text-align:left;
        }

        .person-info {
            border-top: 2px solid #f5f5f5;
            padding-top: 20px;
        }

        .person-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: #000;
            margin-bottom: 5px;
            text-align:left;
        }

        .person-designation {
            font-size: 0.95rem;
            color: #ba1e0c;
            font-weight: 500;
            text-align:left;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
            padding: 0 40px;
        }

        .control-btn {
            width: 50px;
            height: 50px;
            border: none;
            border-radius: 50%;
            background: #000;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .control-btn:hover {
            background: #D93C2A;
            transform: scale(1.1);
        }

        .control-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: scale(1);
        }

        .dots-indicator {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
            padding-bottom: 40px;
        }

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

        .dot.active {
            background: #D93C2A;
            transform: scale(1.2);
        }

        /* Responsive Design for Why Choose Us */
        @media (max-width: 768px) {
            .benefits-item {
                flex-direction: column;
                align-items: flex-start;
                padding: 1.2rem;
            }

            .benefits-icon {
                margin-bottom: 1rem;
                margin-right: 0;
            }
        }




        @media (max-width: 1100px) {
            .card {
                min-width: 180px;
                max-width: 220px;
                height: 300px;
            }
        }

        @media (max-width: 900px) {
            .slick-slide {
                min-width: 50vw !important;
            }

            .card {
                min-width: 160px;
                max-width: 200px;
                height: 260px;
            }
        }

        @media (max-width: 600px) {
            .slick-slide {
                min-width: 90vw !important;
            }

            .card {
                min-width: 140px;
                max-width: 180px;
                height: 220px;
            }
        }

        /* Responsive container for mobile */
        @media (max-width: 600px) {

            .container,
            .container-fluid {
                padding-left: 8px !important;
                padding-right: 8px !important;
            }

            .section-header h2,
            .benefits-header h2 {
                font-size: 1.6rem;
            }

            .section-header p,
            .benefits-header p {
                font-size: 1rem;
            }

            .hero {
                padding: 90px 0 40px;
                min-height: unset;
            }

            .dashboard-mockup,
            .contact-management-mockup {
                max-width: 100%;
                height: auto;
            }

            .manage-contacts-img {
                min-height: 220px;
            }

            .benefits-container {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }

            .benefits-image {
                margin-bottom: 1.5rem;
                text-align: center;
            }

            .benefits-image img {
                max-width: 90vw;
                height: auto;
            }

            .features-grid {
                gap: 1.2rem;
            }

            .feature-card {
                padding: 1.2rem;
            }

            .faq-question,
            .faq-answer {
                padding: 1rem;
            }
        }

        /* Hamburger menu styles */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            width: 32px;
            height: 32px;
            justify-content: center;
            align-items: center;
            z-index: 2001;
        }

        .hamburger span {
            height: 4px;
            width: 28px;
            background: #D93C2A;
            margin: 3px 0;
            border-radius: 2px;
            transition: 0.3s;
        }

        @media (max-width: 768px) {
            
            /*Testimonial*/
            
            .testimonial-text {
                font-size: 1rem;
            }
            .testimonial-slide {
                flex-direction: column;
                padding: 0 20px;
            }

            .testimonial-card {
                padding: 30px;
            }

            .section-title {
                font-size: 2rem;
            }

            .slider-controls {
                padding: 0 20px;
            }
            
            nav {
                flex-wrap: wrap;
            }

            .hamburger {
                display: flex;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                right: 20px;
                background: #fff;
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
                border-radius: 8px;
                width: 180px;
                z-index: 2000;
                gap: 0;
            }

            .nav-links.show {
                display: flex;
            }

            .nav-links li {
                border-bottom: 1px solid #eee;
                padding: 12px 0;
                text-align: right;
                margin: 0 18px;
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .cta-button {
                padding: 10px 16px;
                font-size: 1rem;
            }
        }

        /* Accordion styles */
        .custom-accordion .accordion-item {
            /* Remove border, add shadow and border-radius */
            border: none;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            margin-bottom: 18px;
            overflow: hidden;
        }

        .custom-accordion .accordion-title {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 18px 16px;
            cursor: pointer;
            background: #fff;
            color: #D93C2A;
            transition: background 0.2s, color 0.2s;
            border-radius: 12px 12px 0 0;
            box-shadow: none;
            border: none;
        }

        .custom-accordion .accordion-title:hover {
            background: #f8f9fa;
        }

        .custom-accordion .accordion-content {
            padding: 16px;
            background: #fff;
            color: #333;
            display: none;
            border-radius: 0 0 12px 12px;
            border: none;
            box-shadow: none;
        }

        .custom-accordion .accordion-item.active .accordion-title {
            background: #f8f9fa;
            color: #D93C2A;
        }

        .custom-accordion .accordion-item.active .accordion-content {
            display: block;
        }

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

            .image-accordion-section .col-md-6 {
                width: 100%;
                max-width: 100%;
            }

            .image-accordion-section img {
                max-width: 90vw;
            }
        }
        .cta-primary:hover{
            text-decoration:none;
            color: #FFF;
        }
        
        .CB_home_sctn8{ background-color: #e0edef;}
        
        /*Additional sections*/
        .additional-section-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .text-content {
            z-index: 2;
        }

        .additional-section-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -2px;
            line-height: 1.1;
            text-align:left;
        }

        .additional-section-subtitle {
            font-size: 1.2rem;
            margin-bottom: 32px;
            opacity: 0.9;
            line-height: 1.5;
            text-align:left;
        }

        .additional-features-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .additional-features-list li {
            padding: 12px 0;
            position: relative;
            padding-left: 32px;
            font-size: 1.1rem;
            line-height: 1.6;
            text-align:left;
        }

        .additional-features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 36px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .cta-button::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .cta-button:hover::after {
            transform: translateX(4px);
        }

        .vector-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .vector-svg {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
        }

        /* Pricing Section */
        .pricing-section {
            background: linear-gradient(135deg, #D93C2A 0%, #ff6b54 100%);
            color: white;
            padding: 50px;
        }

        .pricing-section .additional-features-list li::before {
            color: rgba(255, 255, 255, 0.9);
        }

        .pricing-section .cta-button {
            background: white;
            color: #D93C2A;
        }
        
        .pricing-section .cta-button a{color: #D93C2A;}

        .pricing-section .cta-button:hover {
            background: #f8f8f8;
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
        }

        /* Enquiry Section */
        .enquiry-section {
            background: linear-gradient(135deg, #000 0%, #333 100%);
            color: white;
            padding: 50px;
        }

        .enquiry-section .additional-features-list li::before {
            color: #D93C2A;
        }

        .enquiry-section .cta-button {
            background: #D93C2A;
            color: white;
        }

        .enquiry-section .cta-button:hover {
            background: #ff6b54;
            box-shadow: 0 15px 35px rgba(217, 60, 42, 0.4);
        }

        /* Case Studies Section */
        .case-studies-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            color: #000;
            padding: 50px;
        }

        .case-studies-section .additional-features-list li::before {
            color: #D93C2A;
        }

        .case-studies-section .cta-button {
            background: linear-gradient(135deg, #D93C2A, #ff6b54);
            color: white;
        }

        .case-studies-section .cta-button:hover {
            box-shadow: 0 15px 35px rgba(217, 60, 42, 0.3);
        }

        /* Background decorations */
        /*.section::before {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    top: 0;*/
        /*    left: 0;*/
        /*    right: 0;*/
        /*    bottom: 0;*/
        /*    opacity: 0.05;*/
        /*    background-size: 50px 50px;*/
        /*    background-image: radial-gradient(circle, currentColor 1px, transparent 1px);*/
        /*}*/

        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            display: block;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 968px) {
            .additional-section-content {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }

            .additional-additional-section-title {
                font-size: 2.5rem;
            }

            .container {
                padding: 0 20px;
            }

            .stats-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .additional-section-title {
                font-size: 2rem;
            }
            .additional-features-list li{
                font-size: 1rem;
            }

            .additional-section-subtitle {
                font-size: 1.1rem;
            }

            .section {
                padding: 60px 0;
            }
            .client-logo {
                width: 230px;
            }
        }

        /* Animation on scroll */
        .additional-section-content {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Accordion styles */
            .custom-accordion .accordion-item {
                /* Remove border, add shadow and border-radius */
                border: none;
                background: #fff;
                border-radius: 12px;
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
                margin-bottom: 18px;
                overflow: hidden;
            }

            .custom-accordion .accordion-title {
                font-weight: 600;
                font-size: 1.1rem;
                padding: 18px 16px;
                cursor: pointer;
                background: #fff;
                color: #000;
                transition: background 0.2s, color 0.2s;
                border-radius: 12px 12px 0 0;
                box-shadow: none;
                border: none;
            }

            .custom-accordion .accordion-title:hover {
                background: #f8f9fa;
            }

            .custom-accordion .accordion-content {
                padding: 16px;
                background: #fff;
                color: #333;
                display: none;
                border-radius: 0 0 12px 12px;
                border: none;
                box-shadow: none;
            }

            .custom-accordion .accordion-item.active .accordion-title {
                background: #f8f9fa;
                color: #000;
            }

            .custom-accordion .accordion-item.active .accordion-content {
                display: block;
            }

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

                .image-accordion-section .col-md-6 {
                    width: 100%;
                    max-width: 100%;
                }

                .image-accordion-section img {
                    max-width: 90vw;
                }
            }