﻿/* ===== RESET & MODERN VARIABLES ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --import-primary: #b76e2e;
      --import-dark: #6b3f1a;
      --import-glow: rgba(183, 110, 46, 0.5);
      --ecom-primary: #2a9d8f;
      --ecom-dark: #1e6b5e;
      --ecom-glow: rgba(42, 157, 143, 0.5);
      --gold: #d4af37;
      --light-bg: #faf7f2;
      --dark-bg: #1a1a1a;
      --text-light: #f0ebe5;
      --shadow-sm: 0 10px 30px -15px rgba(0,0,0,0.3);
      --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.5);
      --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    body {
      font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
      background-color: var(--dark-bg);
      color: var(--text-light);
      line-height: 1.5;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ===== SMOOTH SCROLL ===== */
    html {
      scroll-behavior: smooth;
    }

    /* ===== LOGO WITH GLOW ===== */
    .logo {
      position: fixed;
      top: 200px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 100;
      filter: drop-shadow(0 10px 24px rgba(0,0,0,0.55)) drop-shadow(0 0 18px rgba(212, 165, 92, 0.42));
      transition: var(--transition);
      cursor: pointer;
      isolation: isolate;
    }

    .logo::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 98%;
      height: 98%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: radial-gradient(
        circle,
        rgba(212, 165, 92, 0.82) 0%,
        rgba(212, 165, 92, 0.45) 42%,
        rgba(212, 165, 92, 0.16) 62%,
        rgba(212, 165, 92, 0) 82%
      );
      filter: blur(22px);
      z-index: -1;
      pointer-events: none;
      transition: var(--transition);
    }

    .logo:hover {
      transform: translateX(-50%) scale(1.03);
      filter: drop-shadow(0 14px 34px rgba(212, 165, 92, 0.95)) drop-shadow(0 0 26px rgba(212, 165, 92, 0.8));
    }

    .logo:hover::before {
      width: 110%;
      height: 110%;
      filter: blur(26px);
      background: radial-gradient(
        circle,
        rgba(255, 220, 140, 0.92) 0%,
        rgba(212, 165, 92, 0.52) 45%,
        rgba(212, 165, 92, 0.2) 64%,
        rgba(212, 165, 92, 0) 84%
      );
    }

    .logo img {
      width: clamp(120px, 18vw, 240px);
      height: auto;
      display: block;
      border-radius: 0;
      transition: var(--transition);
      filter: drop-shadow(0 0 10px rgba(255, 228, 170, 0.5));
    }

    /* ===== CENTER TAGLINE WITH FADE IN ===== */
    .center-text {
      position: fixed;
      top: 10%;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      text-align: center;
      width: min(90%, 1000px);
      pointer-events: none;
      animation: fadeUp 1.2s ease forwards;
    }

    @keyframes fadeUp {
      0% { opacity: 0; transform: translate(-50%, -30%); }
      100% { opacity: 1; transform: translate(-50%, -50%); }
    }

    .center-text h1 {
      font-size: clamp(1.6rem, 3.8vw, 2.8rem);
      font-weight: 600;
      letter-spacing: -0.02em;
      margin-bottom: 0.35rem;
      line-height: 1.2;
      color: #f0ebe5;
    }

    .center-text p {
      font-size: clamp(1.2rem, 1.8vw, 1.2rem);
      color: #d4af37;
      font-weight: 300;
      letter-spacing: 2px;
      text-transform: uppercase;
      opacity: 0.9;
    }

    .card-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    position: relative;
    background: linear-gradient(145deg, rgba(15, 58, 110, 0.55), rgba(21, 124, 166, 0.32));
    box-shadow: inset 0 0 0 1px rgba(190, 241, 255, 0.32), 0 0 14px rgba(86, 208, 255, 0.22);
    overflow: hidden;
    transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
}

.card-icon::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(145, 231, 255, 0.4);
    opacity: 0.75;
    animation: icon-spin 5s linear infinite;
}

.card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #c8f4ff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px rgba(132, 231, 255, 0.45));
    z-index: 1;
}

.icon-import svg {
    stroke: #9ee9ff;
}

