
    /* ===== CSS VARIABLES FOR RESPONSIVE DESIGN ===== */
    :root {
      /* Color Variables */
      --primary-color: #2563eb;
      --primary-dark: #1e40af;
      --secondary-color: #10b981;
      --accent-color: #3b82f6;
      --dark-bg: #0f172a;
      --light-bg: #f8fafc;
      --text-dark: #1e293b;
      --text-light: #64748b;
      --text-lighter: #94a3b8;
      --white: #ffffff;
      --border-color: #e2e8f0;

      /* Spacing Variables */
      --space-xs: 0.8rem;
      --space-sm: 1rem;
      --space-md: 1.5rem;
      --space-lg: 2rem;
      --space-xl: 3rem;
      --space-xxl: 5rem;

      /* Typography Variables */
      --font-size-xs: 0.75rem;
      --font-size-sm: 0.875rem;
      --font-size-base: 1rem;
      --font-size-lg: 1.125rem;
      --font-size-xl: 1.25rem;
      --font-size-xxl: 1.5rem;
      --font-size-xxxl: 2rem;

      /* Border Radius Variables */
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-xl: 20px;
      --radius-full: 50px;

      /* Shadow Variables */
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
      --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
      --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);

      /* Transition Variables */
      --transition-fast: 0.2s ease;
      --transition-base: 0.3s ease;
      --transition-slow: 0.5s ease;

      /* Container Max Widths */
      --container-sm: 100%;
      --container-md: 720px;
      --container-lg: 960px;
      --container-xl: 1140px;
      --container-xxl: 1320px;
      --container-ultra: 1600px;
    }

    /* ===== BASE STYLES ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      font-size: 16px;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: var(--light-bg);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* ===== RESPONSIVE TYPOGRAPHY ===== */
    h1,
    .h1 {
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.2;
    }

    h2,
    .h2 {
      font-size: clamp(1.75rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.3;
    }

    h3,
    .h3 {
      font-size: clamp(1.5rem, 3vw, 2.25rem);
      font-weight: 600;
      line-height: 1.4;
    }

    h4,
    .h4 {
      font-size: clamp(1.25rem, 2.5vw, 1.75rem);
      font-weight: 600;
      line-height: 1.4;
    }

    h5,
    .h5 {
      font-size: clamp(1.125rem, 2vw, 1.5rem);
      font-weight: 600;
      line-height: 1.4;
    }

    h6,
    .h6 {
      font-size: clamp(1rem, 1.5vw, 1.25rem);
      font-weight: 600;
      line-height: 1.4;
    }

    p {
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      margin-bottom: var(--space-sm);
    }

    .lead {
      font-size: clamp(1rem, 2vw, 1.25rem);
      font-weight: 500;
      line-height: 1.6;
    }

    .small {
      font-size: clamp(0.75rem, 1.25vw, 0.875rem);
    }

    /* ===== RESPONSIVE CONTAINERS ===== */
    .container {
      width: 100%;
      padding-right: var(--space-md);
      padding-left: var(--space-md);
      margin-right: auto;
      margin-left: auto;
    }

    .vertical-divider {
  border-right: 1px solid #ccc;
}



    /* Mobile First - Default */
    @media (min-width: 320px) {
      .container {
        max-width: var(--container-sm);
      }
    }

    /* Small devices (landscape phones, 576px and up) */
    @media (min-width: 576px) {
      .container {
        max-width: 540px;
      }
    }

    /* Medium devices (tablets, 768px and up) */
    @media (min-width: 768px) {
      .container {
        max-width: 720px;
      }
    }

    /* Large devices (desktops, 992px and up) */
    @media (min-width: 992px) {
      .container {
        max-width: 960px;
      }
    }

    /* X-Large devices (large desktops, 1200px and up) */
    @media (min-width: 1200px) {
      .container {
        max-width: 1140px;
      }
    }

    /* XX-Large devices (1920px and up) */
    @media (min-width: 1400px) {
      .container {
        max-width: 1320px;
      }
    }

    /* Ultra Wide devices (1920px and up) */
    @media (min-width: 1920px) {
      .container {
        max-width: 1600px;
        padding-right: 2rem;
        padding-left: 2rem;
      }

      body {
        font-size: 1.125rem;
      }

      .lead {
        font-size: 1.375rem;
      }
    }

    /* ===== RESPONSIVE NAVBAR ===== */
    .navbar {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      box-shadow: var(--shadow-sm);
      padding: var(--space-sm) 0;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: var(--transition-base);
    }

    .navbar.scrolled {
      padding: var(--space-xs) 0;
    }

    .navbar-brand {
      font-weight: 800;
      font-size: clamp(1.25rem, 3vw, 1.5rem);
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: flex;
      align-items: center;
      gap: var(--space-xs);
    }

    .navbar-toggler {
      border: none;
      padding: var(--space-xs);
      font-size: 1.25rem;
    }

    .navbar-nav {
      gap: var(--space-sm);
    }

    .nav-link {
      font-weight: 500;
      color: var(--text-dark) !important;
      padding: var(--space-xs) var(--space-sm) !important;
      border-radius: var(--radius-md);
      transition: var(--transition-base);
      position: relative;
      white-space: nowrap;
    }

    .nav-link:hover {
      background: rgba(37, 99, 235, 0.1);
    }

    .nav-link.active {
      background: var(--primary-color);
      color: white !important;
    }

    .navbar .btn {
      padding: 0.5rem 1.5rem;
      font-size: 0.875rem;
      border-radius: var(--radius-full);
    }

    @media (max-width: 991.98px) {
      .navbar-collapse {
        background: white;
        padding: var(--space-md);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        margin-top: var(--space-sm);
      }

      .navbar-nav {
        gap: var(--space-xs);
      }

      .nav-item:last-child {
        margin-top: var(--space-sm);
      }
    }

    /* ===== RESPONSIVE HERO SECTION ===== */
    .hero {
      background: linear-gradient(135deg, var(--dark-bg) 0%, #1e3a8a 100%);
      color: white;
      padding: clamp(6rem, 12vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
      position: relative;
      overflow: hidden;
      margin-top: 60px;
    }

    @media (min-width: 768px) {
      .hero {
        margin-top: 70px;
      }
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background:
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      padding: clamp(0.375rem, 1vw, 0.5rem) clamp(1rem, 2vw, 1.5rem);
      border-radius: var(--radius-full);
      font-weight: 600;
      font-size: clamp(0.75rem, 1.5vw, 0.9rem);
      display: inline-flex;
      align-items: center;
      gap: var(--space-xs);
      margin-bottom: clamp(1rem, 3vw, 1.5rem);
    }

    .hero-title {
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: clamp(1rem, 3vw, 1.5rem);
      background: linear-gradient(to right, #ffffff, #cbd5e1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: #cbd5e1;
      max-width: 600px;
      margin: 0 auto clamp(2rem, 5vw, 3rem);
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-sm);
      justify-content: center;
      margin-bottom: clamp(2rem, 5vw, 3rem);
    }

    .hero-buttons .btn {
      padding: clamp(0.75rem, 1.5vw, 1rem) clamp(2rem, 4vw, 3rem);
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      border-radius: var(--radius-full);
      min-width: 150px;
    }

    .hero-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: clamp(1rem, 2vw, 1.5rem);
      margin-top: clamp(2rem, 5vw, 3rem);
    }

    @media (max-width: 576px) {
      .hero-cards {
        grid-template-columns: 1fr;
      }
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius-lg);
      padding: clamp(1.25rem, 3vw, 1.5rem);
      text-align: center;
      transition: var(--transition-base);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .hero-card:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-5px);
    }

    .hero-card i {
      font-size: clamp(1.5rem, 3vw, 2rem);
      margin-bottom: var(--space-sm);
      color: var(--secondary-color);
    }

    .hero-card h6 {
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      margin-bottom: var(--space-xs);
    }

    /* ===== RESPONSIVE SECTIONS ===== */
    section {
      padding: clamp(3rem, 6vw, 5rem) 0;
    }

    .section-title {
      font-size: clamp(1.75rem, 4vw, 3rem);
      font-weight: 800;
      margin-bottom: clamp(0.75rem, 2vw, 1rem);
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      width: clamp(40px, 8vw, 60px);
      height: clamp(3px, 0.5vw, 4px);
      background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .section-subtitle {
      color: var(--text-light);
      font-size: clamp(0.875rem, 1.5vw, 1.1rem);
      max-width: 600px;
      margin: 0 auto clamp(2rem, 5vw, 3rem);
    }

    /* ===== RESPONSIVE WORK CARDS ===== */
    .work-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: clamp(1rem, 2vw, 1.5rem);
    }

    @media (max-width: 768px) {
      .work-cards {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .work-cards {
        grid-template-columns: 1fr;
      }
    }

    @media (min-width: 1920px) {
      .work-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
      }
    }

    .work-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: clamp(1.5rem, 3vw, 2rem);
      box-shadow: var(--shadow-md);
      transition: var(--transition-base);
      border: 1px solid var(--border-color);
      position: relative;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .work-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    }

    .work-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

    .work-card i {
      font-size: clamp(2rem, 4vw, 2.5rem);
      margin-bottom: clamp(1rem, 2vw, 1.5rem);
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .step-number {
      position: absolute;
      top: clamp(0.5rem, 1vw, 1rem);
      right: clamp(0.5rem, 1vw, 1rem);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: rgba(0, 0, 0, 0.05);
    }

    /* ===== RESPONSIVE PRODUCT CARDS ===== */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: clamp(1rem, 2vw, 1.5rem);
    }

    @media (min-width: 1920px) {
      .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
      }
    }

    .product-card {
      background: white;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: var(--transition-base);
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

    .product-img-container {
      position: relative;
      overflow: hidden;
      height: clamp(180px, 25vw, 220px);
    }

    .product-img {
      /*width: 100%;*/
      /*height: 100%;*/
      object-fit: cover;
      transition: var(--transition-base);
    }

    .product-card:hover .product-img {
      transform: scale(1.05);
    }

    .product-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
      padding: clamp(0.75rem, 1.5vw, 1rem);
      transform: translateY(100%);
      transition: var(--transition-base);
    }

    .product-card:hover .product-overlay {
      transform: translateY(0);
    }

    .product-content {
      padding: clamp(1rem, 2vw, 1.5rem);
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    /* ===== RESPONSIVE ABOUT SECTION ===== */
    .about-section {
      background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
      position: relative;
      overflow: hidden;
    }

    .about-content {
      background: white;
      border-radius: var(--radius-xl);
      padding: clamp(1.5rem, 3vw, 3rem);
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }

    .about-content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(2rem, 4vw, 3rem);
      align-items: center;
    }

    @media (min-width: 992px) {
      .about-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(1rem, 2vw, 1.5rem);
      margin-top: clamp(1.5rem, 3vw, 2rem);
    }

    @media (max-width: 576px) {
      .about-stats {
        grid-template-columns: 1fr;
      }
    }

    @media (min-width: 768px) and (max-width: 991.98px) {
      .about-stats {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .stat-item {
      text-align: center;
      padding: clamp(1rem, 2vw, 1.5rem);
      background: var(--light-bg);
      border-radius: var(--radius-lg);
      transition: var(--transition-base);
    }

    .stat-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .stat-number {
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: var(--space-xs);
    }

    /* ===== RESPONSIVE CTA SECTION ===== */
   .cta-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin: clamp(2rem, 4vw, 4rem) auto;
  max-width: 1400px;
  /* Add this to prevent click interference */
  pointer-events: none;
}
/* Re-enable pointer events for content inside */
.cta-wrapper,
.cta-content,
.form-control,
.cta-button {
  pointer-events: auto;
}

    @media (min-width: 1920px) {
      .cta-section {
        max-width: 1600px;
        margin: 5rem auto;
      }
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
      background-size: 50px 50px;
      animation: float 20s linear infinite;
    }

    @keyframes float {
      0% {
        transform: translate(0, 0) rotate(0deg);
      }

      100% {
        transform: translate(-50px, -50px) rotate(360deg);
      }
    }

    .cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  /* padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem); */
  margin: 0; /* Ensure no margin interference */
}

    .cta-title {
      font-size: clamp(1.75rem, 4vw, 3rem);
      font-weight: 800;
      margin-bottom: clamp(1rem, 2vw, 1.5rem);
      color: white;
    }

    .cta-subtitle {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: #cbd5e1;
      max-width: 700px;
      margin: 0 auto clamp(2rem, 4vw, 3rem);
    }

  
    .cta-features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: clamp(1rem, 2vw, 1.5rem);
      margin-top: clamp(1.5rem, 3vw, 2rem);
      color: #94a3b8;
      font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    }

    .cta-features span {
      display: flex;
      align-items: center;
      gap: var(--space-xs);
      white-space: nowrap;
    }

    /* ===== RESPONSIVE FOOTER ===== */
    footer {
      background: var(--dark-bg);
      color: #cbd5e1;
      padding: clamp(3rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(2rem, 4vw, 3rem);
    }

    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 992px) {
      .footer-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .footer-logo {
      font-size: clamp(1.5rem, 3vw, 1.8rem);
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: var(--space-md);
      display: flex;
      align-items: center;
      gap: var(--space-xs);
    }

    .footer-links h6 {
      color: white;
      font-weight: 600;
      margin-bottom: clamp(1rem, 2vw, 1.5rem);
      font-size: clamp(1rem, 1.5vw, 1.1rem);
    }

    .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      transition: var(--transition-base);
      display: block;
      margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
      padding: 0.25rem 0;
    }

    .footer-links a:hover {
      color: var(--secondary-color);
      transform: translateX(5px);
    }

    .footer-contact p {
      display: flex;
      align-items: flex-start;
      gap: var(--space-sm);
      margin-bottom: var(--space-sm);
    }

    .footer-contact i {
      margin-top: 0.25rem;
      flex-shrink: 0;
    }

    .social-icons {
      display: flex;
      gap: clamp(0.75rem, 1.5vw, 1rem);
      margin-top: var(--space-md);
      flex-wrap: wrap;
    }

    .social-icons a {
      width: clamp(36px, 4vw, 40px);
      height: clamp(36px, 4vw, 40px);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: var(--transition-base);
      font-size: clamp(1rem, 1.5vw, 1.1rem);
    }

    .social-icons a:hover {
      background: var(--primary-color);
      transform: translateY(-3px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: clamp(1.5rem, 3vw, 2rem);
      margin-top: clamp(2rem, 4vw, 3rem);
      text-align: center;
      color: #94a3b8;
      font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    }

    .footer-bottom a {
      color: var(--secondary-color);
      text-decoration: none;
      transition: var(--transition-base);
    }

    .footer-bottom a:hover {
      text-decoration: underline;
    }

    /* ===== RESPONSIVE UTILITY CLASSES ===== */
    .text-center {
      text-align: center;
    }

    .mb-0 {
      margin-bottom: 0 !important;
    }

    .mb-1 {
      margin-bottom: 0.25rem !important;
    }

    .mb-2 {
      margin-bottom: 0.5rem !important;
    }

    .mb-3 {
      margin-bottom: 1rem !important;
    }

    .mb-4 {
      margin-bottom: 1.5rem !important;
    }

    .mb-5 {
      margin-bottom: 3rem !important;
    }

    .mt-0 {
      margin-top: 0 !important;
    }

    .mt-1 {
      margin-top: 0.25rem !important;
    }

    .mt-2 {
      margin-top: 0.5rem !important;
    }

    .mt-3 {
      margin-top: 1rem !important;
    }

    .mt-4 {
      margin-top: 1.5rem !important;
    }

    .mt-5 {
      margin-top: 3rem !important;
    }

    .px-1 {
      padding-left: 0.25rem !important;
      padding-right: 0.25rem !important;
    }

    .px-2 {
      padding-left: 0.5rem !important;
      padding-right: 0.5rem !important;
    }

    .px-3 {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
    }

    .px-4 {
      padding-left: 1.5rem !important;
      padding-right: 1.5rem !important;
    }

    .px-5 {
      padding-left: 3rem !important;
      padding-right: 3rem !important;
    }

    .py-1 {
      padding-top: 0.25rem !important;
      padding-bottom: 0.25rem !important;
    }

    .py-2 {
      padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important;
    }

    .py-3 {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important;
    }

    .py-4 {
      padding-top: 1.5rem !important;
      padding-bottom: 1.5rem !important;
    }

    .py-5 {
      padding-top: 3rem !important;
      padding-bottom: 3rem !important;
    }

    /* ===== RESPONSIVE BUTTONS ===== */
    .btn {
      padding: 0.5rem 1.5rem;
      border-radius: var(--radius-full);
      font-weight: 500;
      transition: var(--transition-base);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-lg {
      padding: 0.75rem 2rem;
      font-size: 1rem;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
      border: none;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    }

    .btn-outline-light {
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .btn-outline-light:hover {
      background: white;
      color: var(--dark-bg) !important;
      border-color: white;
    }

    /* ===== ANIMATIONS ===== */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== 1920*1080 SPECIFIC STYLES ===== */
    @media (min-width: 1920px) {
      .hero {
        padding: 10rem 0 6rem;
      }

      .section-title {
        font-size: 3.5rem;
      }

      .section-subtitle {
        font-size: 1.25rem;
      }

      .work-card {
        padding: 2.5rem;
      }

      .product-img-container {
        height: 250px;
      }

      .about-content {
        padding: 4rem;
      }

      .stat-item {
        padding: 2rem;
      }

      .stat-number {
        font-size: 3rem;
      }

      .cta-content {
       
      }

      .cta-title {
        font-size: 3.5rem;
      }

      .cta-subtitle {
        font-size: 1.5rem;
        max-width: 800px;
      }

      footer {
        padding: 5rem 0 2.5rem;
      }
    }

    /* ===== PRINT STYLES ===== */
    @media print {

      .navbar,
      .hero-buttons,
      .social-icons,
      .cta-section,
      footer {
        display: none !important;
      }

      body {
        background: white !important;
        color: black !important;
        font-size: 12pt !important;
      }

      .container {
        max-width: 100% !important;
        padding: 0 !important;
      }

      section {
        padding: 1rem 0 !important;
        break-inside: avoid;
      }
    }
      .footer-dark {
      background: linear-gradient(135deg, #0f172a, #020617);
      color: #cbd5f5;
    }

    .footer-card {
      background: rgba(255, 255, 255, 0.05);
      padding: 25px;
      border-radius: 14px;
      height: 100%;
    }

    .footer-card h5,
    .footer-card h6 {
      color: #ffffff;
    }

    .footer-list {
      list-style: none;
      padding: 0;
    }

    .footer-list li {
      margin-bottom: 8px;
    }

    .footer-list a {
      color: #cbd5f5;
      text-decoration: none;
    }

    .footer-list a:hover {
      color: #38bdf8;
    }

    .social-icons a {
      font-size: 1.2rem;
      margin-right: 12px;
      color: #cbd5f5;
    }

    .social-icons a:hover {
      color: #38bdf8;
    }



.cta-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
}

/* LEFT SIDE */
.cta-title {
  font-size: 2rem;
  font-weight: 700;
}

.cta-subtitle {
  opacity: 0.9;
  margin-bottom: 25px;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.contact-info i {
  margin-right: 10px;
  color: #2ecc71;
}

.contact-info  {
  color: #cbd5e1
  /* text-decoration: none; */
}

/* VERTICAL DIVIDER */
.vertical-divider {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
}

/* RIGHT SIDE */
.form-title {
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
}

.form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
  border-color: #2ecc71;
  box-shadow: none;
}

/* BUTTON */
.cta-button {
  background: #2ecc71;
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #27ae60;
}

/* MOBILE */
@media (max-width: 991px) {
  .vertical-divider {
    display: none;
  }

  .cta-wrapper {
    padding: 25px;
  }
}

.load-more-card {
  display: none;
}