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

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

/* header section */
.header {
    position: fixed;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 120px;
    display: flex;
    justify-content: space-between;
    background: rgba(189, 189, 189, 0.14);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10.3px);
    -webkit-backdrop-filter: blur(10.3px);
    border: 1px solid rgba(189, 189, 189, 0.29);
    z-index: 100;
    transition: all 0.3s ease;
}

.header-logo-img {
    cursor: pointer !important;
}

.logo {
    color: #0A3A63;
    font-size: 30px;
    text-decoration: none;
    font-weight: 600;
    cursor: default;
    transition: color 0.3s;
}

.logo:hover {
    color: #00b4d8;
}

.navbar a{
    color: #00264D;
    font-size: 18px;
    text-decoration: none;
    margin-left: 35px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.navbar a:hover {
    border-bottom: 2px solid #fff;
    color: #245d88;
}

/* 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: 0;
    z-index: 100;
}

.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-category {
    margin-bottom: 80px;
}

/* 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);
}

.system-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.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;
}

/* 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 h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 10px;
}

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

/* Form Styles */
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    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);
    margin-top: 10px;
}

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

.submit-btn:active {
    transform: translateY(0);
}

/* 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;
    }
}

/* FOOTER */
.footer {
  background: #070f1a;
  padding: 60px 0;
  margin-top: 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo {
  width: 150px;
  filter: brightness(100%);
}

.footer-contact-btn {
  padding: 14px 28px;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 6px 20px rgba(30,64,175,0.4);
  transition: 0.2s ease;
}

.footer-contact-btn:hover {
  transform: translateY(-3px);
}

/* LINK COLUMNS */
.footer-links {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}

.footer-col h4 {
    color: #fff;
  font-size: 1.1rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  text-decoration: none;
  margin: 6px 0;
  font-size: 0.95rem;
  color: #94a3b8;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #ffffff;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 40px;
  }
}