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

  html,
  body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    color: white;
    overflow-x: hidden;
  }

  .container {
    position: relative;
    width: 100%;
    background-color: #0a1829;
  }

  /* Video Background */
  .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140vh;
    z-index: 1;
  }

  .video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: blur(4px); /* Increase blur effect */
  }

  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.7); /* Make overlay darker */
    z-index: 2;
  }

  /* Header */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background:rgb(255, 255, 255);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
  }

  .header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
  }

  .logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    transform: scale(2); /* Additional zoom effect */
  }

  .nav {
    display: flex;
    gap: 40px;
  }

  .nav-item {
    color: #0c3258;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
  }

  .nav-item.active,
  .nav-item:hover {
    color: rgb(69, 69, 69);
  }

  .nav-item.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fc0;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
@media(max-width: 320px) {
	.header-right {
		display: flex;
		align-items: center;
		gap: 4px;
  }
}

  .cart-btn,
  .search-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
  }

  .cart-btn:hover,
  .search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .language {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
  }

  /* Hamburger Menu */
  .hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    padding: 0;
    z-index: 1001;
  }

  .hamburger-menu span {
    background: #2c3e50;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .hamburger-menu.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }

  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }

  /* Mobile Navigation */
  .mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(44, 62, 80, 0.1);
    padding: 20px 0;
    z-index: 999;
    transform: translateY(-100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
  }

  .mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-item {
    color: rgba(10, 24, 41, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 15px 40px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(44, 62, 80, 0.05);
    position: relative;
  }

  .mobile-nav-item:last-child {
    border-bottom: none;
  }

  .mobile-nav-item:hover,
  .mobile-nav-item.active {
    color: rgb(69, 69, 69);
    background: rgba(203, 173, 1, 0.05);
  }

  .mobile-nav-item.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fc0;
  }

  /* Main Content */
  .main {
    position: relative;
    z-index: 5;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 0;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-bottom: 120px;
  }

  .hero-content {
    display: grid;
    grid-template-columns: 1fr auto 435px;
    gap: 60px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
  }

  /* Hero Left */
  .hero-left {
  }

  /* Hero Middle */
  .hero-middle {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
  }

  .hero-title {
    position: absolute;
    top: 120px;
    left: 0;
    transform: translateY(-50%);
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 10;
  }

  /* Hero Carousel */
  .hero-carousel {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
  }

  .carousel-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 4px;
    overflow: hidden;
  }

  .slide-box {
    position: relative;
  }



  .slide-box .slide-img-box .bg-box {
    width: 100%;
    position: relative;
  }

  .slide-box .slide-img-box .bg-box::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0; 
    bottom: 0;
    height: 100%;
    transition: all .5s;
    opacity: 1;
    z-index: 1; 
    background: linear-gradient(to right, rgb(30, 48, 57) 0%,rgba(0,0,0,0) 60%);
    border-radius: 0;
  }

  .carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .carousel-slide.active {
    opacity: 1;
  }

  .slide-box .slide-img-box {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .carousel-navigation {
  position: relative;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  }

  .carousel-arrow {
    width: 50px;
    height: 50px;
    background: #fc0;
    border: none;
    border-radius: 50%;
    color: #0c3258;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-arrow:hover {
    transform: scale(1.1);
    background: #ffed4e;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  }

  .carousel-dots {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }

  .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .carousel-dot.active {
    background: #fc0;
    transform: scale(1.2);
    width: 20px;
    height: 10px;
    border-radius: 14px;
  }

  .carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
  }

  .stats {
    display: flex;
    gap: 60px;
  }

  .stat-item {
    text-align: left;
  }

  .stat-label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
  }

  .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #fc0;
  }

  .plus {
    color: #fc0;
  }

  /* Hero Right */
  .hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
  }

  /* Hero Stats */
  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .hero-stat-item {
    text-align: left;
  }

  .hero-stat-label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
  }

  .hero-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #fc0;
    display: block;
  }

  .trial-section {
    /* background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15); */
    /* border-radius: 16px; */
    padding: 0 20px;
    text-align: left;
  }

  .trial-title {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: white;
  }

  .highlight {
    color: #fc0;
  }

  .trial-text {
    font-size: 17px;
/*     text-align: justify; */
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
  }
  @media (max-width: 484px) {
  .trial-text {
      font-size: 16px;
    }
  }

  .contact-btn {
    background: #fc0;
    color: #0c3258;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
  }

  .contact-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  }

  /* Navigation Controls */
  .hero-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .nav-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid #fc0;
    background: rgba(0, 212, 230, 0.1);
    color: #fc0;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-arrow:hover {
    background: #fc0;
    color: white;
  }

  .dots {
    display: flex;
    gap: 12px;
    margin-left: 20px;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .dot.active {
    background: #fc0;
  }

  .dot:hover {
    background: rgba(255, 255, 255, 0.6);
  }

  /* Settings Button */
  .settings-btn {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .settings-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) rotate(90deg);
  }

  /* Services Section */
  .services-section {
    position: relative;
    z-index: 5;
    background: #f8f9fa;
    padding: 60px 0;
    width: 100%;
    padding-top: 0;
  }

  .services-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
  }
