/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding-top: 80px; /* Account for sticky header */
        }

        .header {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .navbar-brand img {
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
        }

        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .navbar-toggler:hover {
            border-color: rgba(255,255,255,0.6);
            background: rgba(255,255,255,0.1);
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Mobile menu positioning - right side */
        @media (max-width: 991px) {
            .navbar-collapse {
                position: absolute;
                top: 100%;
                right: 0;
                background: #3173ba;
                border-radius: 0 0 15px 15px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.2);
                min-width: 280px;
                z-index: 1000;
                margin-top: 10px;
            }

            .navbar-nav {
                padding: 20px 0;
            }

            .navbar-nav .nav-item {
                opacity: 0;
                transform: translateX(20px);
                animation: slideInRight 0.3s ease forwards;
            }

            .navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
            .navbar-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
            .navbar-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }
            .navbar-nav .nav-item:nth-child(4) { animation-delay: 0.4s; }
            .navbar-nav .nav-item:nth-child(5) { animation-delay: 0.5s; }
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .nav-link {
            font-weight: 500;
            padding: 12px 25px !important;
            margin: 5px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            background: rgba(255,255,255,0.1) !important;
            transform: translateY(-2px);
        }

        .nav-link.active {
            background: rgba(255,255,255,0.2) !important;
            font-weight: 600;
        }

        /* Mobile nav-link styles */
        @media (max-width: 991px) {
            .nav-link:hover {
                transform: translateX(-5px) !important;
            }
            
        }

        .navbar-enquiry {
            background: #fff;
            color: #3173ba;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 5px 15px;
        }

        .navbar-enquiry:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Desktop styles */
        @media (min-width: 992px) {
            .navbar-collapse {
                position: static !important;
                background: none !important;
                border-radius: 0 !important;
                box-shadow: none !important;
                min-width: auto !important;
                margin-top: 0 !important;
            }

            .navbar-nav {
                padding: 0 !important;
            }

            .nav-link {
                margin: 0 10px !important;
                padding: 8px 15px !important;
            }

            .navbar-enquiry {
                margin: 0 0 0 15px !important;
            }
        }

 /* Carousel Styles */
        .carousel-image-container {
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8f9fa;
        }
        
        .carousel-placeholder {
            max-width: 100%;
            height: auto;
        }
        
        .carousel-caption {
            background: rgba(0, 0, 0, 0.7);
            border-radius: 10px;
            padding: 20px;
        }
        
        .carousel-caption h5 {
            color: white;
            margin-bottom: 10px;
        }
        
        .carousel-caption p {
            font-size: 1.2rem;
            color: #f8f9fa;
        }
        
        /* Responsive carousel */
        @media (max-width: 768px) {
            .carousel-image-container {
                height: 250px;
            }
            
            .carousel-placeholder text {
                font-size: 18px;
            }
        }
        
        @media (max-width: 576px) {
            .carousel-image-container {
                height: 200px;
            }
            
            .carousel-placeholder text {
                font-size: 14px;
            }
        }

 /* Carousel Styles */
 /* Carousel Styles */
        .carousel-image-container {
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8f9fa;
        }
        
        .carousel-placeholder {
            max-width: 100%;
            height: auto;
        }
        
        .carousel-caption {
            background: rgba(0, 0, 0, 0.7);
            border-radius: 10px;
            padding: 20px;
        }
        
        .carousel-caption h5 {
            color: white;
            margin-bottom: 10px;
        }
        
        .carousel-caption p {
            color: #f8f9fa;
        }
        
        /* Responsive carousel */
        @media (max-width: 768px) {
            .carousel-image-container {
                height: 250px;
            }
            
            .carousel-placeholder text {
                font-size: 18px;
            }
        }
        
        @media (max-width: 576px) {
            .carousel-image-container {
                height: 200px;
            }
            
            .carousel-placeholder text {
                font-size: 14px;
            }
        }
		
 /* end Carousel Styles 140698 */

 /* About us section   */
          .about-section {
            /* background: rgba(255, 255, 255, 0.95); */
            backdrop-filter: blur(10px);
            border-radius: 20px;
            /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
            padding-top: 100px;
            
            /* margin: 40px 0; */
        }
        
        .about-title {
            color: #38628e;
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .about-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #5e9bd9, #335b84);
            border-radius: 2px;
        }
        
        .about-text {
              color: #4c81b6;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2rem;
        }
        
        .about-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #667eea;
            display: block;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #7f8c8d;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .about-image {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
            transition: transform 0.3s ease;
        }
        
        .about-image:hover {
            transform: translateY(-5px);
        }
        
        .about-image img {
            width: 500px;
            height: 500px;
            display: block;
            border-radius: 15px;
        }
        
        .cta-button {
            background: linear-gradient(135deg, #5e9bd9 0%, #335b84 100%) !important;
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
            color: white;
        }
        
        @media (max-width: 768px) {
            .about-title {
                font-size: 2rem;
                text-align: center;
            }
            
            .about-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .about-stats {
                justify-content: center;
                flex-wrap: wrap;
                gap: 1.5rem;
            }
            
            .about-section {
                padding: 40px 0;
                margin: 20px 0;
            }
        }
/* End About us section   */

/* tabs section styles here  */
        .tab-btn {
            border: none;
            border-radius: 1rem;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin: 0.25rem;
        }
        
        .tab-btn:not(.active) {
            background: white;
            color: #6c757d;
        }
        
        .tab-btn:not(.active):hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        
        .tab-btn.active {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }
        
        .content-section {
            background: white;
            border-radius: 2rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            padding: 3rem;
            min-height: 500px;
        }
        
        .content-element {
            transition: opacity 0.3s ease;
        }
        
        .feature-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-top: 0.5rem;
            flex-shrink: 0;
        }
        
        .image-container {
            border-radius: 1.5rem;
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 300px;
            transition: all 0.5s ease;
            background: white;
        }
        
        .service-icon {
            width: 12rem;
            height: 12rem;
            color: white;
        }
        
        .btn-service {
            border-radius: 0.75rem;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
        }
        
        @media (max-width: 768px) {
            .content-section {
                padding: 2rem;
            }
            
            .tab-btn {
                padding: 0.5rem 1rem;
                font-size: 0.875rem;
                margin: 0.125rem;
            }
            
            .service-icon {
                width: 8rem;
                height: 8rem;
            }
            
            .image-container {
                padding: 2rem;
                min-height: 200px;
                margin-top: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .tab-btn {
                width: 100%;
                margin: 0.25rem 0;
            }
            
            .content-section {
                padding: 1.5rem;
            }
        }



/* Demo Section Styles */
        .demo-section {
            /* background: rgba(255, 255, 255, 0.98); */
            backdrop-filter: blur(15px);
            border-radius: 20px;
            /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); */
            padding-top: 40px;
            /* margin: 40px 0; */
            position: relative;
            overflow: hidden;
        }
        
        .demo-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #5e9bd9, #335b84);
        }
        
        .demo-title {
            color: #2c3e50;
            font-weight: 700;
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }
        
        .demo-subtitle {
            color: #5a6c7d;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .demo-benefits {
            text-align: left;
            padding: 2rem;
        }
        
        .benefits-title {
            color: #2c3e50;
            font-weight: 600;
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(102, 126, 234, 0.05);
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        
        .benefit-item:hover {
            transform: translateX(5px);
        }
        
        .benefit-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .benefit-text strong {
            color: #2c3e50;
            font-size: 1.1rem;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .benefit-text p {
            color: #5a6c7d;
            margin: 0;
            font-size: 0.95rem;
        }
        
        .demo-form-container {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(102, 126, 234, 0.1);
        }
        
        .demo-input {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 12px 16px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }
        
        .demo-input:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
            background: white;
        }
        
        .demo-submit-btn {
            background: linear-gradient(135deg, #5e9bd9 0%, #335b84 100%);
            border: none;
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .demo-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }
        
        .btn-arrow {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .demo-submit-btn:hover .btn-arrow {
            transform: translateX(5px);
        }
        
        .demo-note {
            text-align: center;
            margin-top: 1rem;
            color: #6c757d;
        }
        
        @media (max-width: 768px) {
            .about-title {
                font-size: 2rem;
                text-align: center;
            }
            
            .about-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .about-stats {
                justify-content: center;
                flex-wrap: wrap;
                gap: 1.5rem;
            }
            
            .about-section {
                padding: 40px 0;
                margin: 20px 0;
            }
            
            .demo-title {
                font-size: 2.2rem;
            }
            
            .demo-subtitle {
                font-size: 1.1rem;
            }
            
            .demo-section {
                padding: 60px 0;
                margin: 20px 0;
            }
            
            .demo-form-container {
                padding: 2rem;
            }
            
            .demo-benefits {
                padding: 1rem;
                margin-bottom: 2rem;
            }
        }
/* Counter Section Styles */

       
        .counter-item {
            background: white;
            border-radius: 12px;
            padding: 2.5rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        
        .counter-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.8;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 0;
            line-height: 1;
        }
        
        .counter-suffix {
            font-size: 2rem;
            font-weight: 600;
            color: #3498db;
            margin-left: 2px;
        }
        
        .counter-label {
            font-size: 1rem;
            font-weight: 500;
            color: white;
            margin-top: 0.75rem;
            line-height: 1.4;
            background: #4f84bb;
            padding: 10px;
            border-radius: 5px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .section-title {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 3rem;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .counter-number {
                font-size: 2rem;
            }
            .counter-suffix {
                font-size: 1.5rem;
            }
            .counter-icon {
                font-size: 2.5rem;
            }
            .counter-item {
                padding: 2rem 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .counter-number {
                font-size: 1.8rem;
            }
            .counter-suffix {
                font-size: 1.3rem;
            }
            .counter-icon {
                font-size: 2rem;
            }
            .counter-item {
                padding: 1.5rem 1rem;
            }
        }   

  /* LOGO SLIDER SECTION START HERE  */
    .logo-slider {
            overflow: hidden;
            background: white;
            /* padding: 3rem 0; */
            position: relative;
        }
        
        .logo-track {
            display: flex;
            animation: slide 11s linear infinite;
            gap: 1rem;
            justify-content: center;
        }
        
        .logo-item {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
            min-width: 200px;
            height: 100px;
        }
        
        .logo-item:hover {
            transform: translateY(-5px);
            /* box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-color: #dee2e6; */
        }
        
        .logo-item img {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }
        
        .logo-item img {
            filter: grayscale(0%);
        }
        
        .logo-text {
            font-size: 1.2rem;
            font-weight: 600;
            color: #495057;
            text-align: center;
        }
        
        .section-title {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        @keyframes slide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        .logo-slider::before,
        .logo-slider::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .logo-item {
                min-width: 150px;
                height: 80px;
                padding: 0.75rem 1.5rem;
            }
            
            .logo-item img {
                max-height: 45px;
            }
            
            .logo-text {
                font-size: 1rem;
            }
            
            .logo-track {
                gap: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .logo-item {
                min-width: 120px;
                height: 70px;
                padding: 0.5rem 1rem;
            }
            
            .logo-item img {
                max-height: 35px;
            }
            
            .logo-text {
                font-size: 0.9rem;
            }
            
            .logo-track {
                gap: 1.5rem;
            }
        }


/* // enquiry form */
         .popup-overlay {
            position: fixed;
            top: 30px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 0.5rem;
            overflow-y: auto;
        }

        .popup-overlay.show {
            display: flex;
        }

        .popup-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            width: 100%;
            max-width: 768px;
            max-height: 95vh;
            margin: auto;
        }

        @media (max-width: 768px) {
            .popup-overlay {
                padding: 0.25rem;
                align-items: flex-start;
                padding-top: 2rem;
            }
            
            .popup-container {
                max-height: calc(100vh - 4rem);
                border-radius: 8px;
            }
        }

        .popup-header {
            background: #1976d2;
            color: white;
            padding: 1.5rem;
            border-radius: 12px 12px 0 0;
            position: relative;
        }

        .popup-title {
            font-size: 1.25rem;
            font-weight: bold;
            margin: 0;
            padding-right: 2rem;
        }

        .close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            cursor: pointer;
            padding: 0.25rem;
            line-height: 1;
            min-width: 2rem;
            min-height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .popup-header {
                padding: 1rem;
                border-radius: 8px 8px 0 0;
            }
            
            .popup-title {
                font-size: 1.1rem;
                padding-right: 2.5rem;
            }
            
            .close-btn {
                top: 0.75rem;
                right: 0.75rem;
                font-size: 1.25rem;
            }
        }

        .close-btn:hover {
            color: #e0e0e0;
        }

        .form-container {
            padding: 1.5rem;
            overflow-y: auto;
            max-height: calc(95vh - 120px);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr 1fr;
            }
            .full-width {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .form-container {
                padding: 1rem;
                max-height: calc(100vh - 140px);
            }
            
            .form-grid {
                gap: 0.75rem;
                margin-bottom: 1rem;
            }
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-label {
            display: block;
            color: #424242;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .required {
            color: #f44336;
        }

        .name-row {
            display: flex;
            gap: 0.5rem;
        }

        .title-select {
            padding: 0.5rem 0.75rem;
            border: 1px solid #d0d0d0;
            border-radius: 8px;
            outline: none;
            background: white;
            width: 96px;
            font-size: 1rem;
            min-height: 44px;
        }

        .form-input, .form-select {
            width: 100%;
            padding: 0.5rem 1rem;
            border: 1px solid #d0d0d0;
            border-radius: 8px;
            outline: none;
            font-size: 1rem;
            transition: border-color 0.2s, box-shadow 0.2s;
            min-height: 44px;
        }

        @media (max-width: 768px) {
            .name-row {
                gap: 0.375rem;
            }
            
            .title-select {
                width: 80px;
                padding: 0.5rem 0.5rem;
                font-size: 0.9rem;
                min-height: 44px;
            }
            
            .form-input, .form-select {
                padding: 0.5rem 0.75rem;
                font-size: 1rem;
                min-height: 44px;
            }
        }

        .form-input:focus, .form-select:focus, .title-select:focus {
            border-color: #1976d2;
            box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
        }

        .name-input {
            flex: 1;
        }

        .submit-btn {
            width: 100%;
            background: #1976d2;
            color: white;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.2s;
            min-height: 48px;
        }

        .submit-btn:hover {
            background: #1565c0;
        }

        @media (max-width: 768px) {
            .submit-btn {
                padding: 0.875rem 1rem;
                font-size: 1rem;
                min-height: 48px;
                font-weight: 600;
            }
        }

        .success-message {
            padding: 2rem;
            text-align: center;
            display: none;
        }

        .success-icon {
            width: 64px;
            height: 64px;
            color: #4caf50;
            margin: 0 auto 1rem;
        }

        .success-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #4caf50;
            margin-bottom: 0.5rem;
        }

        .success-text {
            color: #666;
            margin-bottom: 1rem;
        }

        .success-note {
            font-size: 0.875rem;
            color: #999;
        }

        .hidden {
            display: none;
        }
/* pring pop-up  */

 .btn-demo {
            background: linear-gradient(135deg, #5e9bd9 0%, #335b84 100%);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .btn-demo:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
            color: white;
        }
        
     
        
        .pricing-modal .modal-content {
            border: none;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-header {
            background: linear-gradient(135deg, #5e9bd9 0%, #335b84 100%);
            color: white;
            border-radius: 20px 20px 0 0;
            padding: 2rem;
            text-align: center;
        }
        
        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin: 1rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list li i {
            color: #28a745;
            margin-right: 10px;
            width: 20px;
        }
        
        .btn-select-plan {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            border: none;
            border-radius: 25px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-select-plan:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
        }
        
        .minimum-purchase {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 10px;
            padding: 1rem;
            margin: 1rem 0;
        }
        
        .pay-as-use {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
            color: white;
            border-radius: 10px;
            padding: 1rem;
            text-align: center;
            font-weight: 600;
            margin-top: 1rem;
        }
        
        .hero-section {
            background: linear-gradient(135deg, #5e9bd9 0%, #335b84 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .pricing-card {
                margin: 0.5rem 0;
                padding: 1.5rem;
            }
            
            .hero-section {
                padding: 60px 0;
            }
        }

/* testimonials section start here  */
 .testimonials-section {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            padding: 60px 0;
            margin: 0 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px 25px;
            margin: 0 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .testimonial-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #555;
            font-style: italic;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(45deg, #5e9bd9, #335b84);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .author-info h5 {
            margin: 0;
            font-size: 1rem;
            font-weight: 600;
            color: #2c3e50;
        }

        .author-info p {
            margin: 0;
            font-size: 0.85rem;
            color: #7f8c8d;
        }

        .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background: rgba(102, 126, 234, 0.9);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
            transition: all 0.3s ease;
        }


        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
            background: rgba(102, 126, 234, 1);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 20px;
            height: 20px;
        }

        .carousel-indicators {
            bottom: -50px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #667eea;
            border: none;
            margin: 0 5px;
        }

        .carousel-indicators button.active {
            background-color: #764ba2;
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .testimonial-card {
                height: 300px;
            }
        }

        @media (max-width: 992px) {
            .testimonial-card {
                height: 320px;
                margin: 0 8px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .testimonial-card {
                height: auto;
                min-height: 280px;
                margin: 0 5px;
            }
            
            .testimonials-section {
                padding: 40px 0;
                margin: 0 10px;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .testimonial-card {
                padding: 25px 20px;
            }
        }

/* End Testimonials css here  */


  /* Footer Styles */
        .footer-section {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 60px 0 0;
            /* margin-top: 80px; */
        }

        .footer-widget {
            margin-bottom: 30px;
        }

        .footer-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 40px;
            height: 2px;
            background: linear-gradient(45deg, #5e9bd9, #335b84);
        }

        .footer-text {
            color: #bdc3c7;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 10px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: linear-gradient(45deg, #5e9bd9, #335b84);
            color: white;
            transform: translateY(-2px);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: #667eea;
        }

        .contact-info {
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: #bdc3c7;
        }

        .contact-item i {
            color: #667eea;
            margin-right: 12px;
            margin-top: 2px;
            width: 16px;
        }

        .newsletter-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .newsletter-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: white;
        }

        .newsletter-text {
            color: #bdc3c7;
            margin: 0;
        }

        .newsletter-form .form-control {
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 12px 15px;
            border-radius: 8px 0 0 8px;
        }

        .newsletter-form .form-control::placeholder {
            color: #bdc3c7;
        }

        .newsletter-form .form-control:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-form .btn-primary {
            background: linear-gradient(45deg, #5e9bd9, #335b84);
            border: none;
            padding: 12px 25px;
            border-radius: 0 8px 8px 0;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .newsletter-form .btn-primary:hover {
            background: linear-gradient(45deg, #5a6fd8, #6a4190);
            transform: translateY(-1px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
            /* margin-top: 40px; */
        }

        .copyright-text {
            color: #bdc3c7;
            margin: 0;
            font-size: 0.9rem;
        }

        .footer-bottom-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: flex-end;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #667eea;
        }

        /* Footer Responsive */
        @media (max-width: 768px) {
            .footer-section {
                padding: 40px 0 0;
                margin-top: 60px;
            }

            .newsletter-section {
                padding: 25px 20px;
                margin: 30px 0;
            }

            .newsletter-title {
                font-size: 1.1rem;
            }

            .footer-bottom-links {
                justify-content: center;
                margin-top: 15px;
                flex-wrap: wrap;
                gap: 15px;
            }

            .copyright-text {
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .newsletter-form .input-group {
                flex-direction: column;
            }

            .newsletter-form .form-control {
                border-radius: 8px;
                margin-bottom: 10px;
            }

            .newsletter-form .btn-primary {
                border-radius: 8px;
                width: 100%;
            }

            .footer-bottom-links {
                gap: 10px;
                font-size: 0.85rem;
            }
        }
