* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;

    overflow: visible !important;
    height: auto !important;
}

/* Hero Section */

.hero h1 {
    color: #00264D;
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    animation: fadeInDown 1s ease-out;
}

.hero p {
    color: #00264D;
    font-size: 1.5rem;
    max-width: 900px;
    margin: 0 auto 50px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #cbd5d800 10%, #a4e8ff00 30%, #f8fafc8f 100%);
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 3px solid white;
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        top: 10px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Navigation Tabs */
.nav-tabs {
    background: #f8fafc;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #e2e8f0;
    position: sticky;
    top: 120px;
    z-index: 90;
}

.nav-tabs button {
    background: white;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    padding: 12px 30px;
    margin: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-tabs button:hover,
.nav-tabs button.active {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

/* Product System Header with Image */
.system-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.system-logo {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px; /* Add padding */
}

.system-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* This ensures the logo fits inside without distortion */
    border-radius: 0; /* Remove border-radius from img to prevent clipping */
}

.system-title {
    flex: 1;
}

.system-title h3 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.system-title p {
    color: #64748b;
    font-size: 1.2rem;
}

.accordion-trigger {
    gap: 5px;
    display: flex;
    align-items: center;
    margin-top: 12px;
    padding: 6px;
    color: black;
    font-weight: 600;
}

.accordion-text,
.accordion-icon {
    transition: all 0.5s ease;
}

.accordion-trigger:hover {
    color: rgb(70, 70, 70);
}

.accordion-trigger {
    transform: rotate(0deg);
}

.accordion-trigger.open .accordion-icon {
    transform: rotate(180deg);
}


.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out;
}


/* Product Card with Image and Carousel */
.product-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: center;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #3b82f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.product-details {
    position: relative;
}

.product-title {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 20px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.carousel-slide {
    display: none;
    animation: fadeIn 0.5s;
}

.carousel-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateX(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

.carousel-slide h4 {
    color: #3b82f6;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-slide ul {
    list-style: none;
    margin-top: 15px;
}

.carousel-slide ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #475569;
    font-size: 1rem;
}

.carousel-slide ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.carousel-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: #1e40af;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #3b82f6;
    width: 30px;
    border-radius: 6px;
}

/* Extended Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card.blue { 
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%); 
    color: white; 
}

.service-card.yellow { 
    background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%); 
    color: white; 
}

.service-card.teal { 
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%); 
    color: white; 
}

.service-card.red { 
    background: linear-gradient(135deg, #b91c1c 0%, #ef4444 100%); 
    color: white; 
}

.service-card.purple { 
    background: linear-gradient(135deg, #6b21a8 0%, #a855f7 100%); 
    color: white; 
}

.service-card.orange { 
    background: linear-gradient(135deg, #c2410c 0%, #f97316 100%); 
    color: white; 
}

.service-card.cyan { 
    background: linear-gradient(135deg, #0e7490 0%, #06b6d4 100%); 
    color: white; 
}

.service-card.light { 
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); 
    color: #1e3a8a; 
}

.service-card h3 {
    font-size: 1.3rem;
    margin: 15px 0;
    font-weight: 700;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.coming-soon {
    background: #ef4444;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

/* Control Center Grid */
.control-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.control-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #3b82f6;
}

.control-card h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    background: #f0f9ff;
    padding: 15px;
    border-radius: 8px;
}

.control-card ul {
    list-style: none;
}

.control-card ul li {
    padding: 12px 0;
    color: #475569;
    font-weight: 500;
    border-bottom: 1px solid #e2e8f0;
}

.control-card ul li:last-child {
    border-bottom: none;
}

/* Section visibility */
.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

/* Asset Pilot Single Card */

/* Optional: Add overlay for better text readability */
.asset-pilot-single-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(240, 249, 255, 0.9);
    border-radius: 30px;
    z-index: 1;
}

.asset-pilot-single-card > * {
    position: relative;
    z-index: 2;
}

.asset-pilot-single-card h2 {
    font-size: 3.5rem;
    color: #1e3a8a;
    margin-bottom: 15px;
    font-weight: 800;
}

.asset-pilot-single-card .subtitle {
    font-size: 1.8rem;
    color: #f59e0b;
    margin-bottom: 30px;
    font-weight: 600;
}

.asset-pilot-single-card .description {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: white;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-text {
    font-size: 1.2rem;
    color: #1e3a8a;
    font-weight: 600;
    margin: 0;
}

.cta-btn-inline {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-btn-inline:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 2rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background: #f1f5f9;
    color: #1e3a8a;
    transform: rotate(90deg);
}

.modal-content {
  background: #ffffff;
  padding: 30px;
  width: 90%;
  max-width: 460px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  animation: fadeIn 0.25s ease-out;
}

.modal-content h2 {
  margin-bottom: 8px;
  font-size: 1.4rem;
  font-weight: 700;
}

.modal-content p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #64748b;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-family: inherit;
}

.modal-subtitle {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .asset-pilot-single-card {
        padding: 50px 30px;
    }

    .asset-pilot-single-card h2 {
        font-size: 2.5rem;
    }

    .cta-section-inline {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .system-header {
        flex-direction: column;
        text-align: center;
    }

    .system-logo {
        width: 120px;
        height: 120px;
        font-size: 4rem;
    }

    .system-title h3 {
        font-size: 2rem;
    }

    .product-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image {
        height: 250px;
    }

    .nav-tabs button {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}

.btn-primary {
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.45);
  transition: 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.6);
}

#latest-scroll,
#smartwatches-scroll,
#software-scroll,
#laptops-scroll,
#desktops-scroll,
#printers-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#latest-scroll::-webkit-scrollbar,
#smartwatches-scroll::-webkit-scrollbar,
#software-scroll::-webkit-scrollbar,
#laptops-scroll::-webkit-scrollbar,
#desktops-scroll::-webkit-scrollbar,
#printers-scroll::-webkit-scrollbar {
  display: none;
}