
        :root {
            --primary: #2563eb;
            --secondary: #0ea5e9;
            --accent: #10b981;
            --dark: #0f172a;
            --darker: #0a1428;
            --light: #f1f5f9;
            --gray: #64748b;
            --success: #22c55e;
            --warning: #f59e0b;
            --danger: #ef4444;
            --card-bg: rgba(30, 41, 59, 0.7);
            --card-border: rgba(255, 255, 255, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, var(--darker), var(--dark));
            color: var(--light);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background: rgba(10, 20, 40, 0.95);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(37, 99, 235, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-icon {
            background: var(--primary);
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
        }
        
        .logo h1 {
            font-size: 1.2rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Montserrat', sans-serif;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: baseline;
            flex-wrap: wrap;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 8px 0;
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        nav ul li a i {
            font-size: 1rem;
        }
        
        nav ul li a:hover {
            color: var(--secondary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: width 0.3s;
            border-radius: 10px;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .header-actions {
            display: flex;
            gap: 15px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
            background: #1d4ed8;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
        }
        
        .btn-accent {
            background: var(--accent);
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }
        
        .btn-accent:hover {
            background: #0da271;
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--light);
        }
        
        /* Hero Section */
        .hero {
            padding: 180px 0 100px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .hero-text {
            position: relative;
            z-index: 2;
        }
        
        .hero-text h2 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 800;
            background: linear-gradient(to right, #e0f2fe, #bae6fd, #7dd3fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Montserrat', sans-serif;
        }
        
        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            line-height: 1.8;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .dashboard-mockup {
            width: 100%;
            max-width: 600px;
            background: rgba(30, 41, 59, 0.7);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .dashboard-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .dashboard-title h3 {
            font-size: 1.4rem;
            font-weight: 600;
            line-height: 1.4;
            font-family: 'Montserrat', sans-serif;
        }
        
        .dashboard-title p {
            font-size: 1rem;
            opacity: 0.8;
        }
        
        .dashboard-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .stat-card {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            border: 1px solid var(--card-border);
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 120px;
            transition: transform 0.3s;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
        }
        
        .stat-card h4 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--accent);
            line-height: 1.2;
            font-family: 'Montserrat', sans-serif;
        }
        
        .stat-card p {
            font-size: 0.9rem;
            opacity: 0.8;
            line-height: 1.3;
        }
        
        .graph-container {
            height: 180px;
            background: rgba(15, 23, 42, 0.6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            border: 1px solid var(--card-border);
            padding: 15px;
            position: relative;
            overflow: hidden;
        }
        
        .graph-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        
        .analytics-chart {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: flex-end;
            gap: 8px;
            padding: 10px;
        }
        
        .bar {
            flex: 1;
            background: linear-gradient(to top, var(--primary), var(--secondary));
            border-radius: 4px 4px 0 0;
            position: relative;
            min-height: 20px;
            transition: height 1s ease;
        }
        
        .bar-label {
            position: absolute;
            bottom: -25px;
            left: 0;
            width: 100%;
            text-align: center;
            font-size: 0.7rem;
            opacity: 0.7;
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background: var(--darker);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-family: 'Montserrat', sans-serif;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 20px auto 0;
            font-size: 1.1rem;
            opacity: 0.8;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid var(--card-border);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: var(--accent);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            color: var(--accent);
        }
        
        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .service-card p {
            opacity: 0.8;
            margin-bottom: 25px;
            min-height: 80px;
            line-height: 1.7;
        }
        
        .price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            margin: 15px 0;
            font-family: 'Montserrat', sans-serif;
        }
        
        /* CRM Features */
        .crm-features {
            padding: 100px 0;
            background: var(--dark);
        }
        
        .features-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .features-content {
            padding-right: 30px;
        }
        
        .features-content h2 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            line-height: 1.2;
            font-family: 'Montserrat', sans-serif;
        }
        
        .features-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
            line-height: 1.8;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .feature-item {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            align-items: flex-start;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            flex-shrink: 0;
            margin-top: 5px;
        }
        
        .feature-text {
            flex: 1;
        }
        
        .feature-text h4 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            line-height: 1.3;
            font-family: 'Montserrat', sans-serif;
        }
        
        .feature-text p {
            font-size: 1rem;
            opacity: 0.8;
            margin-bottom: 0;
            line-height: 1.7;
        }
        
        .crm-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .crm-dashboard {
            width: 100%;
            max-width: 500px;
            background: rgba(30, 41, 59, 0.7);
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .dashboard-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        
        .dashboard-title h3 {
            font-size: 1.3rem;
            font-weight: 600;
            line-height: 1.4;
            font-family: 'Montserrat', sans-serif;
        }
        
        .dashboard-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .dashboard-graph {
            height: 200px;
            background: rgba(15, 23, 42, 0.6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--card-border);
            padding: 15px;
        }
        
        .chart-container {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .chart-line {
            stroke: var(--accent);
            stroke-width: 3;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        
        .chart-point {
            fill: var(--accent);
            stroke: var(--dark);
            stroke-width: 2;
        }
        
        .chart-grid {
            stroke: rgba(255, 255, 255, 0.1);
            stroke-width: 1;
        }
        
        .chart-label {
            fill: var(--light);
            font-size: 0.7rem;
            opacity: 0.7;
        }
        
        /* Stats Section */
        .stats {
            padding: 80px 0;
            background: var(--dark);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .stat-box {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            border: 1px solid var(--card-border);
            transition: all 0.3s;
        }
        
        .stat-box:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
        }
        
        .stat-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(to right, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Montserrat', sans-serif;
        }
        
        .stat-title {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: var(--darker);
            position: relative;
            overflow: hidden;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a1428, #0f172a);
            opacity: 0.9;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            position: relative;
            z-index: 2;
        }
        
        .contact-info {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--card-border);
            backdrop-filter: blur(10px);
        }
        
        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--accent);
            position: relative;
            padding-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .contact-info h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 15px;
            border-radius: 12px;
            transition: all 0.3s;
        }
        
        .contact-item:hover {
            background: rgba(15, 23, 42, 0.5);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--accent);
            flex-shrink: 0;
            margin-right: 20px;
        }
        
        .contact-details h4 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .contact-details p, .contact-details a {
            color: var(--light);
            text-decoration: none;
            opacity: 0.9;
            transition: all 0.3s;
            display: block;
            margin-bottom: 5px;
            line-height: 1.7;
        }
        
        .contact-details a:hover {
            opacity: 1;
            color: var(--accent);
        }
        
        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: white;
            padding: 12px 24px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 10px;
            transition: all 0.3s;
        }
        
        .contact-btn:hover {
            background: #0da271;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
        }
        
        .contact-form {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--card-border);
            backdrop-filter: blur(10px);
        }
        
        .contact-form h3 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .contact-form h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            border-radius: 10px;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid var(--card-border);
            color: var(--light);
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1em;
        }
        
        /* Footer */
        footer {
            background: var(--darker);
            padding: 80px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Montserrat', sans-serif;
        }
        
        .footer-logo p {
            opacity: 0.7;
            margin-bottom: 20px;
            max-width: 300px;
            line-height: 1.7;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--light);
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-links h4, .footer-newsletter h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: var(--accent);
            font-family: 'Montserrat', sans-serif;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            opacity: 0.7;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
            line-height: 1.7;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--secondary);
        }
        
        .footer-links a i {
            font-size: 0.9rem;
        }
        
        .footer-newsletter p {
            opacity: 0.7;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .newsletter-form {
            display: flex;
            background: rgba(15, 23, 42, 0.6);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--card-border);
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            background: transparent;
            color: var(--light);
        }
        
        .newsletter-form button {
            padding: 0 25px;
            background: var(--accent);
            border: none;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .newsletter-form button:hover {
            background: #0da271;
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-content, 
            .features-container, 
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-text, 
            .features-content, 
            .contact-info {
                text-align: center;
                padding-right: 0;
            }
            
            .hero-text h2, 
            .features-content h2 {
                font-size: 3rem;
            }
            
            .hero-buttons {
                justify-content: center;
            }
        }
        
        @media (max-width: 992px) {
            .hero-text h2 {
                font-size: 2.8rem;
            }
            
            .features-content h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--darker);
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            }
            
            nav.active {
                max-height: 400px;
                padding: 20px 0;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .header-actions {
                display: none;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero-text h2 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .section-title h2 {
                font-size: 2.3rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .dashboard-stats {
                grid-template-columns: 1fr;
            }
            
            .feature-text h4 {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-text h2 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .service-card {
                padding: 30px 20px;
            }
            
            .contact-info, .contact-form {
                padding: 30px 20px;
            }
            
            .feature-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .feature-icon {
                margin-top: 0;
                margin-bottom: 15px;
            }
        }
  @media (max-width: 480px) {
    .logo h1 {
    font-size: 1.2rem;
     }

     .logo-icon {
 
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
    }


      
  }/* Mobile */

  @media (min-width: 481px) and (max-width: 999px) {

    
     .logo h1 {
    font-size: 1.4rem;
     }

  .logo-icon {
 
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    }

    
  }/* Tablet */

  @media (min-width: 768px) {
    .logo {
    margin-right: 2rem;
}
  }/* min-width:768px */

  @media only screen and (max-width: 999px) and (min-width: 768px) {
   
  li.mobile-only {
    margin-top: -2rem;
   }
   
  }
  @media (max-width: 687px) {
     .dashboard-header {
    justify-content: center;
    margin-bottom: 20px;
    }
    .dashboard-title {
    text-align: center;
    }
  }/* max-width:767px */

  @media (max-width: 999px) {
    .services {
    padding: 20px 0;
    background: var(--darker);
}
  }/* max-width:767px */

  @media (max-width: 479px) {
    .contact-container {
     display: block;
    }

   .contact-btn {
      padding: 10px 10px;
      max-width: 160px;
      text-align: center;

   }
    .hero-text, .features-content, .contact-info {
        text-align: left;
        padding-right: 0;
    }

     .contact-btn {
        padding: 10px 10px;
 
    }
    .contact-details h4,  .contact-details p{
    max-width: 77% !important;
    
}
    
  }/* max-width:479px */