.icon-ecom svg {
    stroke: #b2f0ff;
}

    /* ===== SPLIT LAYOUT - FLEX WITH GAP ===== */
    .split-container {
      display: flex;
      flex-direction: row;
      min-height: 100vh;
      width: 100%;
      padding: 20px;
      gap: 20px;
      background: transparent;
    }

    /* Panel base */
    .panel {
      flex: 1;
      position: relative;
      border-radius: 40px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      padding: 0 30px clamp(100px, 18vh, 200px);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transition: var(--transition);
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255,255,240,0.15);
      cursor: pointer;
    }

    /* Zoom effect on hover */
    .panel:hover {
      transform: scale(1.02);
      box-shadow: 0 30px 60px -15px black;
    }

    /* Overlay with gradient */
    .panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
      z-index: 1;
      transition: opacity 0.4s;
    }

    /* Panel images - YOUR ACTUAL ASSETS */
    .panel-left {
      background-image:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('./import_export_1080x1080.png');
    }
    .panel-right {
      background-image:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('./ecommerce_1080x1080.png');
    }

    /* Panel-specific border glow on hover */
    .panel-left:hover {
      border: 1px solid var(--import-primary);
      box-shadow: 0 0 30px var(--import-glow);
    }
    .panel-right:hover {
      border: 1px solid var(--ecom-primary);
      box-shadow: 0 0 30px var(--ecom-glow);
    }

    /* Content container */
    .content {
      position: relative;
      z-index: 20;
      text-align: center;
      transform: translateY(0);
      transition: transform 0.5s ease;
      width: 100%;
      max-width: 480px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
    }

    .panel:hover .content {
      transform: translateY(0);
    }

    /* Panel titles */
    .content h2 {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 500;
      margin-bottom: 20px;
      color: white;
      text-shadow: 0 4px 15px rgba(0,0,0,0.8);
      letter-spacing: 2px;
      transition: var(--transition);
    }

    .panel:hover .content h2 {
      text-shadow: 0 0 20px currentColor;
    }

    /* Buttons - highly interactive */
    .content button {
      padding: 18px 48px;
      border: none;
      border-radius: 60px;
      font-weight: 700;
      font-size: 1.25rem;
      letter-spacing: 1.5px;
      cursor: pointer;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      text-transform: uppercase;
      box-shadow: 0 8px 25px rgba(0,0,0,0.5);
      border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(5px);
      width: fit-content;
      margin: 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      text-align: center;
      line-height: 1;
    }

    .panel-left .content button {
      background: linear-gradient(135deg, #ff7a18 0%, #ffb347 48%, #ffe259 100%);
      color: #f1f0f0;
    }

    .panel-right .content button {
      background: linear-gradient(135deg, #00c6ff 0%, #00e5a8 52%, #8bff57 100%);
      color: #f6f9f8;
    }

    /* Button hover effect - lift, scale, glow */
    .content button:hover {
      transform: translateY(-5px) scale(1.08);
      filter: brightness(1.2);
      box-shadow: 0 15px 40px -5px rgba(0,0,0,0.7);
    }

    .panel-left .content button:hover {
      background: linear-gradient(135deg, #ff8e2b 0%, #ffc05a 52%, #fff07a 100%);
      box-shadow: 0 0 16px rgba(183, 110, 46, 0.35);
      filter: brightness(1.08);
      color: #fffaf2;
      text-shadow: 0 1px 4px rgba(0,0,0,0.45);
    }

    .panel-right .content button:hover {
      background: linear-gradient(135deg, #20d4ff 0%, #3df7be 52%, #a6ff6a 100%);
      box-shadow: 0 0 30px var(--ecom-glow);
    }

    /* Shine effect on button */
    .content button::after {
      content: "";
      position: absolute;
      top: -50%;
      left: -60%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.5s;
      pointer-events: none;
    }

    .content button:hover::after {
      opacity: 1;
    }

    /* Description text */
    .hover-desc {
      margin-top: 0;
      color: var(--text-light);
      font-size: 1.1rem;
      font-weight: 400;
      opacity: 1;
      transform: none;
      transition: opacity 0.4s ease, transform 0.4s ease;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(10px);
      padding: 14px 28px;
      border-radius: 60px;
      display: inline-block;
      border: 1px solid rgba(255,215,140,0.3);
      pointer-events: none;
      width: auto;
      min-height: 48px;
      max-width: 90%;
      margin-left: auto;
      margin-right: auto;
      box-shadow: var(--shadow-sm);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .panel:hover .hover-desc {
      opacity: 1;
      transform: none;
    }

    @keyframes fade-rise {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes inner-line-rotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    .glass-panel {
      position: relative;
      background: rgba(7, 17, 36, 0.45);
      border: 1px solid rgba(174, 233, 255, 0.24);
      border-radius: 18px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
      backdrop-filter: blur(9px);
      -webkit-backdrop-filter: blur(9px);
      animation: fade-rise 700ms ease both;
    }

    .glass-panel::after {
      content: "";
      position: absolute;
      inset: 6px;
      border-radius: 12px;
      padding: 1px;
      background: conic-gradient(
        from 0deg,
        rgba(140, 235, 255, 0),
        rgba(140, 235, 255, 0.92),
        rgba(140, 235, 255, 0)
      );
      opacity: 0.8;
      pointer-events: none;
      z-index: 1;
      animation: inner-line-rotate 5s linear infinite;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
    }

    .division-card {
      position: relative;
      overflow: hidden;
      transform: translateY(-7px) scale(1.02) rotateX(2deg) rotateY(-2deg);
      box-shadow: 0 20px 44px rgba(0, 0, 0, 0.46), 0 0 22px rgba(118, 224, 255, 0.24);
      border-color: rgba(188, 243, 255, 0.45);
      max-height: 460px;
      background: linear-gradient(135deg, rgba(14, 70, 131, 0.72), rgba(27, 142, 191, 0.58));
    }

    .division-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: 18px;
      padding: 1px;
      background: conic-gradient(
        from 0deg,
        rgba(122, 232, 255, 0),
        rgba(122, 232, 255, 0.85),
        rgba(122, 232, 255, 0)
      );
      opacity: 0;
      transition: opacity 320ms ease;
      z-index: 2;
      pointer-events: none;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
    }

    .panel:hover .division-card::before {
      opacity: 1;
    }

    /* ===== FLOATING CONTACT BUTTONS - GLASSMORPHISM ===== */
    .contact-float {
      position: fixed;
      bottom: 35px;
      width: 65px;
      height: 65px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      background: rgba(25,25,25,0.75);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,200,0.2);
      box-shadow: 0 15px 30px rgba(0,0,0,0.5);
      transition: var(--transition);
      z-index: 200;
      color: white;
    }

    .contact-float::before {
      content: "";
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      border: 2px solid rgba(212, 175, 55, 0.85);
      box-shadow: 0 0 12px rgba(212, 175, 55, 0.65);
      pointer-events: none;
      transition: var(--transition);
    }

    .contact-float:hover {
      transform: translateY(-10px) scale(1.15);
      border-color: var(--gold);
      box-shadow: 0 20px 40px rgba(0,0,0,0.7), 0 0 20px var(--gold);
    }

    .contact-float:hover::before {
      transform: scale(1.08);
    }

    .contact-float svg {
      width: 32px;
      height: 32px;
      fill: white;
      transition: fill 0.3s;
    }

    .contact-float:hover svg {
      fill: var(--gold);
    }

    .phone-float {
      left: 35px;
      background: #1e88e5;
    }
    .phone-float::before {
      border-color: rgba(212, 175, 55, 0.9);
      box-shadow: 0 0 14px rgba(212, 175, 55, 0.75), 0 0 24px rgba(212, 175, 55, 0.5);
    }

    .whatsapp-float {
      right: 35px;
      background: #25d366;
    }
    .whatsapp-float::before {
      border-color: rgba(212, 175, 55, 0.9);
      box-shadow: 0 0 14px rgba(212, 175, 55, 0.75), 0 0 24px rgba(212, 175, 55, 0.5);
    }

    /* ===== RESPONSIVE DESIGN - FLAWLESS ===== */
    @media (max-width: 900px) {
      .split-container {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
        min-height: 100svh;
      }

      .panel {
        height: 50svh;
        padding-bottom: 60px;
        border-radius: 35px;
        flex: none;
      }

      .panel:hover {
        transform: scale(1.01);
      }

      /* Adjust content position higher on mobile */
      .content {
        transform: translateY(0);
      }

      .panel:hover .content {
        transform: translateY(0);
      }

      .content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
      }

      .content button {
        padding: 14px 36px;
        font-size: 1.1rem;
      }

      .hover-desc {
        font-size: 0.95rem;
        padding: 10px 20px;
      }

      .center-text {
        top: 110px;
        transform: translateX(-48%);
        width: 95%;
      }

      .logo {
        top: 15px;
        left: 20px;
        transform: none;
      }

      .logo:hover {
        transform: scale(1.05);
      }

      .logo img {
        width: 85px;
      }

      .contact-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
      }

      .phone-float { left: 20px; }
      .whatsapp-float { right: 20px; }
    }

    @media (max-width: 600px) {
      .panel {
        border-radius: 28px;
        padding: 0 15px 50px;
      }

      .content {
        transform: translateY(0);
      }

      .panel:hover .content {
        transform: translateY(0);
      }

      .content h2 {
        font-size: 1.8rem;
      }

      .content button {
        padding: 12px 30px;
        font-size: 1rem;
      }

      .hover-desc {
        font-size: 0.85rem;
        padding: 8px 16px;
      }

      .center-text {
        top: 109px;
      }

      .center-text h1 {
        font-size: 1.6rem;
        margin-top: 14px;
      }

      .center-text p {
        font-size: 1rem;
        letter-spacing: 2px;
      }

      .contact-float {
        width: 50px;
        height: 50px;
      }

      .contact-float svg {
        width: 26px;
        height: 26px;
      }
    }

    /* Touch devices - ensure hover effects work with tap */
    @media (hover: hover) {
      .panel:hover {
        transform: scale(1.02);
      }
    }

    /* For devices that don't support hover, use active */
    .panel:active {
      transform: scale(1.02);
    }

    /* Accessibility */
    .content button:focus-visible {
      outline: 3px solid var(--gold);
      outline-offset: 4px;
    }