@media(min-width: 991px) {
  .services-grid {
	  margin-top: -80px;
	}
}
  .service-card {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    perspective: 1000px;
    height: 320px;
  }

  .service-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); */
  }

  /* Card flip animation */
  .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }

  .service-card:hover .card-inner {
    transform: rotateY(180deg);
  }

  .card-front,
  .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    flex-direction: column;
    border-radius: 12px;
  }
  .card-front {
      display: flex;
  }
@media(max-width: 400px) {
    .card-back {
        overflow: auto;
    }
}
@media(min-width: 400px) {
    .card-back {
        display: flex;
    }
}

  .card-front {
    background: white;
  }

  .card-front .card-content {
    flex: 0;
    padding: 20px 30px;
  }

  .card-back {
    background: linear-gradient(135deg, #fc0, #f9d038, #f5b600);
    color: #2c3e50;
    transform: rotateY(180deg);
    justify-content: center;
    align-items: center;
    padding: 30px;
  }

  .card-back .card-title {
    color: #2c3e50;
    margin-bottom: 20px;
  }

  .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .service-card:hover .card-image img {
    transform: scale(1.05);
  }

  .card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .card-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    text-transform: uppercase;
  }

  /* Detail elements styles */
  .card-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .detail-item {
    text-align: center;
    flex: 1;
    min-width: 80px;
  }

  .detail-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .detail-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fc0;
  }

  .detail-value.price {
    color: #00d4e6;
  }

  .detail-value.type {
    color: #ff6b6b;
  }

  .detail-value.client {
    color: #4ecdc4;
  }

  .card-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    text-align: center;
  }

  /* About Us Section */
  .about-section {
    position: relative;
    background: #f8f9fa;
    padding: 80px 0;
    width: 100%;
  }

  .about-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-left {
    position: relative;
  }

  .about-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .name-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .left-arrow {
    left: -25px;
  }

  .right-arrow {
    right: -25px;
  }

  .about-right {
    padding-left: 20px;
  }

  .about-label {
    font-size: 14px;
    font-weight: 600;
    color: #fc0;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
  }

  .about-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.3;
  }

  .about-description {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 40px;
  }

  .signature-section {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .signature {
    flex-shrink: 0;
  }

  .ceo-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .ceo-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
  }

  .ceo-title {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
  }

  /* State of Art Service Section */
  .state-of-art-section {
    position: relative;
    background: linear-gradient(rgba(44, 44, 44, 0.95), rgba(44, 44, 44, 0.95)), url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    width: 100%;
    color: white;
  }

  .state-of-art-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .state-of-art-content {
    width: 100%;
    text-align: center;
  }

  .state-of-art-left {
    width: 100%;
    padding-bottom: 40px;
  }

  .state-of-art-label {
    font-size: 14px;
    font-weight: 600;
    color: #fc0;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .state-of-art-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
  }

  .state-of-art-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
  }

  .all-services-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fc0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .all-services-link:hover {
    color: #00b8cc;
    transform: translateX(5px);
  }

  .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
  }

  .all-services-link:hover .arrow {
    transform: translateX(5px);
  }

  .state-of-art-right {
    display: flex;
    justify-content: center;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
  }

  .feature-item {
    padding: 15px;
    border-radius: 14px;
    transition: all 0.25s ease;
    cursor: pointer;
  }

  .feature-item .feature-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 14px;
    transition: all 0.25s ease;
    cursor: pointer;
    gap: 20px;
    border: 1px solid #fc0;
    padding: 10px;
    min-height: 120px;
  }

  .feature-item .feature-box svg , .feature-item .feature-box .feature-title {
    fill: #fc0;
    color: #fc0;
  }

  .feature-item:hover {
    background: linear-gradient(135deg, #fc0, #f9d038, #f5b600);
  }

  .feature-item:hover .feature-box svg, .feature-item:hover .feature-box .feature-title {
    fill: #0c3258;
    color: #0c3258;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .feature-content {
    flex: 1;
  }

  .feature-title {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
    text-align: left;
  }

  .feature-description {
    opacity: 0;
    margin-top: 15px;
    font-size: 16px;
    text-align: center;
    color: #0c3258;
    margin: 0;
    line-height: 1.4;
    transition: all 0.25s ease;
  }
  .feature-item:hover .feature-description {
    opacity: 1;
  }

  /* Analytics & Mobile Section */
  .analytics-mobile-section {
    position: relative;
    background: #f8f9fa;
    padding: 100px 0;
    width: 100%;
  }

  .analytics-mobile-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .analytics-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 120px;
  }

  .analytics-section,
  .mobile-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .mobile-section {
    direction: rtl;
  }

  .mobile-section > * {
    direction: ltr;
  }

  .analytics-content,
  .mobile-content {
    flex: 1;
  }

  .section-label {
    font-size: 14px;
    font-weight: 600;
    color: #fc0;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
  }

  .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.2;
  }

  .section-description {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 32px;
  }

  .learn-more-btn {
    display: inline-block;
    background: #fc0;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 212, 230, 0.3);
    align-self: flex-start;
  }

  .learn-more-btn:hover {
    background: #00b8cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 230, 0.4);
  }

  .learn-more-btn.outline {
    background: transparent;
    color: #fc0;
    border: 2px solid #fc0;
    box-shadow: none;
  }

  .learn-more-btn.outline:hover {
    background: #fc0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 212, 230, 0.3);
  }

  .analytics-mockup,
  .mobile-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .dashboard-mockup {
    position: relative;
    max-width: 500px;
    width: 100%;
  }

  .dashboard-mockup img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }

  .stats-overlay {
    position: absolute;
    top: 20px;
    right: -30px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 120px;
  }

  .stat-item-overlay {
    margin-bottom: 15px;
  }

  .stat-item-overlay:last-child {
    margin-bottom: 0;
  }

  .stat-number-overlay {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
  }

  .stat-label-overlay {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .mobile-mockup-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mobile-frame {
    position: relative;
    max-width: 300px;
    width: 100%;
  }

  .mobile-frame img {
    width: 100%;
    height: auto;
  }

  .desktop-mockup {
    position: absolute;
    top: -50px;
    left: -80px;
    max-width: 400px;
    opacity: 0.8;
    z-index: 1;
  }

  .desktop-mockup img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

  /* Core Services Section */
  .core-services-section {
    position: relative;
    background: rgb(228, 237, 243);
    padding: 80px 0;
    width: 100%;
  }

  .core-services-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .core-services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
  }

  .core-services-left {
    flex: 1;
  }

  .core-services-label {
    font-size: 14px;
    font-weight: 600;
    color: #fc0;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
  }

  .core-services-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
  }

  .core-services-tabs {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .service-tab {
    background: white;
    border: none;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid #e9ecef;
  }

  .service-tab:last-child {
    border-right: none;
  }

  .service-tab:hover {
    background: #f8f9fa;
    color: #2c3e50;
  }

  .service-tab.active {
    background: #2c3e50;
    color: white;
  }

  .core-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .core-service-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .core-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }

  .service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    height: 60px;
  }

  .service-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 16px 0;
  }

  .service-card-description {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
  }

  /* Development Process Section */
  .development-process-section {
    position: relative;
    background: rgba(44, 44, 44, 0.7);
    padding: 70px 0;
    width: 100%;
  }

  .development-process-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .development-process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
  }

  .development-process-left {
    flex: 1;
    text-align: center;
  }

  .development-process-label {
    font-size: 14px;
    font-weight: 600;
    color: #fc0;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
  }

  .development-process-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
  }

  .development-process-right {
    display: flex;
    align-items: center;
  }

  .view-services-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #6c757d;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .view-services-link:hover {
    color: #2c3e50;
    transform: translateX(5px);
  }

  .arrow-right {
    font-size: 18px;
    transition: transform 0.3s ease;
  }

  .view-services-link:hover .arrow-right {
    transform: translateX(5px);
  }

  .process-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
  }

  .process-timeline-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
  }

  .process-carousel-btn {
    background: white;
    border: 2px solid #fc0;
    color: #fc0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
  }

  .process-carousel-btn:hover {
    background: #fc0;
    color: white;
    transform: scale(1.1);
  }

  .process-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f5f5f5;
    color: #ccc;
    border-color: #ddd;
  }

  .process-carousel-btn:disabled:hover {
    background: #f5f5f5;
    color: #ccc;
    transform: none;
  }

  .process-timeline {
    position: relative;
    display: flex;
    align-items: flex-start;
    transition: transform 0.5s ease;
  }

  .process-timeline::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 160px;
    width: 2520px;
    height: 2px;
    background: #d1d5db;
    z-index: 1;
  }

  .process-step {
    position: relative;
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    transition: transform 0.3s ease;
  }

  .step-number {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
  }

  .process-step .step-number {
    border-color: #fc0;
    background-color: #fc0;
    color: #0c3258;
  }

  .step-content {
    text-align: center;
    max-width: 300px;
  }

  .step-title {
    font-size: 22px;
    font-weight: 600;
    color: #fc0;
    margin: 0 0 16px 0;
    text-transform: uppercase;
  }

  .step-description {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    padding: 0 15px;
/*     text-align: justify; */
  }

  /* Client Logos Section */
  /*.client-logos-section {
    position: relative;
    background: #ffffff;
    padding: 100px 0;
    width: 100%;
    border-top: 1px solid #e9ecef;
  }

  .client-logos-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .logos-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
  }

  .logo-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 15px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    min-height: 120px;
    max-width: 200px;
  }

  .logo-item:hover {
    transform: scale(1.08);
  }

  .logo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    text-align: center;
    width: 100%;
  }

  .logo-item:hover .logo-content {
    opacity: 1;
  }

  .logo-content svg {
    max-width: 100px;
    height: auto;
    margin-bottom: 12px;
  }

  .logo-content .logo-text {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
  }

  /* Footer */
  .footer {
    background: rgb(0, 71, 103);

    color: white;
    padding: 60px 0 0;
    width: 100%;
  }

  .footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
  }

  .footer-brand-title {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
  }

  .footer-brand-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 30px 0;
  }

  .footer-social {
    display: flex;
    gap: 8px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: transform 0.3s ease;
  }

  .social-link:hover {
    transform: translateY(-2px);
  }

  .social-link.facebook {
    background: #3b5998;
  }

  .social-link.twitter {
    background: #1da1f2;
  }

  .social-link.instagram {
    background: #e4405f;
  }

  .social-link.pinterest {
    background: #bd081c;
  }

  .footer-section-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 30px 0;
    letter-spacing: 0.5px;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 15px;
  }

  .footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
  }

  .footer-link:hover {
    color: white;
  }

  .footer-link::before {
    content: "—";
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.5);
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .contact-label {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin: 0;
  }

  .contact-value {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
  }

  .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
  }

  .footer-link-accent {
    color: #fc0;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-link-accent:hover {
    color: #00b8cc;
  }

  .footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .footer-bottom-link {
    color: #fc0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }

  .footer-bottom-link:hover {
    color: #00b8cc;
  }

  .footer-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .nav {
      display: none !important;
    }

    .hamburger-menu {
      display: flex;
    }

    .hero-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .hero-middle {
      order: 2;
    }

    .hero-right {
      order: 3;
    }

    .header-content {
      padding: 0 20px;
    }

    .hero-section {
      padding: 120px 20px 0;
    }

    .stats {
      gap: 40px;
    }

    .nav {
      gap: 20px;
    }

    .hero-title {
      font-size: 36px;
      left: 25px;
    }

    .hero-carousel {
      max-width: 400px;
    }

    .carousel-container {
      height: 250px;
    }

    .carousel-arrow {
      width: 40px;
      height: 40px;
      font-size: 20px;
    }

    .carousel-navigation {
      margin-top: 15px;
      gap: 15px;
    }

    .hero-stats {
      gap: 25px;
    }

    .services-container {
      padding: 0 20px;
    }
	 @media (min-width: 549px) and (max-width: 990px) {
		 .services-container {
  			padding: 40px 20px 0px 20px !important;
		 }
	}


    .services-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .about-container {
      padding: 0 20px;
    }

    .about-content {
      gap: 60px;
    }

    .about-title {
      font-size: 28px;
    }

    .nav-arrow {
      width: 40px;
      height: 40px;
      font-size: 20px;
    }

    .left-arrow {
      left: -20px;
    }

    .right-arrow {
      right: -20px;
    }

    .state-of-art-container {
      padding: 0 20px;
    }

    .state-of-art-content {
      gap: 60px;
    }

    .state-of-art-title {
      font-size: 32px;
    }

    .features-grid {
      gap: 25px;
    }

    .feature-icon {
      width: 50px;
      height: 50px;
    }

    .analytics-mobile-container {
      padding: 0 20px;
    }

    .analytics-mobile-content {
      gap: 80px;
    }

    .analytics-section,
    .mobile-section {
      gap: 60px;
    }

    .section-title {
      font-size: 32px;
    }

    .stats-overlay {
      right: -20px;
      padding: 15px;
      min-width: 100px;
    }

    .stat-number-overlay {
      font-size: 20px;
    }

    .desktop-mockup {
      top: -40px;
      left: -60px;
      max-width: 350px;
    }

    .core-services-container {
      padding: 0 20px;
    }

    .core-services-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 30px;
    }

    .core-services-title {
      font-size: 32px;
    }

    .core-services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }

    .core-service-card {
      padding: 30px 20px;
    }

    .development-process-container {
      padding: 0 20px;
    }

    .development-process-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 30px;
      margin-bottom: 60px;
    }

    .development-process-title {
      font-size: 32px;
    }

    .process-timeline::before {
      left: 45px;
      right: 45px;
    }

    .process-step {
      flex: 0 0 50%;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .step-number {
      width: 50px;
      height: 50px;
      font-size: 18px;
    }

    .step-content {
      max-width: 250px;
    }

    .client-logos-container {
      padding: 0 20px;
    }

    .logos-grid {
      gap: 15px;
      justify-content: space-between;
    }

    .logo-item {
      padding: 25px 10px;
      flex: 1;
      max-width: 180px;
    }

    .logo-content svg {
      max-width: 90px;
    }

    .logo-content .logo-text {
      font-size: 14px;
      letter-spacing: 0.4px;
    }

    .footer-container {
      padding: 0 20px;
    }

    .footer-content {
      gap: 50px;
    }

    .footer-bottom-content {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  }

  @media (max-width: 768px) {
    .nav {
      display: none !important;
    }

    .hamburger-menu {
      display: flex;
    }

    .hero-section {
      padding: 100px 20px 0;
    }

    .hero-title {
      font-size: 20px;
      left: 20px;
      margin-bottom: 0;
    }

    .hero-content {
      grid-template-columns: 1fr;
      gap: 0px;
    }

    .hero-middle {
      order: 2;
    }

    .hero-right {
      order: 3;
    }

    .hero-carousel {
      max-width: 100%;
    }

    .carousel-container {
      height: 185px;
    }

    .carousel-arrow {
      width: 35px;
      height: 35px;
      font-size: 18px;
    }

    .carousel-navigation {
      margin-top: 10px;
      gap: 10px;
    }

    .hero-stats {
      flex-direction: row;
      gap: 20px;
      justify-content: space-between;
    }

    .hero-stat-number {
      font-size: 28px;
    }

    .stats {
      flex-direction: column;
      gap: 20px;
    }

    .trial-section {
      padding: 4px;
    }

    .trial-title {
      font-size: 24px;
    }

    .services-section {
    }

    .services-grid {
      grid-template-columns: 1fr;
    }

    .service-card {
      height: 280px;
    }

    .card-content {
      padding: 20px;
    }

    .card-back {
      padding: 20px;
    }

    .card-details {
      flex-direction: column;
      gap: 15px;
      margin-bottom: 15px;
    }

    .detail-item {
      text-align: left;
    }

    .card-title {
      font-size: 20px;
      margin-bottom: 15px;
    }

    .card-description {
      font-size: 13px;
    }

    .about-section {
      padding: 60px 0;
    }

    .about-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .about-right {
      padding-left: 0;
    }

    .about-title {
      font-size: 24px;
    }

    .about-image {
      height: 300px;
    }

    .signature-section {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

    .nav-arrow {
      width: 35px;
      height: 35px;
      font-size: 18px;
    }

    .left-arrow {
      left: -15px;
    }

    .right-arrow {
      right: -15px;
    }

    .state-of-art-section {
      padding: 80px 0;
      background-attachment: scroll;
    }

    .state-of-art-content {
      grid-template-columns: 1fr;
      gap: 50px;
    }

    .state-of-art-title {
      font-size: 28px;
    }

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

    .feature-icon {
      width: 45px;
      height: 45px;
    }

    .analytics-mobile-section {
      padding: 80px 0;
    }

    .analytics-mobile-content {
      gap: 60px;
    }

    .analytics-section,
    .mobile-section {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .section-title {
      font-size: 28px;
    }

    .stats-overlay {
      position: relative;
      top: 0;
      right: 0;
      margin-top: 20px;
      align-self: flex-start;
    }

    .desktop-mockup {
      display: none;
    }

    .mobile-frame {
      max-width: 250px;
    }

    .core-services-header {
      margin-bottom: 40px;
    }

    .core-services-title {
      font-size: 28px;
    }

    .core-services-tabs {
      width: 100%;
      flex-direction: column;
    }

    .service-tab {
      border-right: none;
      border-bottom: 1px solid #e9ecef;
    }

    .service-tab:last-child {
      border-bottom: none;
    }

    .core-services-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .core-service-card {
      padding: 30px 20px;
    }

    .development-process-section {
      padding: 80px 0;
    }

    .development-process-header {
      margin-bottom: 50px;
    }

    .development-process-title {
      font-size: 28px;
    }

    .process-carousel-container {
      gap: 6px;
    }

    .process-timeline {
      flex-direction: row;
      gap: 0;
    }

    .process-timeline::before {
      display: none;
    }

    .process-step {
      flex: 0 0 100%;
      padding: 0 0px;
      box-sizing: border-box;
    }
	  .step-description {
		  padding: 0;
		  text-align: left;
	  }

    .step-number {
      width: 50px;
      height: 50px;
      font-size: 18px;
      margin-bottom: 20px;
    }

    .step-content {
      max-width: 100%;
    }

    .process-carousel-btn {
      width: 40px;
      height: 40px;
      font-size: 18px;
    }

    .client-logos-section {
      padding: 80px 0;
    }

    .logos-grid {
      flex-direction: row;
      gap: 10px;
      justify-content: space-between;
    }

    .logo-item {
      padding: 20px 8px;
      flex: 1;
      min-height: 100px;
      max-width: 150px;
    }

    .logo-content svg {
      max-width: 70px;
      margin-bottom: 8px;
    }

    .logo-content .logo-text {
      font-size: 12px;
      letter-spacing: 0.3px;
    }

    .footer {
      padding: 50px 0 0;
    }

    .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .footer-bottom-content {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  }

.btn-text {
  font-weight: 600;
  position: relative;
  padding: 10px 0;
    padding-right: 0px;
  font-size: 18px;
  text-transform: uppercase;
  padding-right: 10px;
}

.service-btn-container {
  text-align: center;
  width: 100%;
  padding-top: 20px;
}

.btn-text.active {
  margin-right: 35px;
}

.btn-text::after {
  content: "›";
  display: inline-block;
  position: absolute;
  font-size: 32px;
  line-height: 32px;
  width: 32px;
  right: -45px;
  top: 44%;
  text-transform: none;
  opacity: 0;
  transition: all .5s;
  transform: translateY(-50%);
}

.btn-text:hover {
  color: #fc0;
}

.btn-text:hover::after {
  color: #fc0;
}

.btn-text:hover::after, .btn-text.active::after {
  animation: btn-text-anima 1s linear infinite;

}

@keyframes btn-text-anima {
    0% {
        right: -30px;
        opacity: 0;
    }

    60% {
        right: -40px;
        opacity: 1;
    }

    100% {
        right: -45px;
        opacity: 0;
    }
}

@media (max-width:550px) {
  .hero-middle {
    display: none;
  }
  .trial-section {
    padding-top: 0;
  }
  .services-section {
    padding-top: 60px;
  }
  .services-grid {
    margin-top: 0;
  }
  .development-process-header {
    align-items: center;
  }
  .feature-item .feature-description {
    opacity: 1;
  }
  .feature-item {
    background: linear-gradient(135deg, #fc0, #f9d038, #f5b600);
  }
  .feature-item .feature-box svg, .feature-item .feature-box .feature-title {
    fill: #0c3258;
    color: #0c3258;
  }
}
#wp-live-chat-by-3CX {
  bottom: 50% !important;
}
 #wp-live-chat-by-3CX, .minimized-button {
	  right: 12px !important;
    bottom: 12px !important;
}