/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Top Bar */
  .top-bar {
    background: #1f1f1f;
    color: #fff;
    padding: 12px 0;
    font-size: 16x;
    border-bottom: 3px solid #333;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1002;
    --scroll-width: 0%;
  }

  /* Progress bar for top bar */
  .top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #66b3ff, #0067b8);
    width: var(--scroll-width, 0%);
    transition: width 0.3s ease;
    z-index: 1002;
  }

  .top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    z-index: 1003;
  }

  .top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
  }

  .top-bar-item i {
    font-size: 16px;
    color: #fff;
  }

  .top-bar-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 16px;
  }

  .top-bar-item a:hover {
    color: #66b3ff;
  }

  .top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .social-links {
    display: flex;
    gap: 15px;
  }

  .social-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
  }

  .social-link:hover {
    color: #66b3ff;
    transform: scale(1.1);
  }

  /* Remove background from social icons */
  .social-link i {
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
  }

  .language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
  }

  .lang-link {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    transition: color 0.2s ease;
  }

  .lang-link.active {
    font-weight: 700;
    color: #66b3ff;
  }

  .lang-link:hover {
    color: #66b3ff;
  }

  .lang-separator {
    color: #fff;
    font-size: 12px;
  }

  /* Navigation */
  .navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    /*background: #1f1f1f;*/
    z-index: 1001;
    padding: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
  }

  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 98px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .nav-logo img {
    width: 250px;
    height: 65px;
    object-fit: contain;
  }

  .nav-logo:hover {
    opacity: 0.8;
  }

  .nav-logo:active {
    transform: scale(0.98);
  }

  .nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .nav-item {
    position: relative;
  }

  .nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 25px 15px;
    display: block;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
  }

  .nav-link:hover {
    color: #66b3ff;
    background-color: rgba(0, 0, 0, 0.1); /* Transparant overlay instead of hardcoded dark color */
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #66b3ff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* Dropdown Styles */
  .dropdown {
    position: relative;
  }

  .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
  }

  .dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: 5px;
  }

  .dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(31, 31, 31, 0.95); /* Semi-transparent dark background for dropdown */
    min-width: 250px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-radius: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #333;
    list-style: none;
  }

  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  @media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    
    .dropdown:hover .dropdown-toggle i {
      transform: rotate(180deg);
    }
    
    /* Pastikan dropdown tetap bisa di-hover */
    .dropdown-menu:hover {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
  }

  .dropdown-item {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    list-style: none;
    border-bottom: 1px solid #333;
  }

  .dropdown-item:hover {
    background: rgba(0, 0, 0, 0.1); /* Transparant overlay */
    color: #66b3ff;
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  /* Ensure no bullet points anywhere in dropdown */
  .dropdown-menu,
  .dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* Additional dropdown styling */
  .dropdown-menu {
    margin: 0;
    padding: 8px 0;
  }

  .dropdown-menu li {
    margin: 0;
    padding: 0;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .nav-right .nav-link {
    padding: 12px 8px;
    font-size: 13px;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1003;
    background: transparent;
    border: none;
    outline: none;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }

  .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
  }

  /* Hamburger animation when active */
  .hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Hero Section */
  .hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 130px;
    margin-bottom: 0;
    overflow: hidden;
  }

  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      #003366 0%,
      #004080 20%,
      #0067b8 40%,
      #0078d4 60%,
      #106ebe 80%,
      #005da6 100%
    );

    z-index: -2;
  }

  .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 67, 184, 0.3);
    backdrop-filter: blur(3px);
    z-index: -1;
  }

  .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    height: 100%;
  }

  .hero-content {
    color: white;
  }

  .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
  }

  .btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
  }

  .btn-primary {
    background: white;
    color: #0067b8;
  }

  .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }

  .btn-secondary:hover {
    background: white;
    color: #0067b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  /* Hero Visual */
  .hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-main-product {
    position: relative;
    z-index: 2;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .mobile-only {
    display: none;
  }

  .main-laptop {
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.8rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 180px;
    position: relative;
  }

  .main-laptop i {
    font-size: 6rem;
    margin-bottom: 1rem;
    color: white;
  }

  .main-laptop p {
    font-size: 1.3rem;
    font-weight: 620;
    color: #ed1c23;
    margin: 0;
  }

  .main-laptop img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 200px;
    margin-bottom: 1rem;
    /*filter: brightness(0) invert(1);*/
  }

  /* Floating Elements */
  .hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .floating-icon {
    position: absolute;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
  }

  .floating-icon i {
    font-size: 2rem;
    margin-bottom: 0.3rem;
  }

  .floating-icon span {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
  }

  /* Warna-warni untuk floating icons - posisi random baru lagi */
 .icon-1 {
    top: 6%;
    left: 60%;
    transform: none;
    animation-delay: 0s;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-color: #ff6b6b;
  }

  .icon-2 {
    top: 18%;
    left: 15%;
    transform: none;
    animation-delay: 1s;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border-color: #4ecdc4;
  }

  .icon-3 {
    top: 28%;
    left: 64%;
    transform: none;
    animation-delay: 2s;
    background: linear-gradient(135deg, #45b7d1, #96c93d);
    border-color: #45b7d1;
  }

  .icon-4 {
    top: 55%;
    left: 70%;
    transform: none;
    animation-delay: 3s;
    background: linear-gradient(135deg, #f9ca24, #f0932b);
    border-color: #f9ca24;
  }

  .icon-5 {
    top: 78%;
    left: 35%;
    transform: none;
    animation-delay: 4s;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border-color: #6c5ce7;
  }

  .icon-6 {
    top: 68%;
    left: 55%;
    transform: none;
    animation-delay: 5s;
    background: linear-gradient(135deg, #fd79a8, #e84393);
    border-color: #fd79a8;
  }

  .icon-7 {
    top: 62%;
    left: 19%;
    transform: none;
    animation-delay: 2.5s;
    background: linear-gradient(135deg, #a259c4, #6c47b6);
    border-color: #a259c4;
  }

  .icon-8 {
    top: 40%;
    left: 20%;
    transform: none;
    animation-delay: 4.5s;
    background: linear-gradient(135deg, #2196f3, #00c6fb);
    border-color: #2196f3;
  }

  .icon-9 {
    top: 10%;
    left: 38%;
    transform: none;
    animation-delay: 1.5s;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    /* background: linear-gradient(135deg, #0067b8, #004080);
    border-color:#0067b8; */
    border-color: #43e97b;
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(2deg);
    }
  }

  /* Quick Links */
  .quick-links {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #e1e1e1;
  }

  .quick-links-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }

  .quick-link-item {
    text-align: center;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .quick-link-item:hover {
    background: #f2f2f2;
  }

  .quick-link-item i {
    font-size: 2rem;
    color: #0067b8;
    margin-bottom: 0.5rem;
  }

  .quick-link-item h3 {
    font-size: 0.9rem;
    font-weight: 400;
    color: #262626;
    line-height: 1.3;
  }

  /* Product Showcase Section */
  .product-showcase-section {
    padding: 4rem 0;
    background: white;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .product-card {
    background: white;
    padding: 1.5rem;
    border: 1px solid #e1e1e1;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
      flex-direction: column;
    min-height: 280px;
  }

  .product-card:hover {
    border-color: #0067b8;
    box-shadow: 0 2px 8px rgba(0, 103, 184, 0.1);
  }

  .product-card .product-image {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e1e1e1;
  }

  .product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .product-card .product-image i {
    font-size: 2rem;
    color: #262626;
  }

  .product-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
        min-height: 2.2rem;

  }

  .product-card p {
    font-size: 0.9rem;
    color: #262626;
    margin-bottom: 1rem;
    line-height: 1.4;
    flex-grow: 1;
    flex: 1;
    min-height: 4.2rem;

  }

  .product-link {
    color: #0067b8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
    margin-top: auto;
    align-self: flex-start;
  }

  .product-link:hover {
    gap: 1rem;
  }

  .cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0078d4 0%, #004578 100%);
    color: white;
  }

  .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }

  .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #0078d4;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }

  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }




  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
  }


  /* Windows Section */
  .windows-section {
    padding: 4rem 0;
    background: #f2f2f2;
  }

  .windows-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .windows-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
  }

  .windows-text p {
    font-size: 1.1rem;
    color: #262626;
    margin-bottom: 2rem;
    line-height: 1.5;
  }

  .windows-visual {
    text-align: center;
    color: #0067b8;
  }

  .windows-visual i {
    font-size: 6rem;
    margin-bottom: 1rem;
  }

  .windows-visual p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #262626;
  }

  /* Follow Section */
  .follow-section {
    padding: 2rem 0;
    background: white;
    border-top: 1px solid #e1e1e1;
  }

  .follow-content {
    text-align: center;
  }

  .follow-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  /* Footer */
  .footer {
    background: #1f1f1f;
    color: #fff;
    padding: 60px 0 20px;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
  }

  .footer-section ul {
    list-style: none;
  }

  .footer-section ul li {
    margin-bottom: 0.5rem;
  }

  .footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .footer-section ul li a:hover {
    color: #0067b8;
  }

  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-bottom-left p {
    color: #ccc;
    font-size: 0.85rem;
    margin: 0;
  }

  .footer-bottom-right {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .footer-bottom-right a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
  }

  .footer-bottom-right a:hover {
    color: #0067b8;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .container {
      padding: 0 20px;
    }

    .hero-container {
      gap: 3rem;
    }

    .hero-title {
      font-size: 3rem;
    }

    .hero-subtitle {
      font-size: 1.3rem;
    }

    .product-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .about-content {
      grid-template-columns: 1fr;
      gap: 3rem;
      text-align: center;
    }

    .about-stats {
      justify-content: center;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .stat-item {
      min-width: 180px;
    }

    .about-highlights {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .microsoft-showcase {
      gap: 3rem;
    }

    .showcase-stats {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .news-grid {
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
    }

    .contact-content {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .footer-content {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .clients-track {
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
  }

  @media (max-width: 1050px) {
    /* Topbar responsive - stack elements */
    
    .top-bar .container {
      flex-direction: column;
      gap: 1px;
      padding: 5px 15px;
    }

    .top-bar-left,
    .top-bar-right {
      justify-content: center;
      width: 100%;
    }

    .top-bar-left {
      order: 1;
    }

    .top-bar-right {
      order: 2;
    }

    /* Mobile hamburger menu - diperbesar dari 900px ke 1200px */
    .hamburger {
      display: flex;
      position: relative;
      z-index: 1003;
    }

    /* Adjust navbar position because topbar is now taller */
    .navbar {
      top: 90px;

    }

    /* Mobile navigation menu */
    .nav-menu {
      margin-top: 20px;
      position: fixed;
      left: -100%;
      top: 150px;
      flex-direction: column;
      background-color: rgba(31, 31, 31, 0.98);
      width: 100%;
      text-align: left;
      transition: left 0.3s ease;
      box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(10px);
      z-index: 1000;
      height: calc(100vh - 150px);
      overflow-y: auto;
      padding: 0;
    }

    .nav-menu.active {
      left: 0;
    }

    /* Mobile navigation items */
    .nav-menu .nav-item {
      margin: 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu .nav-item:last-child {
      border-bottom: none;
    }

    .nav-menu .nav-link {
      padding: 16px 20px;
      font-size: 16px;
      font-weight: 500;
      color: #fff;
      display: block;
      transition: background-color 0.3s ease;
      border-radius: 0;
    }

    .nav-menu .nav-link:hover {
      background-color: rgba(102, 179, 255, 0.1);
      color: #66b3ff;
    }

    .nav-menu .nav-link::after {
      display: none;
    }

    /* Mobile logo size */
    .nav-logo img {
      width: 250px;
      height: 65px;
    }

    /* Mobile dropdown */
    .dropdown-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      border: none;
      background: rgba(31, 31, 31, 0.95);
      margin: 0;
      padding: 0;
      border-radius: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
      max-height: 500px;
      padding: 8px 0;
      overflow-y: auto;
    }

    .dropdown-item {
      padding: 10px 30px;
      font-size: 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-item:hover {
      background: rgba(102, 179, 255, 0.1);
      color: #66b3ff;
    }

    .dropdown-toggle {
      justify-content: space-between;
      width: 100%;
    }

    .dropdown-toggle i {
      margin-left: auto;
    }

    /* Adjust hero padding because topbar and navbar position changed */
    .hero {
      padding-top: 170px;
    }

    .hero-container {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 2rem;
    }

    .hero-content {
      order: 1;
    }

    .hero-visual {
      order: 2;
    }

    .hero-service-image {
      max-width: 350px;
      height: 220px;
      margin: 0 auto;
    }

    .hero-title {
      font-size: 2.5rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .hero-subtitle {
      font-size: 1.2rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }

    .hero-buttons {
      justify-content: center;
      flex-wrap: wrap;
    }

    .main-laptop {
      width: 170px;
      height: auto;
      padding: 2rem;
    }

    .main-laptop i {
      font-size: 2rem;
    }

    .main-laptop img {
      max-width: 120px;
    }
    
    .main-laptop p {
      font-size: 1.2rem;
    }

    .icon-8 {
      
      left: 12%;
    }
    


    .about-content {
      grid-template-columns: 1fr;
      gap: 3rem;
      text-align: center;
    }

    .about-text h2 {
      font-size: 2rem;
    }

    .about-highlights {
      max-width: 500px;
      margin: 0 auto;
    }

    .highlight-item {
      text-align: left;
    }

    .microsoft-showcase {
      max-width: 400px;
      margin: 0 auto;
    }

    .showcase-stats {
      grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .clients-track {
      gap: 1rem;
    }

    .client-slide {
      min-width: 200px;
      padding: 1.5rem;
    }

    .news-grid {
      grid-template-columns: 1fr;
    }

    .news-card .news-image {
      height: 150px;
    }

    .news-card .news-content {
      padding: 1.5rem;
    }

    .news-card h3 {
      font-size: 1.3rem;
    }

    .contact-content {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .partners-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .clients-track {
      gap: 1rem;
    }

    .client-slide {
      min-width: 180px;
      padding: 1rem;
    }

    .news-grid {
      grid-template-columns: 1fr;
    }

    .footer-content {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .hero {
      padding-top: 250px;
      min-height: 1024px
    }
    /* Tablet responsive */
    /* .nav-container {
      padding: 0 16px;
      height: 85px;
    }

    .nav-logo img {
      width: 175px;
      height: 72px;
    }

    .nav-menu {
      top: 130px;
      height: calc(100vh - 130px);
    } */

    /* Hamburger button for tablet */
    /* .hamburger {
      display: flex;
      z-index: 1003;
    } */

    /* Hide desktop menu on tablet */
    /* .nav-menu {
      position: fixed;
      left: -100%;
      top: 130px;
      flex-direction: column;
      background-color: rgba(31, 31, 31, 0.98);
      width: 100%;
      text-align: left;
      transition: left 0.3s ease;
      box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(10px);
      z-index: 1000;
      height: calc(100vh - 130px);
      overflow-y: auto;
      padding: 0;
    }

    .nav-menu.active {
      left: 0;
    } */

    /* Adjust hero padding for tablet */
    /* .hero {
      padding-top: 200px;
    } */

    .container {
      padding: 0 15px;
    }

    .hero-container {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
    }

    .hero-content {
      order: 1;
    }

    .hero-visual {
      order: 2;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 2rem;
    }

    .hero-buttons {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }

    .btn {
      width: 100%;
      max-width: 300px;
    }

    .main-laptop {
      width: 200px;
      height: auto;
      margin: 0 auto;
      padding: 1.5rem;
    }

    .main-laptop img {
      max-width: 180px;
    }

    /*.floating-icon {*/
    /*  display: none;*/
    /*}*/

    .hero-floating-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }
  
    .floating-icon {
      position: absolute;
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(15px);
      border: 2px solid rgba(255, 255, 255, 0.4);
      padding: 1rem;
      gap: 0.5rem;
      color: white;
      font-size: 0.5rem;
      font-weight: 300;
      animation: float 6s ease-in-out infinite;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
      cursor: pointer;
      transition: all 0.3s ease;
      pointer-events: auto;
    }
  
    .floating-icon i {
      font-size: 1.5rem;
      margin-bottom: 0.3rem;
    }
  
    .floating-icon span {
      font-size: 0.7rem;
      text-align: center;
      line-height: 1.2;
      font-weight: 300;
    }
    .icon-1 {
      top: 5%;
      left: 60%;
      transform: none;
      animation-delay: 0s;
      background: linear-gradient(135deg, #ff6b6b, #ee5a24);
      border-color: #ff6b6b;
    }
  
    .icon-2 {
      top: 28%;
      left: 20%;
      transform: none;
      animation-delay: 1s;
      background: linear-gradient(135deg, #4ecdc4, #44a08d);
      border-color: #4ecdc4;
    }
  
    .icon-3 {
      top: 28%;
      left: 64%;
      transform: none;
      animation-delay: 2s;
      background: linear-gradient(135deg, #45b7d1, #96c93d);
      border-color: #45b7d1;
    }
  
    .icon-4 {
      top: 55%;
      left: 65%;
      transform: none;
      animation-delay: 3s;
      background: linear-gradient(135deg, #f9ca24, #f0932b);
      border-color: #f9ca24;
    }
  
    .icon-5 {
      top: 78%;
      left: 38%;
      transform: none;
      animation-delay: 4s;
      background: linear-gradient(135deg, #6c5ce7, #a29bfe);
      border-color: #6c5ce7;
    }
  
    .icon-6 {
      top: 75%;
      left: 55%;
      transform: none;
      animation-delay: 5s;
      background: linear-gradient(135deg, #fd79a8, #e84393);
      border-color: #fd79a8;
    }
  
    .icon-7 {
      top: 62%;
      left: 29%;
      transform: none;
      animation-delay: 2.5s;
      background: linear-gradient(135deg, #a259c4, #6c47b6);
      border-color: #a259c4;
    }
  
    .icon-8 {
      top: 1%;
      left: 40%;
      transform: none;
      animation-delay: 4.5s;
      background: linear-gradient(135deg, #2196f3, #00c6fb);
      border-color: #2196f3;
    }
  
    .icon-9 {
      top: 10%;
      left: 31%;
      transform: none;
      animation-delay: 1.5s;
      background: linear-gradient(135deg, #43e97b, #38f9d7);
      /* background: linear-gradient(135deg, #0067b8, #004080);
      border-color:#0067b8; */
      border-color: #43e97b;
    }
    .about-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
    }

    .about-text h2 {
      font-size: 2rem;
    }

    .about-highlights {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .highlight-item {
      padding: 1.5rem;
    }

    .microsoft-showcase {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
    }

    .showcase-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .product-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .clients-track {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .client-slide {
      padding: 1.5rem;
    }

    .news-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .contact-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .footer-content {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .hero-title {
      font-size: 2.4rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .hero-subtitle {
      font-size: 1.15rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }

    .hero-slide .hero-title {
      font-size: 2.4rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .hero-slide .hero-subtitle {
      font-size: 1.15rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }

    .hamburger {
      display: flex;
      position: relative;
      z-index: 1001;
    }
/*
    .nav-menu {
      position: fixed;
      left: -100%;
      top: 70px;
      flex-direction: column;
      background-color: rgba(255, 255, 255, 0.98);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
      backdrop-filter: blur(10px);
      z-index: 999;
      height: calc(100vh - 114px);
      overflow-y: auto;
    }

    .nav-menu.active {
      left: 0;
    }

    .nav-logo img {
      width: 250px;
      height: 62px;
    } */

    /* Mobile navigation items styling */
    /* .nav-menu .nav-item {
      margin: 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu .nav-item:last-child {
      border-bottom: none;
    }

    .nav-menu .nav-link {
      padding: 16px 20px;
      font-size: 16px;
      font-weight: 500;
      color: #262626;
      display: block;
      transition: background-color 0.3s ease;
    }

    .nav-menu .nav-link:hover {
      background-color: rgba(0, 103, 184, 0.1);
      color: #0067b8;
    } */

    .hero-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .hero-title {
      font-size: 2.2rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .hero-subtitle {
      font-size: 1.1rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }

    .main-laptop {
      width: 170px;
      height: auto;
      padding: 2rem;
      margin-bottom: 1rem;
    }

    .main-laptop i {
      font-size: 1.5rem;
    }
    .main-laptop img {
      max-width: 100px;
    }
    .main-laptop p {
      font-size: 1.2rem;
    }

   
    .about-text h2 {
      font-size: 1.8rem;
    }

    .about-text p {
      font-size: 1rem;
    }

    .highlight-item {
      gap: 0.8rem;
    }

    .highlight-item i {
      width: 20px;
      height: 20px;
      font-size: 0.7rem;
    }

    .highlight-item h4 {
      font-size: 1rem;
    }

    .highlight-item p {
      font-size: 0.9rem;
    }

    .microsoft-logo {
      width: 60px;
      height: 60px;
      font-size: 2rem;
    }

    .showcase-main h3 {
      font-size: 1.3rem;
    }

    .showcase-main p {
      font-size: 0.9rem;
    }

    .stat {
      padding: 0.8rem;
    }

    .stat-number {
      font-size: 1.5rem;
    }

    .stat-label {
      font-size: 0.75rem;
    }

    .product-grid {
      grid-template-columns: 1fr;
    }

    .clients-track {
      gap: 1rem;
    }

    .client-slide {
      min-width: 180px;
      padding: 1rem;
    }

    .client-logo {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
    }

    .news-grid {
      grid-template-columns: 1fr;
    }

    .news-card .news-image {
      height: 120px;
    }

    .news-card .news-content {
      padding: 1rem;
    }

    .news-card h3 {
      font-size: 1.1rem;
    }

    .contact-content {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .contact-item {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
      padding: 1.5rem;
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
    }

    .contact-details h4 {
      font-size: 1.1rem;
    }

    .footer-content {
      grid-template-columns: 1fr;
    }

    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }

    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }

  @media (max-width: 600px) {
    .hero {
      padding-top: 190px;
    }
    
    .top-bar {
      padding: 6px 0;
      font-size: 12px;
    }


    .top-bar .container {
      padding: 0 8px;
      flex-wrap: wrap;
      gap: 4px;
      justify-content: center;
    }

    .top-bar-left {
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .top-bar-item {
      gap: 3px;
      font-size: 11.5px;
      white-space: nowrap;
    }

    .top-bar-item i {
      font-size: 8px;
    }

    .top-bar-item a {
      font-size: 9px;
    }

    .top-bar-right {
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .social-links {
      gap: 6px;
      flex-wrap: wrap;
    }

    .social-link {
      font-size: 10px;
      padding: 2px;
      min-width: 14px;
      min-height: 14px;
    }

    .language-switcher {
      gap: 3px;
      font-size: 9px;
    }

    .navbar {
      top: 40px;
    }

    .hero {
      padding-top: 190px;
    }

    .container {
      padding: 0 10px;
    }

    .hero-title {
      font-size: 1.8rem;
      line-height: 1.2;
      margin-bottom: 0.8rem;
    }

    .hero-subtitle {
      font-size: 1rem;
      line-height: 1.4;
      margin-bottom: 1.2rem;
    }

    .hero-buttons {
      flex-direction: column;
      gap: 0.8rem;
    }

    .btn {
      width: 100%;
      max-width: 250px;
      padding: 0.8rem 1.5rem;
      font-size: 0.9rem;
    }

    .main-laptop {
      width: 120px;
      height: auto;
      padding: 1.2rem;
    }

    .main-laptop i {
      font-size: 2rem;
    }
    .main-laptop img {
      max-width: 130px;
    }

    .main-laptop p {
      font-size: 0.9rem;
    }

    .about-highlights {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .highlight-item {
      padding: 1rem;
    }

    .highlight-item i {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }

    .highlight-item h4 {
      font-size: 1rem;
    }

    .highlight-item p {
      font-size: 0.85rem;
    }

    .showcase-stats {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .stat {
      padding: 1rem;
    }

    .stat-number {
      font-size: 1.5rem;
    }

    .stat-label {
      font-size: 0.8rem;
    }

    .product-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .product-card {
      padding: 1rem;
    }

    .product-card h3 {
      font-size: 1.1rem;
    }

    .product-card p {
      font-size: 0.85rem;
    }

    .clients-track {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .client-slide {
      padding: 1rem;
    }

    .client-slide h4 {
      font-size: 1rem;
    }

    .client-slide p {
      font-size: 0.85rem;
    }

    .news-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .news-card {
      padding: 1rem;
    }

    .news-card h3 {
      font-size: 1.1rem;
    }

    .news-card p {
      font-size: 0.85rem;
    }

    .contact-item {
      padding: 1rem;
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }

    .contact-details h4 {
      font-size: 1rem;
    }

    .contact-details p {
      font-size: 0.85rem;
    }

    .footer-content {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      text-align: center;
    }

    .hero-title {
      font-size: 2.2rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .hero-subtitle {
      font-size: 1.1rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }

    .hero-slide .hero-title {
      font-size: 2.2rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .hero-slide .hero-subtitle {
      font-size: 1.1rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }

    .hamburger {
        margin-top: 10px;
      display: flex;
      position: relative;
      z-index: 1001;
    }

    .nav-menu {
      position: fixed;
      left: -100%;
      top: 110px;
      flex-direction: column;
      background-color: rgba(31, 31, 31, 0.98);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(10px);
      z-index: 999;
      height: calc(100vh - 110px);
      overflow-y: auto;
    }

    .nav-menu.active {
      left: 0;
    }

    .nav-logo img {
        margin-top: 10px;
      width: 210px;
      height: 60px;
    }

    /* Mobile navigation items styling */
    .nav-menu .nav-item {
      margin: 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu .nav-item:last-child {
      border-bottom: none;
    }

    .nav-menu .nav-link {
      padding: 16px 20px;
      font-size: 16px;
      font-weight: 500;
      color: #fff;
      display: block;
      transition: background-color 0.3s ease;
    }

    .nav-menu .nav-link:hover {
      background-color: rgba(102, 179, 255, 0.1);
      color: #66b3ff;
    }

    .hero {
      padding-bottom: 24px;
      min-height: 870px;
    }

    .hero-slider {
      height: 500px;
      margin-top: 1px;
    }
    .hero-container {
      gap: 1.2rem;
      padding: 0 8px;
      margin-top: 1px;
    }
    .hero-content {
      padding-bottom: 0.5rem;
    }
    .main-laptop {
      width: 120px;
      height: auto;
      margin: 1.2rem auto 0.5rem auto;
      padding: 1.2rem;
    }
    .main-laptop i {
      font-size: 2.2rem;
    }
    .main-laptop img {
      max-width: 110px;
    }
    .main-laptop p {
      font-size: 1rem;
    }
    .hero-buttons {
      margin-bottom: 0.5rem;
    }
  }

  @media (max-width: 480px) {
    
    .floating-icon span {
      font-size: 0.6rem;
      text-align: center;
      line-height: 1.2;
      font-weight: 300;
    }
     .icon-7 {
      top: 62%;
      left: 25%;
      transform: none;
      animation-delay: 2.5s;
      background: linear-gradient(135deg, #a259c4, #6c47b6);
      border-color: #a259c4;
    }
    .icon-2 {
      top: 30%;
      left: 14%;
      transform: none;
      animation-delay: 1s;
      background: linear-gradient(135deg, #4ecdc4, #44a08d);
      border-color: #4ecdc4;
    }
    .icon-9 {
      top: 10%;
      left: 25%;
      transform: none;
      animation-delay: 1.5s;
      background: linear-gradient(135deg, #43e97b, #38f9d7);
      /* background: linear-gradient(135deg, #0067b8, #004080);
      border-color:#0067b8; */
      border-color: #43e97b;
    }
    .hero {
      padding-top: 90px;
    }

    /* Phone responsive */
    /* .nav-container {
      padding: 0 12px;
      height: 60px;
    }

    .nav-logo img {
      width: 120px;
      height: 31px;
    }

    .navbar {
      top: 50px;
    }

    .nav-menu {
      top: 110px;
      height: calc(100vh - 110px);
    } */

    /* Phone hamburger */
    .hamburger {
      min-width: 40px;
      min-height: 40px;
    }

    .bar {
      width: 22px;
      height: 2px;
    }

    /* Phone navigation styling */
    /* .nav-menu .nav-link {
      padding: 14px 16px;
      font-size: 15px;
    } */

    .dropdown-item {
      padding: 10px 32px;
      font-size: 13px;
    }

    .container {
      padding: 0 8px;
    }

    .hero-title {
      font-size: 1.6rem;
      line-height: 1.2;
      margin-bottom: 0.6rem;
    }

    .hero-subtitle {
      font-size: 0.9rem;
      line-height: 1.3;
      margin-bottom: 1rem;
    }

    .hero-buttons {
      flex-direction: column;
      gap: 0.6rem;
    }

    .btn {
      width: 100%;
      max-width: 200px;
      padding: 0.7rem 1.2rem;
      font-size: 0.85rem;
    }

    .main-laptop {
      width: 120px;
      height: auto;
      padding: 1rem;
    }

    .main-laptop i {
      font-size: 1.8rem;
    }
    .main-laptop img {
      max-width: 100px;
    }
    .main-laptop p {
      font-size: 0.8rem;
    }

    .section-header h2 {
      font-size: 1.4rem;
    }

    .about-text h2 {
      font-size: 1.4rem;
    }

    .about-text p {
      font-size: 0.8rem;
    }

    .about-image {
      max-width: 100%;
    }

    .about-cta .btn {
      padding: 0.6rem 1.2rem;
      font-size: 0.85rem;
    }

    .highlight-item {
      padding: 0.8rem;
    }

    .highlight-item i {
      width: 35px;
      height: 35px;
      font-size: 0.9rem;
    }

    .highlight-item h4 {
      font-size: 0.9rem;
    }

    .highlight-item p {
      font-size: 0.75rem;
    }

    .microsoft-logo {
      width: 30px;
      height: 30px;
      font-size: 1rem;
    }

    .showcase-main h3 {
      font-size: 0.9rem;
    }

    .showcase-main p {
      font-size: 0.75rem;
    }

    .showcase-stats {
      grid-template-columns: 1fr;
      gap: 0.8rem;
    }

    .stat {
      padding: 0.8rem;
    }

    .stat-number {
      font-size: 1.3rem;
    }

    .stat-label {
      font-size: 0.7rem;
    }

    .about-content {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .product-card,
    .client-slide,
    .news-card {
      padding: 0.8rem;
    }

    .product-card h3 {
      font-size: 1rem;
    }

    .product-card p {
      font-size: 0.75rem;
    }

    .client-slide h4 {
      font-size: 0.9rem;
    }

    .client-slide p {
      font-size: 0.75rem;
    }

    .news-card .news-image {
      height: 120px;
    }

    .news-card .news-content {
      padding: 0.8rem;
    }

    .news-card h3 {
      font-size: 1rem;
    }

    .news-card p {
      font-size: 0.75rem;
    }

    .news-date,
    .news-category {
      font-size: 0.7rem;
    }

    .contact-item {
      padding: 0.8rem;
    }

    .contact-icon {
      width: 35px;
      height: 35px;
      font-size: 0.9rem;
    }

    .contact-details h4 {
      font-size: 0.9rem;
    }

    .contact-details p {
      font-size: 0.75rem;
    }

    .contact-form {
      padding: 1rem;
    }

    .carousel-btn {
      width: 35px;
      height: 35px;
    }
    
     .clients-carousel-btn {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    
    .clients-carousel-prev,
    .clients-carousel-next {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    
    .clients-carousel-prev {
      left: 10px;
    }
    
    .clients-carousel-next {
      right: 10px;
    }

    .showcase-stats {
      grid-template-columns: 1fr;
    }

    .hamburger {
      display: flex;
      position: relative;
      z-index: 1001;
    }

    /* .nav-menu {
      position: fixed;
      left: -100%;
      top: 106px;
      flex-direction: column;
      background-color: rgba(255, 255, 255, 0.98);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
      backdrop-filter: blur(10px);
      z-index: 999;
      height: calc(100vh - 106px);
      overflow-y: auto;
    }

    .nav-menu.active {
      left: 0;
    }

    .nav-logo img {
      width: 190px;
      height: 44px;
    } */

    /* Mobile navigation items styling */
    /* .nav-menu .nav-item {
      margin: 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu .nav-item:last-child {
      border-bottom: none;
    }

    .nav-menu .nav-link {
      padding: 16px 20px;
      font-size: 16px;
      font-weight: 500;
      color: #262626;
      display: block;
      transition: background-color 0.3s ease;
    }

    .nav-menu .nav-link:hover {
      background-color: rgba(0, 103, 184, 0.1);
      color: #0067b8;
    } */

    .container {
      padding: 0 12px;
    }

    .hero-slider {
      height: 450px;
    }

    .hero-title {
      font-size: 2rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .hero-subtitle {
      font-size: 1rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }

    .section-header h2 {
      font-size: 1.5rem;
    }

    .about-text h2 {
      font-size: 1.3rem;
    }

    .about-text p {
      font-size: 0.85rem;
    }

    .about-image {
      max-width: 100%;
    }

    .about-cta .btn {
      padding: 0.6rem 1.5rem;
      font-size: 0.9rem;
    }

    .highlight-item {
      gap: 0.5rem;
    }

    .highlight-item i {
      width: 16px;
      height: 16px;
      font-size: 0.5rem;
    }

    .highlight-item h4 {
      font-size: 0.8rem;
    }

    .highlight-item p {
      font-size: 0.75rem;
    }

    .microsoft-logo {
      width: 40px;
      height: 40px;
      font-size: 1.5rem;
    }

    .showcase-main h3 {
      font-size: 1rem;
    }

    .showcase-main p {
      font-size: 0.75rem;
    }

    .showcase-stats {
      grid-template-columns: 1fr;
      gap: 0.5rem;
    }

    .stat {
      padding: 0.5rem;
    }

    .stat-number {
      font-size: 1.2rem;
    }

    .stat-label {
      font-size: 0.6rem;
    }

    .about-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
    }

    .product-card,
    .client-slide {
      padding: 1rem;
    }

    .product-card h3 {
      font-size: 1rem;
    }

    .product-card p {
      font-size: 0.85rem;
    }

    .client-slide h4 {
      font-size: 0.9rem;
    }

    .client-slide p {
      font-size: 0.8rem;
    }

    .news-card .news-image {
      height: 80px;
    }

    .news-card .news-content {
      padding: 0.8rem;
    }

    .news-card h3 {
      font-size: 0.9rem;
    }

    .news-card p {
      font-size: 0.85rem;
    }

    .news-date,
    .news-category {
      font-size: 0.7rem;
    }

    .contact-item {
      padding: 0.8rem;
    }

    .contact-icon {
      width: 35px;
      height: 35px;
      font-size: 0.9rem;
    }

    .contact-details h4 {
      font-size: 0.9rem;
    }

    .contact-details p {
      font-size: 0.8rem;
    }

    .contact-form {
      padding: 1rem;
    }

    .carousel-btn {
      width: 35px;
      height: 35px;
      font-size: 0.9rem;
    }

    .showcase-stats {
      grid-template-columns: 1fr;
      gap: 0.5rem;
    }
  }

  @media (max-width: 320px) {
    .top-bar {
      padding: 4px 0;
      font-size: 9px;
    }

    .top-bar .container {
      padding: 0 4px;
      flex-wrap: wrap;
      gap: 2px;
      justify-content: center;
    }

    .top-bar-left {
      gap: 6px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .top-bar-item {
      gap: 1px;
      font-size: 7px;
      white-space: nowrap;
    }

    .top-bar-item i {
      font-size: 6px;
    }

    .top-bar-item a {
      font-size: 7px;
    }

    .top-bar-right {
      gap: 6px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .social-links {
      gap: 3px;
      flex-wrap: wrap;
    }

    .social-link {
      font-size: 8px;
      padding: 1px;
      min-width: 10px;
      min-height: 10px;
    }

    .language-switcher {
      gap: 1px;
      font-size: 7px;
    }

    .navbar {
      top: 32px;
    }

    .hero {
      padding-top: 102px;
    }

    .hero-title {
      font-size: 1.8rem;
      line-height: 1.2;
      margin-bottom: 0.8rem;
    }

    .hero-subtitle {
      font-size: 0.9rem;
      line-height: 1.4;
      margin-bottom: 1.2rem;
    }

    .hero-slide .hero-title {
      font-size: 1.8rem;
      line-height: 1.2;
      margin-bottom: 0.8rem;
    }

    .hero-slide .hero-subtitle {
      font-size: 0.9rem;
      line-height: 1.4;
      margin-bottom: 1.2rem;
    }

    .hamburger {
      display: flex;
      position: relative;
      z-index: 1001;
    }

    .nav-menu {
      position: fixed;
      left: -100%;
      top: 102px;
      flex-direction: column;
      background-color: rgba(255, 255, 255, 0.98);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
      backdrop-filter: blur(10px);
      z-index: 999;
      height: calc(100vh - 102px);
      overflow-y: auto;
    }

    .nav-menu.active {
      left: 0;
    }

    .nav-logo img {
      width: 70px;
      height: 18px;
    }

    .nav-link::after {
      display: none;
    }
  }

  .microsoft-logo {
      width: 35px;
      height: 35px;
      font-size: 1.3rem;
    }

    .showcase-main h3 {
      font-size: 0.9rem;
    }

    .showcase-main p {
      font-size: 0.7rem;
    }

    .stat {
      padding: 0.4rem;
    }

    .stat-number {
      font-size: 1rem;
    }

    .stat-label {
      font-size: 0.55rem;
    }


  /* Responsive Grid System */
  .grid-responsive {
    display: grid;
    gap: 1rem;
  }

  @media (min-width: 640px) {
    .grid-responsive {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 768px) {
    .grid-responsive {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .grid-responsive {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  /* Responsive Typography */
  .text-responsive {
    font-size: clamp(1rem, 4vw, 1.5rem);
    line-height: 1.4;
  }

  .title-responsive {
    font-size: clamp(1.5rem, 6vw, 3rem);
    line-height: 1.2;
  }

  /* Responsive Spacing */
  .spacing-responsive {
    padding: clamp(1rem, 4vw, 3rem);
  }

  /* Responsive Images */
  .img-responsive {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  /* Responsive Buttons */
  .btn-responsive {
    padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 4vw, 2rem);
    font-size: clamp(0.875rem, 2vw, 1rem);
  }

  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }



  /* Animation for cards */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .product-card,
  .client-slide,
  .news-card,
  .contact-item {
    animation: fadeInUp 0.6s ease forwards;
  }

  /* Microsoft-style animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* About Section */
  .about-section {
    padding: 80px 0;
    background: #fff;
  }

  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  /* Microsoft Partner Badge */
  .microsoft-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0078d4;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  .microsoft-partner-badge i {
    font-size: 1.1rem;
  }

  .about-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .about-cta {
    margin-top: 2rem;
  }

  .about-cta .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .about-cta .btn-primary {
    background: #0078d4;
    color: white;
    border: 2px solid #0078d4;
  }

  .about-cta .btn-primary:hover {
    background: #106ebe;
    border-color: #106ebe;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
  }

  /* About Highlights */
  .about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .highlight-item i {
    width: 24px;
    height: 24px;
    background: #0078d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }

  .highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.3rem;
  }

  .highlight-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
  }

  /* Microsoft Showcase */
  .about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-image {
    width: 100%;
    max-width: 600px;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .about-image img:hover {
    transform: scale(1.02);
  }

  .microsoft-showcase {
    width: 100%;
    max-width: 450px;
  }

  .showcase-main {
    text-align: center;
    margin-bottom: 2rem;
  }

  .microsoft-logo {
    width: 80px;
    height: 80px;
    background: #0078d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
  }

  .showcase-main h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.8rem;
  }

  .showcase-main p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
  }

  .showcase-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
  }

  .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0078d4;
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .stat-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
  }

  /* Product Showcase */
  .product-showcase-section {
    padding: 80px 0;
    background: linear-gradient(120deg, #e3f0fa 0%, #f8fafd 80%, #fff 100%);
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-card {
    background: white;
    padding: 2rem;
    border-radius: 0;
    border: 1px solid #e9ecef;
  }

  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-card .product-image {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e1e1e1;
  }

  .product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .product-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .product-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }

  .product-link {
    color: #0078d4;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
  }

  .product-link:hover {
    color: #106ebe;
  }

  /* Contact Section */
  .contact-section {
    padding: 80px 0;
    background: #f8f9fa;
  }

  .contact-content {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .contact-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e1e1e1;
  }

  .contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0067b8, #0078d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 0.5rem;
  }

  .contact-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }

  .contact-details a {
    color: #0067b8;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-details a:hover {
    color: #004080;
  }

  .contact-branch {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e1e1;
  }

  .contact-branch h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 1rem;
    text-align: center;
  }

  .contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e1e1;
  }

  .contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    display: block;
    font-weight: 600;
    color: #262626;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #0067b8;
    box-shadow: 0 0 0 3px rgba(0, 103, 184, 0.1);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }

  /* News Section */
  .news-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafd 0%, #e3f0fa 100%);
  }

  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }

  .news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e1e1e1;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }

  .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .news-image {
    height: 200px;
    background: linear-gradient(135deg, #0067b8, #0078d4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.15);
  }

  .news-image i {
    font-size: 3rem;
    color: white;
  }

  .news-card .news-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .news-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    }

  .news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .news-date {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
  }

  .news-category {
    font-size: 0.85rem;
    color: #0067b8;
    font-weight: 600;
    background: rgba(0, 103, 184, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
  }

  .news-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
  }

  .news-card:hover h3 {
    color: #0067b8;
  }

  .news-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
  }

  .news-link {
    color: #0067b8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    align-self: flex-end;
    margin-top: auto;
  }

  .news-card:hover .news-link i {
    transform: translateX(5px);
    transition: transform 0.3s ease;
  }

  .news-cta {
    text-align: center;
    margin-top: 3rem;
  }

  /* Clients Section */
  .clients-section {
    padding: 40px 0;
    background: #ffffff;
  }

  .clients-carousel-container {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
  }

  .clients-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1rem;
  }

  .clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
  }

  .client-card {
    background: transparent;
    padding: 0;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    aspect-ratio: 1;
    flex: 0 0 calc(33.333% - 11px);
    min-width: 280px;
  }

  .client-card:hover {
    /* transform: translateY(-8px); */
    border-color: #0067b8;
  }

  .client-logo {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgb(255, 255, 255);
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .client-card:hover .client-logo {
    /* background: linear-gradient(135deg, #0067b8, #005da6); */
    color: white;
    transform: scale(1.05);
  }

  .client-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0067b8, #005da6);
    color: white;
    padding: 15px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-radius: 0 0 12px 12px;
  }

  .client-card:hover .client-info {
    opacity: 1;
    visibility: visible;
  }

  .client-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: white;
    text-align: center;
  }

  .client-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    max-width: 340px;
    max-height: 340px;
  }

  .client-card:hover .client-image {
    transform: scale(0.8);
  }

  /* Responsive untuk clients carousel */
  @media (max-width: 992px) {
    .clients-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    
    .carousel-btn {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    
    .carousel-prev {
      left: 10px;
    }
    
    .carousel-next {
      right: 10px;
    }
  }

  @media (max-width: 768px) {
    .clients-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .client-logo {
      font-size: 4rem;
    }

    .client-info {
      padding: 12px 15px;
    }
    
    .carousel-btn {
      width: 35px;
      height: 35px;
      font-size: 0.9rem;
    }
    
    .carousel-prev {
      left: 5px;
    }
    
    .carousel-next {
      right: 5px;
    }
  }
  .carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .carousel-btn {
    width: 50px;
    height: 50px;
    background: #0078d4;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-btn:hover {
    background: #106ebe;
    transform: scale(1.1);
  }

  .carousel-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
  }
  
   /* Clients Carousel Button */
 
  /* Partners Section */
  .partners-section {
    padding: 40px 0;
    background: #ffffff;
  }
  
  .partners-carousel-container {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
  }

  .partners-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1rem;
  }

  .partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
  }

  .partner-card {
    background: transparent;
    padding: 0;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    aspect-ratio: 1;
        flex: 0 0 calc(33.333% - 11px);
    min-width: 280px;
  }

  .partner-card:hover {
    border-color: #0067b8;
  }

  .partner-logo {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgb(255, 255, 255);
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .partner-card:hover .partner-logo {
    color: white;
    transform: scale(1.05);
  }

  .partner-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0067b8, #005da6);
    color: white;
    padding: 15px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-radius: 0 0 12px 12px;
  }

  .partner-card:hover .partner-info {
    opacity: 1;
    visibility: visible;
  }

  .partner-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: white;
    text-align: center;
  }

  .partner-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    max-width: 340px;
    max-height: 340px;
  }

  .partner-card:hover .partner-image {
    transform: scale(0.8);
  }
   /* Carousel Navigation */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 103, 184, 0.9);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .carousel-btn:hover {
    background: rgba(0, 103, 184, 1);
    transform: translateY(-50%) scale(1.1);
  }

  .carousel-prev {
    left: 20px;
  }

  .carousel-next {
    right: 20px;
  }

  /* Carousel Dots */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 103, 184, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .carousel-dot.active {
    background: #0067b8;
    transform: scale(1.2);
  }

  .carousel-dot:hover {
    background: rgba(0, 103, 184, 0.6);
  }

  /* Responsive untuk partners */
  @media (max-width: 992px) {
    .partners-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
     .carousel-btn {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    
    .carousel-prev {
      left: 10px;
    }
    
    .carousel-next {
      right: 10px;
    }
  }

  @media (max-width: 768px) {
    .partners-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .partner-logo {
      font-size: 4rem;
    }

    .partner-info {
      padding: 12px 15px;
    }
    
     .carousel-btn {
      width: 35px;
      height: 35px;
      font-size: 0.9rem;
    }
    
    .carousel-prev {
      left: 5px;
    }
    
    .carousel-next {
      right: 5px;
    }
    
    .carousel-dots {
      margin-top: 1.5rem;
    }

    .partner-info h4 {
      font-size: 1rem;
    }
  }

  @media (max-width: 600px) {
    .about-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 4vw;
      gap: 1.5rem;
    }
    .about-text,
    .about-visual {
      width: 100%;
    }
    .about-text {
      margin-bottom: 1.5rem;
    }
    .about-image {
      max-width: 400px;
    }
    .about-cta .btn {
      padding: 0.7rem 1.8rem;
      font-size: 0.95rem;
    }
  }

  @media (max-width: 600px) {
    .hero-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.2rem;
      padding: 0 8px;
    }
    .hero-content {
      order: 1;
      width: 100%;
      text-align: center;
      padding-bottom: 0.5rem;
    }
    .hero-visual {
      order: 2;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 0;
    }
    .main-laptop {
      margin: 0.5rem auto 0 auto;
    }
  }

  @media (max-width: 600px) {
    .hero-title {
      margin-top: 2.5rem;
      font-size: 1.5rem;
    }
    .main-laptop {
      width: 146px;
      height: auto;
      margin: 1.1rem auto 0 auto;
      padding: 1.5rem;
    }
    .main-laptop i {
      font-size: 3rem;
    }

    .main-laptop img {
      max-width: 150px;
    }
    
    .main-laptop p {
      font-size: 1.1rem;
    }
  }

  /* Contact Button White Variant */
  .btn-contact-white {
    background-color: #ffffff;
    color: #0078d4;
    border: 2px solid #ffffff;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn-contact-white:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
  }

  .btn-contact-white i {
    font-size: 1.1rem;
    margin-left: 8px;
  }





  /* Footer New Styles */
  .footer-new {
    background: #1f1f1f;
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #333;
  }

  .footer-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,0,0,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(0,0,0,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(0,0,0,0.01)"/><circle cx="10" cy="60" r="0.5" fill="rgba(0,0,0,0.01)"/><circle cx="90" cy="40" r="0.5" fill="rgba(0,0,0,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
  }

  .footer-new-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
  }

  .footer-new-section {
    margin-bottom: 30px;
  }

  .footer-new-logo {
    margin-bottom: 20px;
    text-align: left;
  }

  .footer-logo-img {
    max-width: 200px;
    height: auto;
    filter: none;
    transition: all 0.3s ease;
  }

  .footer-logo-img:hover {
    filter: drop-shadow(0 0 10px rgba(0, 103, 184, 0.3));
    transform: scale(1.05);
  }

  .footer-new-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Segoe UI', Arial, sans-serif;
  }

  .footer-new-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0067b8, #0078d4);
    border-radius: 2px;
  }

  .footer-new-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 25px;
    text-align: justify;
    font-family: 'Segoe UI', Arial, sans-serif;
  }

  .footer-new-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }

  .footer-new-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
  }

  .footer-new-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
  }

  .footer-new-social-link:hover::before {
    left: 100%;
  }

  .footer-new-social-link:hover {
    transform: translateY(-3px);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .footer-new-social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
  }

  .footer-new-social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5bb8);
  }

  .footer-new-social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
  }

  .footer-new-social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584);
  }

  .footer-new-address {
    margin-bottom: 20px;
  }

  .footer-new-address p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 5px;
    font-family: 'Segoe UI', Arial, sans-serif;
  }

  .footer-new-contact p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 8px;
    font-family: 'Segoe UI', Arial, sans-serif;
  }

  .footer-new-contact strong {
    color: #fff;
    font-weight: 600;
  }

  .footer-new-link {
    color: #0067b8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }

  .footer-new-link:hover {
    color: #004578;
    text-decoration: underline;
  }

  .footer-new-link:active {
    color: #002a4a;
  }

  .footer-new-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
  }

  .footer-new-bottom-left p {
    font-size: 0.85rem;
    color: #ccc;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
  }

  .footer-new-bottom-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-new-bottom-link {
    font-size: 0.85rem;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Segoe UI', Arial, sans-serif;
    position: relative;
  }

  .footer-new-bottom-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0067b8;
    transition: width 0.3s ease;
  }

  .footer-new-bottom-link:hover::after {
    width: 100%;
  }

  .footer-new-bottom-link:hover {
    color: #0067b8;
    text-decoration: none;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-new-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-new {
        padding: 40px 0 20px;
    }

    .footer-new-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-new-bottom-right {
        justify-content: center;
    }

    .footer-new-title {
        font-size: 1.2rem;
    }

    .footer-new-description {
        font-size: 0.9rem;
    }

    .footer-new-logo {
        text-align: center;
    }

    .footer-logo-img {
        max-width: 180px;
    }
  }

  @media (max-width: 480px) {
    .footer-new-social {
        justify-content: center;
    }

    .footer-new-bottom-right {
        flex-direction: column;
        gap: 10px;
    }

    .footer-new {
        padding: 30px 0 15px;
    }

    .footer-new-content {
        gap: 25px;
    }

    .footer-logo-img {
        max-width: 150px;
    }
  }

  /* Hero Slider Styles */
  .hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-slide.active {
    opacity: 1;
  }

  /* Slide content positioning */
  .hero-slide .hero-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .hero-slide .hero-content {
    flex: 1;
    padding-right: 2rem;
  }

  .hero-slide .hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Dynamic slide image styling */
  .hero-service-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }

  .hero-service-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .hero-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: fadeInImage 0.5s ease forwards;
  }

  .hero-slide[data-slide="1"] .hero-service-image img {
    animation-delay: 0.1s;
  }

  .hero-slide[data-slide="2"] .hero-service-image img {
    animation-delay: 0.2s;
  }

  .hero-slide[data-slide="3"] .hero-service-image img {
    animation-delay: 0.3s;
  }

  @keyframes fadeInImage {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .hero-service-image:hover img {
    transform: scale(1.05);
  }

  .service-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInPlaceholder 0.5s ease forwards;
  }

  .hero-slide[data-slide="1"] .service-placeholder {
    animation-delay: 0.1s;
  }

  .hero-slide[data-slide="2"] .service-placeholder {
    animation-delay: 0.2s;
  }

  .hero-slide[data-slide="3"] .service-placeholder {
    animation-delay: 0.3s;
  }

  @keyframes fadeInPlaceholder {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-service-image:hover .service-placeholder {
    transform: scale(1.05);
  }

  .service-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
  }

  .hero-service-image:hover .service-placeholder i {
    color: white;
    transform: scale(1.1);
  }

  .service-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: white;
  }

  .dynamic-service-container {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
  }

  /* Line Pattern Background */
  .line-pattern-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
  }

  .line-pattern-bg .line {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    transform-origin: center;
  }

  /* Horizontal Lines */
  .line-1 {
    width: 200px;
    height: 1px;
    top: 20%;
    left: -10%;
    animation: slideRight 4s ease-in-out infinite;
  }

  .line-3 {
    width: 150px;
    height: 1px;
    bottom: 30%;
    right: -5%;
    animation: slideLeft 5s ease-in-out infinite;
  }

  .line-5 {
    width: 180px;
    height: 1px;
    bottom: 15%;
    left: -8%;
    animation: slideRight 4.5s ease-in-out infinite;
  }

  /* Vertical Lines */
  .line-2 {
    width: 1px;
    height: 120px;
    top: -5%;
    right: 25%;
    animation: slideDown 4s ease-in-out infinite;
  }

  .line-4 {
    width: 1px;
    height: 150px;
    bottom: -10%;
    left: 30%;
    animation: slideUp 4.5s ease-in-out infinite;
  }

  @keyframes slideRight {
    0%, 100% {
      transform: translateX(0);
      opacity: 0.1;
    }
    50% {
      transform: translateX(30px);
      opacity: 0.3;
    }
  }

  @keyframes slideLeft {
    0%, 100% {
      transform: translateX(0);
      opacity: 0.1;
    }
    50% {
      transform: translateX(-30px);
      opacity: 0.3;
    }
  }

  @keyframes slideDown {
    0%, 100% {
      transform: translateY(0);
      opacity: 0.1;
    }
    50% {
      transform: translateY(30px);
      opacity: 0.3;
    }
  }

  @keyframes slideUp {
    0%, 100% {
      transform: translateY(0);
      opacity: 0.1;
    }
    50% {
      transform: translateY(-30px);
      opacity: 0.3;
    }
  }

  /* Service Card Wrapper dengan Corner Brackets */
  .service-card-wrapper {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
  }

  .service-card-wrapper:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
  }

  /* Corner Brackets - Garis 90 derajat di setiap sudut */
  .corner-bracket {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
  }

  .corner-bracket::before,
  .corner-bracket::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, #f5f5f5, #ffffff);;
    transition: all 0.3s ease;

  }


  
  /* Top Left Corner */
  .corner-tl {
    top: 0;
    left: 0;
  }

  .corner-tl::before {
    width: 40px;
    height: 2px;
    top: 0;
    left: 0;
  }

  .corner-tl::after {
    width: 2px;
    height: 40px;
    top: 0;
    left: 0;
  }

  /* Top Right Corner */
  .corner-tr {
    top: 0;
    right: 0;
    
  }

  .corner-tr::before {
    width: 40px;
    height: 2px;
    top: 0;
    right: 0;
  }

  .corner-tr::after {
    width: 2px;
    height: 40px;
    top: 0;
    right: 0;
  }

  /* Bottom Left Corner */
  .corner-bl {
    bottom: 0;
    left: 0;
  }

  .corner-bl::before {
    width: 40px;
    height: 2px;
    bottom: 0;
    left: 0;
  }

  .corner-bl::after {
    width: 2px;
    height: 40px;
    bottom: 0;
    left: 0;
  }

  /* Bottom Right Corner */
  .corner-br {
    bottom: 0;
    right: 0;
  }

  .corner-br::before {
    width: 40px;
    height: 2px;
    bottom: 0;
    right: 0;
  }

  .corner-br::after {
    width: 2px;
    height: 40px;
    bottom: 0;
    right: 0;
  }

  /* Hover effect pada corners */
  .service-card-wrapper:hover .corner-bracket::before,
  .service-card-wrapper:hover .corner-bracket::after {
    background: rgba(0, 212, 255, 1);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  }

  /* Transparansi lebih untuk image */
  .service-card-wrapper .hero-service-image {
    opacity: 0.9;
    transition: opacity 0.3s ease;
  }

  .service-card-wrapper:hover .hero-service-image {
    opacity: 1;
  }

  /* Responsive untuk Dynamic Service & Main Laptop */
  @media (max-width: 768px) {
    .dynamic-service-container,
    .hero-main-product {
      max-width: 100%;
    }

    /* Show mobile-only ornaments */
    .mobile-only {
      display: block;
    }

    /* Apply same style as dynamic service to main laptop */
    .main-laptop {
      background: rgba(255, 255, 255, 0.02);
      backdrop-filter: blur(5px);
      border: none;
      box-shadow: none;
      padding: 1.5rem;
      transition: all 0.4s ease;
    }

    .main-laptop:hover {
      background: rgba(255, 255, 255, 0.04);
      transform: translateY(-5px);
    }

    /* Line patterns untuk main laptop */
    .hero-main-product .line-pattern-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      z-index: -1;
      pointer-events: none;
      overflow: hidden;
    }

    .line-pattern-bg .line {
      opacity: 0.5;
    }

    .service-card-wrapper {
      padding: 1.5rem;
    }

    .corner-bracket {
      width: 30px;
      height: 30px;
    }

    .corner-tl::before,
    .corner-tr::before,
    .corner-bl::before,
    .corner-br::before {
      width: 30px;
    }

    .corner-tl::after,
    .corner-tr::after,
    .corner-bl::after,
    .corner-br::after {
      height: 30px;
    }

    /* Logo image transparency pada mobile */
    .main-laptop img {
      opacity: 0.9;
      transition: opacity 0.3s ease;
    }

    .main-laptop:hover img {
      opacity: 1;
    }

    /* Corner brackets hover effect */
    .main-laptop:hover .corner-bracket::before,
    .main-laptop:hover .corner-bracket::after {
      background: rgba(0, 212, 255, 1);
      box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    }
  }

  @media (max-width: 480px) {
    .service-card-wrapper,
    .main-laptop {
      padding: 1rem;
    }

    .line-pattern-bg .line {
      display: none;
    }

    .corner-bracket {
      width: 25px;
      height: 25px;
    }

    .corner-tl::before,
    .corner-tr::before,
    .corner-bl::before,
    .corner-br::before {
      width: 25px;
    }

    .corner-tl::after,
    .corner-tr::after,
    .corner-bl::after,
    .corner-br::after {
      height: 25px;
    }
  }

  .hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
  }

  .slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
  }

  .slider-btn i {
    font-size: 18px;
  }

  .slider-dots {
    display: flex;
    gap: 10px;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dot.active {
    background: white;
    transform: scale(1.2);
  }

  .dot:hover {
    background: rgba(255, 255, 255, 0.8);
  }

  /* Responsive Hero Slider */
  @media (max-width: 768px) {
    .hero-slider-controls {
      bottom: 20px;
      gap: 15px;
    }

    .slider-btn {
      width: 40px;
      height: 40px;
    }

    .slider-btn i {
      font-size: 16px;
    }

    .dot {
      width: 10px;
      height: 10px;
    }


    .hero-slide .hero-container {
      flex-direction: column;
      text-align: center;
      gap: 0.5rem;
    }

    .hero-slide .hero-content {
      padding-right: 0;
      padding-bottom: 1rem;
    }

    .hero-slide .hero-visual {
      justify-content: center;
      margin-bottom: 10px;

    }

    .hero-service-image {
      max-width: 300px;
      height: 200px;
    }

    .service-placeholder i {
      font-size: 3rem;
    }

    .service-placeholder p {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .hero-slider-controls {
      bottom: 15px;
      gap: 10px;
    }

    .slider-btn {
      width: 35px;
      height: 35px;
    }

    .slider-btn i {
      font-size: 14px;
    }

    .dot {
      width: 8px;
      height: 8px;
    }

    .hero-slide .hero-container {
      gap: 0.5rem;
      margin-top: 1px;

    }

    .hero-slide .hero-content {
      padding-bottom: 0.5rem;
    }

    .hero-slide .hero-title {
      font-size: 2rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .hero-slide .hero-subtitle {
      font-size: 1rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }

    .hero-service-image {
      max-width: 250px;
      height: 160px;
    }

    .service-placeholder i {
      font-size: 2.5rem;
    }

    .service-placeholder p {
      font-size: 0.9rem;
    }
  }

  /* Dynamic Sections Styles */
  .dynamic-section {
    padding: 80px 0;
    position: relative;
  }

  .dynamic-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .dynamic-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--ms-black);
    margin-bottom: 1rem;
  }

  .dynamic-section .section-header p {
    font-size: 1.1rem;
    color: var(--ms-gray);
    max-width: 600px;
    margin: 0 auto;
  }

  /* About Section */
  .section-about {
    background: var(--ms-light-gray);
  }

  .section-about .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .section-about .about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--ms-black);
  }

  .section-about .about-text p {
    font-size: 1.1rem;
    color: var(--ms-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .section-about .about-description {
    margin-bottom: 2rem;
  }

  .section-about .about-description p {
    font-size: 1rem;
    color: var(--ms-gray);
    line-height: 1.6;
  }

  /* Products Section */
  .section-products {
    background: var(--ms-white);
  }

  .section-products .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  /* CTA Section */
  .section-cta {
    background: linear-gradient(135deg, #0078d4 0%, #004578 100%);
    color: white;
    text-align: center;
  }

  .section-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
  }

  .section-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }

  .section-cta .cta-description {
    margin-bottom: 2rem;
  }

  .section-cta .cta-description p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
  }

  /* Custom Section */
  .section-custom {
    background: var(--ms-white);
  }

  .section-custom .custom-content {
    margin-top: 2rem;
  }

  .section-custom .feature-item {
    padding: 2rem 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  .section-custom .feature-item:hover {
    transform: translateY(-5px);
  }

  .section-custom .feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--ms-black);
  }

  .section-custom .feature-item p {
    color: var(--ms-gray);
    line-height: 1.6;
  }

  /* Responsive Design for Dynamic Sections */
  @media (max-width: 768px) {
    .dynamic-section {
        padding: 60px 0;
    }

    .dynamic-section .section-header h2 {
        font-size: 2rem;
    }

    .section-about .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-about .about-text h2 {
        font-size: 2rem;
    }

    .section-cta .cta-content h2 {
        font-size: 2rem;
    }

    .section-custom .feature-item {
        padding: 1.5rem 1rem;
    }
  }

  @media (max-width: 480px) {
    .dynamic-section {
        padding: 40px 0;
    }

    .dynamic-section .section-header h2 {
        font-size: 1.75rem;
    }

    .section-about .about-text h2 {
        font-size: 1.75rem;
    }

    .section-cta .cta-content h2 {
        font-size: 1.75rem;
    }
  }
  

  /* Section Separator */
  .section-separator {
    background: white;
  }

  .separator-line {
    width: 100%;
    height: 1px;
    background: #e1e1e1;
    margin: 0 auto;
    max-width: 1200px;
  }

  /* Company Features Section */
  .company-features-section {
    padding: 60px 0;
    background: white;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .feature-card {
    background: white;
    padding: 10px 10px;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 120px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    flex-shrink: 0;
  }

  .feature-icon i {
    font-size: 2.5rem;
    color: #333;
    display: block;
    margin: 0 auto;
  }

  .feature-content {
    flex: 1;
  }

  .feature-content h3 {
    font-size: 1.3rem;
    font-weight: 550;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .feature-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
  }

  /* Responsive Design for Section Separator */
  @media (max-width: 768px) {
    .section-separator {
      padding: 30px 0;
    }

    .separator-line {
      max-width: 90%;
    }
  }

  @media (max-width: 480px) {
    .section-separator {
      padding: 20px 0;
    }

    .separator-line {
      max-width: 85%;
    }
  }

  /* Responsive Design for Company Features */
  @media (max-width: 768px) {
    .company-features-section {
      padding: 50px 0;
    }

    .features-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      padding: 0 2rem;
    }

    .feature-card {
      padding: 2rem 1.5rem;
      gap: 1.5rem;
      min-height: auto;
    }

    .feature-icon {
      width: 55px;
      height: 55px;
    }

    .feature-icon i {
      font-size: 2rem;
      display: block;
      margin: 0 auto;
    }

    .feature-content h3 {
      font-size: 1.2rem;
    }

    .feature-content p {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 480px) {
    .company-features-section {
      padding: 40px 0;
    }

    .features-grid {
      gap: 2rem;
      padding: 0 1rem;
    }

    .feature-card {
      padding: 1.5rem 1rem;
      gap: 1.25rem;
    }

    .feature-icon {
      width: 50px;
      height: 50px;
    }

    .feature-icon i {
      font-size: 2rem;
      display: block;
      margin: 0 auto;
    }

    .feature-content h3 {
      font-size: 1.1rem;
    }

    .feature-content p {
      font-size: 0.9rem;
    }
  }

  /* Responsive YouTube Video */
  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 1rem 0;
  }

  .video-container iframe,
  .video-container object,
  .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* Make all YouTube iframes responsive */
  iframe[src*="youtube.com"],
  iframe[src*="youtu.be"] {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  /* Fallback for older browsers */
  @supports not (aspect-ratio: 16/9) {
    iframe[src*="youtube.com"],
    iframe[src*="youtu.be"] {
      width: 100% !important;
      height: 315px !important;
    }
  }

  /* Image handling for CKEditor - Global responsive */
  .overview-content img,
  .content img,
  .page-content img,
  main img,
  section img,
  p img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 1rem auto;
  }

  /* Remove hspace and vspace effects for responsive images */
  .overview-content img[hspace],
  .content img[hspace],
  .page-content img[hspace],
  main img[hspace],
  section img[hspace],
  p img[hspace] {
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block !important;
    float: none !important;
    clear: both !important;
  }

  .overview-content img[vspace],
  .content img[vspace],
  .page-content img[vspace],
  main img[vspace],
  section img[vspace],
  p img[vspace] {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    display: block !important;
    float: none !important;
    clear: both !important;
  }

  /* Additional override for hspace/vspace images */
  img[hspace], img[vspace] {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    float: none !important;
    clear: both !important;
  }

  /* Force responsive for images with hspace/vspace */
  .overview-content img[hspace],
  .overview-content img[vspace],
  .content img[hspace],
  .content img[vspace],
  .page-content img[hspace],
  .page-content img[vspace],
  main img[hspace],
  main img[vspace],
  section img[hspace],
  section img[vspace],
  p img[hspace],
  p img[vspace] {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 1rem 0 !important;
    display: block !important;
    float: none !important;
    clear: both !important;
  }

  /* Preserve aspect ratio for all images */
  .overview-content img[style*="width"],
  .content img[style*="width"],
  .page-content img[style*="width"],
  main img[style*="width"],
  section img[style*="width"],
  p img[style*="width"] {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Fix problematic images but preserve text wrapping */
  img[style*="float"][style*="margin"],
  img[style*="float"][hspace],
  img[style*="float"][vspace],
  img[hspace][vspace],
  img[style*="margin"][hspace],
  img[style*="margin"][vspace] {
    /* Keep float for text wrapping, but fix margin issues */
    clear: both !important;
    /* Don't override width - preserve custom size from CKEditor */
    max-width: 100% !important;
    height: auto !important;
    /* Fix margin but keep it reasonable for text wrapping */
    margin: 0.5rem !important;
  }

  /* Mobile responsive for all images */
  @media (max-width: 768px) {
    /* Only make problematic images responsive on tablet */
    img[style*="float"][style*="margin"],
    img[style*="float"][hspace],
    img[style*="float"][vspace],
    img[hspace][vspace],
    img[style*="margin"][hspace],
    img[style*="margin"][vspace] {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      float: none !important;
      display: block !important;
      margin: 1rem 0 !important;
    }

    /* Override hspace and vspace on mobile */
    .overview-content img[hspace],
    .content img[hspace],
    .page-content img[hspace],
    main img[hspace],
    section img[hspace],
    p img[hspace] {
      margin-left: 1rem !important;
      margin-right: 1rem !important;
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      display: block !important;
    }

    .overview-content img[vspace],
    .content img[vspace],
    .page-content img[vspace],
    main img[vspace],
    section img[vspace],
    p img[vspace] {
      margin-top: 1rem !important;
      margin-bottom: 1rem !important;
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      display: block !important;
    }
  }

  @media (max-width: 480px) {
    /* Only make problematic images responsive on small mobile */
    img[style*="float"][style*="margin"],
    img[style*="float"][hspace],
    img[style*="float"][vspace],
    img[hspace][vspace],
    img[style*="margin"][hspace],
    img[style*="margin"][vspace] {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
    }

    /* Override hspace and vspace on small mobile */
    .overview-content img[hspace],
    .content img[hspace],
    .page-content img[hspace],
    main img[hspace],
    section img[hspace],
    p img[hspace] {
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    .overview-content img[vspace],
    .content img[vspace],
    .page-content img[vspace],
    main img[vspace],
    section img[vspace],
    p img[vspace] {
      margin-top: 0.5rem !important;
      margin-bottom: 0.5rem !important;
    }
  }
 @media (max-width: 480px) {
    .main-laptop img {
      max-width: 80% !important;
    }

    .hero-slide .hero-visual{
      margin-bottom: 2rem !important;
    }
}
