:root {
    --primary: #4f46e5;
    --secondary: #7c3aed;
    --dark: #0f172a;
}

body {
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* Top Header */

.top-header {
    background: #0f172a;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

/* Navbar */

.navbar {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.navbar-brand {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary) !important;
}

.nav-link {
    font-weight: 500;
}

/* Hero */

.hero {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.hero-card {
    background: rgba(255, 255, 255, .15);
    padding: 40px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
}

/* Counter */

.counter-section {
    background: #0f172a;
    color: #fff;
}

.counter {
    font-size: 50px;
    font-weight: 700;
}

/* Section Title */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

/* Additional CSS */
.about-section {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Hover Effect */
.btn:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* Software */

.software-card {
    border: none;
    border-radius: 25px;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.software-card:hover {
    transform: translateY(-10px);
}

.software-icon {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Video */

.video-card {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

/* CTA */

.cta {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border-radius: 30px;
    padding: 80px 40px;
}

/* Footer */

footer {
    background: #020617;
    color: white;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-link:hover {
    color: white;
}

/* Responsive */

@media(max-width:768px) {

    .hero {
        text-align: center;
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .counter {
        font-size: 36px;
    }
}


/* Marquee Animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-inner {
    animation: scrollLeft 30s linear infinite;
}

.marquee-inner:hover {
    animation-play-state: paused;
}

.marquee-inner {
    will-change: transform;
}

/* Video styling */
video {
    outline: none;
    object-fit: contain !important;
}

/* Video controls show properly */
video::-webkit-media-controls {
    display: flex !important;
}

video::-webkit-media-controls-enclosure {
    display: flex !important;
}

/* Responsive */
@media (max-width: 768px) {
    .video-slide {
        min-width: 280px !important;
        margin: 0 10px !important;
    }

    video {
        width: 280px !important;
        height: 180px !important;
    }
}

/* Section CSS */
.image-section {
    animation: fadeInLeft 0.8s ease-out;
}

.content-section {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Product Page Css */

.image-section {
    animation: fadeInLeft 0.8s ease-out;
}

.content-section {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Button hover effects */
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Image hover */
.image-section img:hover {
    transform: scale(1.02);
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 991px) {
    .image-section {
        max-width: 300px !important;
        margin: 0 auto;
    }

    .image-section img {
        max-width: 280px !important;
    }

    .d-flex.flex-wrap {
        justify-content: center;
    }

    .btn-lg {
        min-width: 150px !important;
        padding: 12px 20px !important;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.6rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    .image-section img {
        max-width: 250px !important;
    }
}


/* ==========================
   FEATURES SECTION
========================== */

.features-section {
    background: #f8fafc;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 17px;
    color: #6b7280;
    max-width: 700px;
    margin: auto;
}

.feature-card {

    height: 100%;

    background: #fff;

    padding: 30px;

    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    transition: 0.4s ease;

    border-top: 5px solid #2563eb;
}

.feature-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-card h4 {

    font-size: 24px;

    font-weight: 700;

    color: #111827;

    margin-bottom: 15px;
}

.feature-card p {

    font-size: 16px;

    line-height: 1.8;

    color: #4b5563;

    margin-bottom: 0;
}

/* Tablet */

@media(max-width:991px) {

    .section-title {
        font-size: 32px;
    }

    .feature-card {
        padding: 25px;
    }

}

/* Mobile */

@media(max-width:576px) {

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .feature-card h4 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 15px;
    }

}





/* Hero Scetion Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Button Hover */
.hero-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.4);
}

/* Image responsive */
.hero-image img {
    max-width: 450px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero {
        padding: 100px 0 60px !important;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 30px !important;
    }

    .hero-content .d-flex {
        justify-content: center;
    }

    .hero-content .badge-custom {
        margin-bottom: 20px !important;
    }

    .hero-image img {
        max-width: 350px;
        margin-top: 30px;
    }

    .hero-image .position-absolute {
        display: none;
    }

    h1 {
        font-size: 2rem !important;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 90px 0 50px !important;
    }

    h1 {
        font-size: 1.7rem !important;
    }

    .hero-content .d-flex.flex-wrap {
        justify-content: center !important;
    }

    .hero-content .d-flex.gap-4 {
        justify-content: center !important;
    }

    .hero-image img {
        max-width: 280px;
    }
}


/* Key Features Info CSS */
.feature-card {
    border: 1px solid #eee;
}

.feature-card:hover {
    border-color: #e63946;
}

/* Responsive */
@media (max-width: 991px) {
    .col-lg-4 {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.6rem !important;
    }

    .feature-card {
        padding: 25px !important;
    }

    h4 {
        font-size: 1.05rem !important;
    }

    p {
        font-size: 0.85rem !important;
    }
}


/* =========================
   DEMONSTRATION SECTION
========================= */

/* Video Card */
.video-card {
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Thumbnail Hover */
.thumbnail:hover .play-overlay {
    background: rgba(0, 0, 0, 0.6) !important;
}

.thumbnail:hover div[style*="70px"] {
    transform: scale(1.1);
}

/* Title Bar */
.title-bar {
    flex-wrap: wrap;
    gap: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .col-lg-6 {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.5rem !important;
    }

    .title-bar {
        flex-direction: column;
        text-align: center;
    }

    .yt-btn {
        font-size: 0.75rem !important;
        padding: 5px 12px !important;
    }
}

/* Contact Page */

/* Form Controls */
.form-control:focus,
.form-select:focus {
    border-color: #e63946 !important;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1) !important;
    outline: none;
}

/* Button */
button[type="submit"]:hover {
    background: #c1121f !important;
    transform: translateY(-2px);
    color: white !important;
}

/* Card Hover */
.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
}

/* Map */
.map-container iframe {
    display: block;
}

.map-container,
.form-container {
    transition: all 0.3s ease;
}

.map-container:hover,
.form-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Responsive */
@media (max-width: 991px) {

    .col-lg-4,
    .col-lg-5,
    .col-lg-7 {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.5rem !important;
    }

    .form-container {
        padding: 20px !important;
    }

    .map-container iframe {
        height: 280px !important;
    }
}



/* ==========================
   DOWNLOAD UPDATE SECTION
========================== */

/* Main Heading */

.main-heading {

    text-align: center;

    font-size: 35px;

    font-weight: 700;

    color: #001eff;

    text-decoration: underline;

    margin-bottom: 25px;
}

/* Mirror Text */

.mirror-text {

    font-size: 20px;

    font-weight: 600;

    color: #405a7a;

    margin-bottom: 35px;
}

.updates-page {
    padding: 50px 0 70px;
    background: #fff;
}

/* Main Heading */

.updates-page h2 {
    text-align: center;
    color: #0026ff;
    font-size: 48px;
    font-weight: 700;
    text-decoration: underline;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* Mirror Text */

.box {
    margin-bottom: 35px;
}

.box p {
    color: #435d7d;
    font-size: 22px;
    font-weight: 600;
}

/* Software Heading */

.updates-page h3 {
    color: #008000;
    font-size: 52px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Table */

.update-table {
    width: 100%;
    margin-bottom: 45px;
    border: 1px solid #d7d7d7;
}

.update-table th {
    background: #f2f2f2;
    color: #008000;
    font-size: 20px;
    font-weight: 700;
    padding: 16px !important;
}

.update-table td {
    padding: 16px !important;
    font-size: 18px;
    vertical-align: middle;
}

/* Date Column */

.update-table td:nth-child(3) {
    color: #0026ff;
    font-weight: 600;
}

/* Download Links */

.update-table td:last-child a {
    color: #00a4ef;
    text-decoration: none;
    font-weight: 500;
}

.update-table td:last-child a:hover {
    text-decoration: underline;
}

/* Hover */

.update-table tbody tr:hover {
    background: #f6faff;
}

/* Responsive */

@media(max-width:992px) {

    .updates-page h2 {
        font-size: 34px;
    }

    .updates-page h3 {
        font-size: 36px;
    }
}

@media(max-width:768px) {

    .updates-page h2 {
        font-size: 26px;
    }

    .updates-page h3 {
        font-size: 28px;
    }

    .box p {
        font-size: 16px;
    }

    .update-table th,
    .update-table td {
        font-size: 14px;
        white-space: nowrap;
    }
}

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.dropdown-item {
    padding: 10px 20px;
}

.dropdown-item:hover {
    background: #0d6efd;
    color: #fff;
}

@media (min-width: 992px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .dropdown-submenu .submenu {
        display: none;
        position: absolute;
        left: 100%;
        top: 0;
        margin-top: -1px;
    }

    .dropdown-submenu:hover>.submenu {
        display: block;
    }
}

@media (max-width: 991px) {
    .dropdown-menu {
        box-shadow: none;
        border: 1px solid #eee;
    }

    .dropdown-submenu .submenu {
        display: none;
        position: static;
        background-color: transparent;
        padding-left: 1rem;
        border: none;
        box-shadow: none;
    }

    .dropdown-submenu.show-submenu>.submenu {
        display: block;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    color: #fff;
    background-color: #128C7E;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}

.required:after {
    content: "*";
    position: relative;
    font-size: 20px;
    color: var(--bs-danger);
    padding-left: .20rem;
    font-weight: 600;
    color: red;
    top: 0px;
}


/*new*/
  .brand-section {
      background: #f5f6f8;
      padding: 60px 20px;
    }
 
    .brand-section h2 {
      font-size: 1.5rem;
      font-weight: 600;
      color: #1a1a2e;
      text-align: center;
      margin-bottom: 48px;
      letter-spacing: -0.01em;
    }
 
    .brand-section h2 span {
      color: #3b82f6;
    }
 
    .logos-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
    }
 
    .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 70px;
      padding: 0 10px;
      
      transition: transform 0.2s ease, filter 0.2s ease;
      filter: grayscale(20%);
    }
 
    .logo-item:last-child {
      border-right: none;
    }
 
    .logo-item:hover {
      transform: translateY(-3px) scale(1.05);
      filter: grayscale(0%);
    }
 
    .logo-img {
      height: 100px;
      width: auto;
      max-width: 180px;
      object-fit: contain;
      display: block;
    }
 
    /* Responsive */
    @media (max-width: 991px) {
      .logo-item {
        padding: 12px 24px;
        border-right: none;
        border-bottom: 1px solid #dde1e8;
        width: 33.33%;
      }
      .logo-item:nth-child(3n) {
        border-right: none;
      }
    }
 
    @media (max-width: 575px) {
      .logo-item {
        width: 50%;
      }
    }
     /* ── Section Wrapper ── */
    .product-section {
      padding: 60px 20px;
      background: #f0f4ff;
    }
 
    /* ── Carousel Outer ── */
    .carousel-outer {
      position: relative;
      display: flex;
      align-items: center;
      gap: 12px;
    }
 
    /* ── Arrow Buttons ── */
    .carousel-arrow {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      background: #fff;
      border: 1.5px solid #d0d8f0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #444;
      font-size: 1.1rem;
      transition: all 0.2s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      z-index: 10;
    }
    .carousel-arrow:hover {
      background: #3b5bdb;
      color: #fff;
      border-color: #3b5bdb;
      box-shadow: 0 4px 16px rgba(59,91,219,0.25);
    }
 
    /* ── Carousel Track ── */
    .carousel-track-wrapper {
      flex: 1;
      overflow: hidden;
      border-radius: 16px;
    }
 
    .carousel-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
 
    /* ── Single Card ── */
    .product-card {
      min-width: 100%;
      display: flex;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(59,91,219,0.08);
      min-height: 340px;
    }
 
    /* ── LEFT: Image Part ── */
    .card-image-part {
      width: 50%;
      background: linear-gradient(135deg, #e8eeff 0%, #d6e0ff 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
      position: relative;
      overflow: hidden;
    }
 
    /* Circle background decoration */
    .card-image-part::before {
      content: '';
      position: absolute;
      width: 280px;
      height: 280px;
      background: rgba(255,255,255,0.6);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
 
    .card-image-part img {
      position: relative;
      z-index: 1;
      max-height: 240px;
      max-width: 100%;
      width: auto;
      object-fit: contain;
      display: block;
    }
 
    /* placeholder when no image */
    .img-placeholder {
      position: relative;
      z-index: 1;
      width: 200px;
      height: 200px;
      background: linear-gradient(135deg, #c5d0f7, #a0b0ef);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 3rem;
    }
 
    /* ── RIGHT: Text Part ── */
    .card-text-part {
      width: 50%;
      padding: 28px 34px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
 
    .card-text-part h3 {
      font-size: 1.8rem;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 18px;
      text-align: center;
    }
 
    .card-text-part p {
      font-size: 16px;
      color: #000000;
      font-weight: 600;
      margin-bottom: 18px;
      text-align: center;
    }
 
    .read-more {
      color: #3b5bdb;
      font-size: 0.9rem;
      font-weight: 500;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      margin-bottom: 28px;
      transition: color 0.2s;
    }
    .read-more:hover { color: #2240c4; text-decoration: underline; }
 
    /* ── Pricing Row ── */
    .pricing-row {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
 
    .price-item {
      font-size: 18px;
      font-weight: bold;
      color: #000000;
      font-weight: 500;
    }
 
    .price-item .price-val {
      color: #3b5bdb;
      font-weight: 700;
    }
 
    .btn-buy {
      background: #3b5bdb;
      color: #fff;
      border: none;
      padding: 10px 28px;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      text-decoration: none;
      display: inline-block;
      margin-left: auto;
    }
    .btn-buy:hover {
      background: #2240c4;
      transform: translateY(-1px);
      color: #fff;
    }
 
    /* ── Dots ── */
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
    }
 
    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #c5ceeb;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .dot.active {
      background: #3b5bdb;
      width: 28px;
      border-radius: 5px;
    }
 
    /* ── Responsive ── */
    @media (max-width: 767px) {
      .product-card {
        flex-direction: column;
        min-height: unset;
      }
      .card-image-part,
      .card-text-part {
        width: 100%;
      }
      .card-image-part {
        padding: 30px 20px;
        min-height: 220px;
      }
      .card-text-part {
        padding: 28px 24px;
      }
      .card-text-part h3 {
        font-size: 1.4rem;
      }
      .carousel-arrow {
        display: none;
      }
    }