 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: "Inter", sans-serif;
     background: #ffffff;
     color: #0b1120;
     overflow-x: hidden;
     scroll-behavior: smooth;
 }

 /* container - consistent width */
 .container {
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 28px;
 }

 /* ===== TOP HEADER (Dark) ===== */
 .top-header {
     background: #07101f;
     color: #b9c3db;
     font-size: 0.75rem;
     padding: 10px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.06);
 }

 .top-header .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 12px;
 }

 .top-contact {
     display: flex;
     flex-wrap: wrap;
     gap: 24px;
 }

 .top-contact a,
 .top-contact span {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     color: #b9c3db;
     text-decoration: none;
     font-weight: 450;
     transition: 0.2s;
 }

 .top-contact a:hover {
     color: #60a5fa;
 }

 .top-social a {
     color: #9aa9c1;
     margin-left: 20px;
     font-size: 0.85rem;
     transition: 0.2s;
 }

 .top-social a:hover {
     color: white;
 }

 /* ===== NAVBAR (Sticky Dark) ===== */
 .navbar {
     background: #0a1224;
     position: sticky;
     top: 0;
     z-index: 200;
     padding: 14px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.06);
     backdrop-filter: blur(0px);
 }

 .nav-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 24px;
 }

 .logo h1 {
     font-size: 1.65rem;
     font-weight: 800;
     letter-spacing: -0.02em;
     color: white;
     line-height: 1.2;
 }

 .logo span {
     color: #3b82f6;
 }

 .logo p {
     font-size: 0.6rem;
     letter-spacing: 0.2em;
     color: #8da0bc;
     font-weight: 500;
     margin-top: 4px;
 }

 .nav-links {
     display: flex;
     gap: 32px;
     list-style: none;
 }

 .nav-links a {
     color: #e2e8f0;
     font-weight: 500;
     font-size: 0.9rem;
     text-decoration: none;
     transition: 0.2s;
 }

 .nav-links a:hover {
     color: #60a5fa;
 }

 .nav-buttons {
     display: flex;
     gap: 12px;
 }

 .btn-outline-light {
     background: transparent;
     border: 1px solid #2c3b5a;
     color: #cbd5e6;
     padding: 8px 18px;
     border-radius: 60px;
     font-weight: 600;
     font-size: 0.8rem;
     cursor: pointer;
     transition: 0.2s;
 }

 .btn-outline-light:hover {
     border-color: #3b82f6;
     background: rgba(59, 130, 246, 0.1);
     color: white;
 }

 .btn-primary-glow {
     background: linear-gradient(100deg, #2563eb, #3b82f6);
     border: none;
     color: white;
     padding: 8px 24px;
     border-radius: 60px;
     font-weight: 600;
     font-size: 0.8rem;
     cursor: pointer;
     box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
     transition: 0.25s;
 }

 .btn-primary-glow:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
 }

 .hamburger {
     display: none;
     color: white;
     font-size: 1.6rem;
     cursor: pointer;
 }

 .mobile-nav {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     background: #0a1224;
     z-index: 999;
     padding: 100px 28px 32px;
     transform: translateY(-100%);
     transition: 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
     backdrop-filter: blur(16px);
 }

 .mobile-nav.open {
     transform: translateY(0);
 }

 .mobile-nav a {
     display: block;
     padding: 16px 0;
     color: #e2e8f0;
     font-weight: 500;
     border-bottom: 1px solid #1e2a45;
     text-decoration: none;
 }

 /* ===== HERO SLIDER ===== */
 .hero-slider {
     position: relative;
     width: 100%;
     height: 100vh;
     overflow: hidden;
 }

 /* TRACK */
 .hero-track {
     display: flex;
     width: 100%;
     height: 100%;
     transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
 }

 /* SLIDE */
 .hero-slide {
     flex: 0 0 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     position: relative;
 }

 /* DARK OVERLAY */
 .hero-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(110deg,
             rgba(2, 6, 23, 0.85),
             rgba(2, 6, 23, 0.4));
     z-index: 1;
 }

 /* CONTENT */
 .hero-content {
     position: absolute;
     top: 50%;
     left: 6%;
     transform: translateY(-50%);
     z-index: 2;
     color: #fff;
     max-width: 650px;
 }

 /* TEXT */
 .hero-content h2 {
     font-size: clamp(2rem, 5vw, 3.5rem);
     font-weight: 800;
     line-height: 1.2;
     margin-bottom: 18px;
 }

 .hero-content p {
     font-size: 1rem;
     opacity: 0.9;
     margin-bottom: 26px;
 }

 /* BUTTON */
 .hero-btn {
     background: linear-gradient(135deg, #2563eb, #3b82f6);
     padding: 14px 32px;
     border-radius: 40px;
     border: none;
     color: #fff;
     font-weight: 600;
     cursor: pointer;
     transition: 0.3s;
 }

 .hero-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
 }

 /* CONTROLS */
 .hero-controls {
     position: absolute;
     bottom: 30px;
     right: 30px;
     z-index: 3;
     display: flex;
     gap: 14px;
 }

 .hero-controls button {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     border: none;
     background: rgba(255, 255, 255, 0.15);
     color: #fff;
     cursor: pointer;
     backdrop-filter: blur(6px);
     transition: 0.3s;
 }

 .hero-controls button:hover {
     background: #2563eb;
 }

 /* DOTS */
 .hero-dots {
     position: absolute;
     bottom: 30px;
     left: 30px;
     display: flex;
     gap: 10px;
     z-index: 3;
 }

 .hero-dots span {
     width: 10px;
     height: 10px;
     background: rgba(255, 255, 255, 0.4);
     border-radius: 20px;
     cursor: pointer;
     transition: 0.3s;
 }

 .hero-dots span.active {
     width: 26px;
     background: #3b82f6;
 }

 /* ===== RESPONSIVE ===== */
 @media (max-width: 992px) {
     .hero-content {
         left: 5%;
         max-width: 90%;
     }
 }

 @media (max-width: 576px) {
     .hero-slider {
         height: 80vh;
     }

     .hero-content h2 {
         font-size: 1.9rem;
     }

     .hero-controls {
         bottom: 20px;
         right: 20px;
     }

     .hero-dots {
         bottom: 20px;
         left: 20px;
     }
 }

 /* GRID SYSTEM */
 .trust-grid {
     margin-top: 50px;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 25px;
 }

 /* CARD DESIGN */
 .trust-card {
     background: rgba(255, 255, 255, 0.75);
     backdrop-filter: blur(14px);
     border-radius: 18px;
     padding: 25px 20px;
     text-align: center;
     border: 5px solid rgba(226, 232, 240, 0.7);
     transition: all 0.35s ease;

     position: relative;
     overflow: hidden;
 }

 /* HOVER EFFECT */
 .trust-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 18px 40px rgba(37, 99, 235, 0.12);
     border-color: rgba(37, 99, 235, 0.2);
 }

 /* ICON BOX */
 .icon-box {
     width: 55px;
     height: 55px;
     margin: 0 auto 15px;
     border-radius: 50%;
     background: linear-gradient(135deg, #2563eb, #1e40af);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 20px;
     box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
 }

 /* TEXT */
 .trust-card h4 {
     font-size: 1.05rem;
     font-weight: 700;
     color: #0f172a;
     margin-bottom: 5px;
 }

 .trust-card p {
     font-size: 0.8rem;
     color: #64748b;
 }

 /* RESPONSIVE */
 @media (max-width: 992px) {
     .trust-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 576px) {
     .trust-grid {
         grid-template-columns: 1fr;
     }
 }

 /* Section typography */

 .section-badge {
     display: inline-block;
     background: #dbeafe;
     color: #1e40af;
     font-weight: 700;
     font-size: 0.7rem;
     letter-spacing: 0.06em;
     padding: 5px 14px;
     border-radius: 40px;
     margin-bottom: 20px;
 }

 .section-title {
     font-size: clamp(1.9rem, 4vw, 2.8rem);
     font-weight: 800;
     line-height: 1.2;
     margin-bottom: 16px;
     color: #0f172a;
 }

 .section-desc {
     color: #475569;
     max-width: 620px;
     margin-bottom: 40px;
 }

 .about-section {
     padding: 100px 0;
     background: linear-gradient(180deg, #ffffff, #f8fafc);
 }

 /* GRID */
 .about-grid {
     display: grid;
     grid-template-columns: 1.1fr 1fr;
     gap: 70px;
     align-items: center;
 }

 /* IMAGE STYLING */
 .img-wrapper {
     position: relative;
     border-radius: 28px;
     overflow: hidden;
 }

 .img-wrapper img {
     width: 100%;
     display: block;
     border-radius: 28px;
     transition: transform 0.6s ease;
 }

 /* IMAGE HOVER ZOOM */
 .img-wrapper:hover img {
     transform: scale(1.05);
 }

 /* GLOW BACKGROUND EFFECT */
 .img-wrapper::after {
     content: "";
     position: absolute;
     inset: 0;
     border-radius: 28px;
     background: linear-gradient(120deg,
             rgba(37, 99, 235, 0.2),
             transparent);
     opacity: 0;
     transition: 0.4s;
 }

 .img-wrapper:hover::after {
     opacity: 1;
 }

 /* CONTENT */
 .about-content {
     max-width: 520px;
 }

 /* TITLE */
 .section-title span {
     color: #2563eb;
 }

 /* POINTS */
 .about-points {
     display: flex;
     flex-direction: column;
     gap: 24px;
     margin: 35px 0;
 }

 /* POINT ITEM */
 .point {
     display: flex;
     gap: 16px;
     align-items: flex-start;
     padding: 14px 18px;
     border-radius: 14px;
     transition: 0.3s;
 }

 /* HOVER CARD EFFECT */
 .point:hover {
     background: #f1f5ff;
     transform: translateX(6px);
 }

 /* ICON STYLE */
 .point-icon {
     min-width: 48px;
     height: 48px;
     border-radius: 14px;
     background: linear-gradient(135deg, #2563eb, #1e40af);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 18px;
     box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
 }

 /* TEXT */
 .point h4 {
     margin: 0;
     font-size: 1rem;
     font-weight: 700;
     color: #0f172a;
 }

 .point p {
     margin: 4px 0 0;
     font-size: 0.85rem;
     color: #64748b;
 }

 /* RESPONSIVE */
 @media (max-width: 992px) {
     .about-grid {
         grid-template-columns: 1fr;
         gap: 50px;
     }

     .about-content {
         max-width: 100%;
     }
 }

 @media (max-width: 576px) {
     .about-section {
         padding: 70px 0;
     }
 }

 /* Services grid with images (fixed alignment) */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
     gap: 32px;
 }

 .service-card {
     background: white;
     border-radius: 28px;
     overflow: hidden;
     box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.07);
     transition: all 0.3s ease;
 }

 .service-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 24px 40px -14px rgba(0, 0, 0, 0.12);
 }

 .service-img {
     height: 210px;
     width: 100%;
     object-fit: cover;
     transition: 0.4s;
 }

 .service-card:hover .service-img {
     transform: scale(1.03);
 }

 .service-content {
     padding: 26px 26px 32px;
 }

 .service-icon {
     font-size: 2rem;
     margin-bottom: 12px;
 }

 .service-title {
     font-size: 1.3rem;
     font-weight: 700;
     margin-bottom: 12px;
 }

 /* Products grid */
 .products-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 32px;
 }

 .product-card {
     background: white;
     border-radius: 28px;
     overflow: hidden;
     box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.08);
     transition: 0.2s;
 }

 .product-img {
     height: 230px;
     width: 100%;
     object-fit: cover;
 }

 .product-body {
     padding: 24px;
 }

 .product-specs {
     display: flex;
     gap: 24px;
     margin-top: 18px;
     padding-top: 12px;
     border-top: 1px solid #edf2f7;
 }

 /* Features grid */
 .features-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1px;
     background: #e2e8f0;
     border-radius: 32px;
     overflow: hidden;
     margin-top: 24px;
 }

 .feature-item {
     background: white;
     padding: 40px 28px;
     transition: 0.2s;
 }

 .feature-item i {
     font-size: 2rem;
     color: #2563eb;
     margin-bottom: 20px;
 }

 /* Stats Grid */
 .stats-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1px;
     background: #e2e8f0;
     border-radius: 32px;
     overflow: hidden;
 }

 .stat-card {
     background: white;
     padding: 44px 20px;
     text-align: center;
 }

 .stat-number {
     font-size: 2.8rem;
     font-weight: 800;
     color: #0f172a;
     line-height: 1;
 }

 .stat-number span {
     font-size: 1.6rem;
     color: #3b82f6;
     font-weight: 700;
 }

 /* SECTION BG */
 .contact-section {
     padding: 100px 0;
     background: linear-gradient(180deg, #f8fafc, #ffffff);
 }

 /* GRID */
 .contact-layout {
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 60px;
     align-items: start;
 }

 /* LEFT SIDE */
 .contact-info {
     padding: 40px;
     border-radius: 28px;
     background: rgba(255, 255, 255, 0.6);
     backdrop-filter: blur(16px);
     border: 1px solid rgba(226, 232, 240, 0.6);
 }

 /* INFO CARD */
 .info-card {
     margin-top: 25px;
     display: flex;
     flex-direction: column;
     gap: 14px;
 }

 .info-card p {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 0.9rem;
     color: #334155;
 }

 .info-card i {
     width: 38px;
     height: 38px;
     background: #eef2ff;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #2563eb;
 }

 /* CONSULT BOX */
 .consult-box {
     margin-top: 30px;
     padding: 16px 18px;
     border-radius: 14px;
     background: linear-gradient(135deg, #2563eb, #1e40af);
     color: #fff;
     display: flex;
     align-items: center;
     gap: 10px;
     font-weight: 500;
     box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
 }

 /* FORM */
 .contact-form {
     padding: 40px;
     border-radius: 28px;
     background: #ffffff;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
 }

 .contact-form h3 {
     font-size: 1.4rem;
     font-weight: 800;
     margin-bottom: 20px;
 }

 /* INPUT GRID */
 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
 }

 /* INPUT STYLE */
 input,
 select,
 textarea {
     width: 100%;
     padding: 14px 16px;
     margin-top: 12px;
     border: 1.5px solid #e2e8f0;
     border-radius: 14px;
     font-family: "Inter", sans-serif;
     font-size: 0.9rem;
     transition: all 0.25s ease;
     background: #f9fafb;
 }

 /* FOCUS EFFECT */
 input:focus,
 select:focus,
 textarea:focus {
     outline: none;
     border-color: #2563eb;
     background: #fff;
     box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
 }

 /* BUTTON FULL WIDTH */
 .btn-block {
     width: 100%;
     margin-top: 20px;
 }

 /* RESPONSIVE */
 @media (max-width: 992px) {
     .contact-layout {
         grid-template-columns: 1fr;
         gap: 40px;
     }
 }

 @media (max-width: 576px) {
     .form-row {
         grid-template-columns: 1fr;
     }

     .contact-section {
         padding: 70px 0;
     }
 }

 /* FOOTER BASE */
 .footer {
     background: radial-gradient(circle at top, #0b1426, #050a16);
     color: #cbd5f5;
     padding: 70px 0 30px;
     position: relative;
     overflow: hidden;
 }

 /* SUBTLE GLOW LINE */
 .footer::before {
     content: "";
     position: absolute;
     top: 0;
     left: 50%;
     width: 80%;
     height: 1px;
     background: linear-gradient(to right,
             transparent,
             #2563eb,
             transparent);
     transform: translateX(-50%);
     opacity: 0.4;
 }

 /* GRID */
 .footer-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 50px;
     margin-bottom: 40px;
 }

 /* BRAND */
 .footer-brand h3 {
     color: #fff;
     font-size: 1.6rem;
     font-weight: 800;
 }

 .footer-sub {
     font-size: 0.85rem;
     color: #94a3b8;
     margin-top: 6px;
 }

 .footer-desc {
     margin-top: 12px;
     font-size: 0.85rem;
     color: #94a3b8;
     line-height: 1.6;
 }

 /* HEADINGS */
 .footer h4 {
     color: #fff;
     font-size: 0.95rem;
     margin-bottom: 16px;
     position: relative;
 }

 /* LINKS */
 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 10px;
     font-size: 0.85rem;
 }

 /* LINK STYLE */
 .footer-links a {
     color: #94a3b8;
     text-decoration: none;
     transition: 0.3s;
     position: relative;
 }

 /* HOVER EFFECT */
 .footer-links a:hover {
     color: #2563eb;
     padding-left: 6px;
 }

 /* BOTTOM */
 .footer-bottom {
     border-top: 1px solid rgba(148, 163, 184, 0.15);
     padding-top: 20px;
     text-align: center;
     font-size: 0.75rem;
     color: #64748b;
 }

 /* RESPONSIVE */
 @media (max-width: 992px) {
     .footer-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 40px;
     }
 }

 @media (max-width: 576px) {
     .footer-grid {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .footer-links a:hover {
         padding-left: 0;
     }
 }

 /* Reveal animation */
 .reveal {
     opacity: 0;
     transform: translateY(35px);
     transition: 0.65s cubic-bezier(0.2, 0.9, 0.3, 1.1);
 }

 .reveal.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* Responsive fixes */
 @media (max-width: 1000px) {

     .nav-links,
     .nav-buttons {
         display: none;
     }

     .hamburger {
         display: block;
     }

     .about-grid,
     .contact-layout,
     .products-grid {
         grid-template-columns: 1fr;
     }

     .features-grid,
     .stats-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .slider-container {
         height: 100vh;
         min-height: 480px;
     }

     .slide-content {
         bottom: 18%;
         margin-left: 4%;
     }
 }

 @media (max-width: 680px) {

     .stats-grid,
     .features-grid {
         grid-template-columns: 1fr;
     }

     .top-contact {
         gap: 14px;
         font-size: 0.7rem;
     }

     .trust-flex {
         gap: 16px;
     }

     .container {
         padding: 0 20px;
     }

     .slide-content h2 {
         font-size: 1.9rem;
     }
 }

 @media (max-width: 480px) {
     .form-row {
         grid-template-columns: 1fr;
     }

     .slider-nav button {
         width: 38px;
         height: 38px;
     }
 }

 .text-blue {
     color: #2563eb;
 }

 .btn-block {
     width: 100%;
     margin-top: 12px;
 }

 @media (max-width: 992px) {
     .top-header {
         display: none;
     }
 }

 .vj-breadcrumb {
     position: relative;
     padding: 60px 0 90px;
     overflow: hidden;
     background:
         linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
 }

 /* GLOW SHAPES */

 .vj-shape {
     position: absolute;
     border-radius: 50%;
     filter: blur(90px);
     z-index: 1;
 }

 .shape-1 {
     width: 320px;
     height: 320px;
     background: #2563eb25;
     top: -100px;
     left: -80px;
 }

 .shape-2 {
     width: 300px;
     height: 300px;
     background: #06b6d425;
     bottom: -120px;
     right: -100px;
 }

 /* CONTENT */

 .vj-breadcrumb-content {
     position: relative;
     z-index: 2;
     text-align: center;
 }

 /* MINI TITLE */

 .vj-mini-title {
     display: inline-block;
     padding: 10px 22px;
     border-radius: 50px;
     background: #ffffff;
     border: 1px solid #dbeafe;
     color: #2563eb;
     font-size: 14px;
     font-weight: 700;
     letter-spacing: 0.5px;
     box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
 }

 /* TITLE */

 .vj-breadcrumb h1 {
     font-size: 68px;
     line-height: 1.1;
     font-weight: 800;
     color: #0f172a;
     margin-top: 25px;
     margin-bottom: 20px;
     letter-spacing: -1px;
 }

 /* NAVIGATION */

 .vj-breadcrumb-nav {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 12px;
     flex-wrap: wrap;
 }

 .vj-breadcrumb-nav a {
     color: #2563eb;
     text-decoration: none;
     font-weight: 700;
     transition: 0.3s;
 }

 .vj-breadcrumb-nav a:hover {
     color: #0f172a;
 }

 .vj-breadcrumb-nav span {
     color: #94a3b8;
     font-weight: 600;
 }

 .vj-breadcrumb-nav p {
     margin: 0;
     color: #64748b;
     font-weight: 600;
 }

 /* RESPONSIVE */

 @media(max-width:991px) {

     .vj-breadcrumb {
         padding: 120px 0 70px;
     }

     .vj-breadcrumb h1 {
         font-size: 46px;
     }

 }

 @media(max-width:767px) {

     .vj-breadcrumb {
         padding: 100px 0 60px;
     }

     .vj-breadcrumb h1 {
         font-size: 34px;
     }

     .vj-mini-title {
         font-size: 12px;
         padding: 8px 18px;
     }

 }