:root { --btn: #0dcae6; /* Main Accent (CTA, icons, labels) */ --btn-hover: #0bbcd6; /* Hover shade */ --primary: #1f3e74; /* Headings / dark blue */ --white: #ffffff; --muted: #9fb0c8; } /* ========== BASE STYLES ========== */ body { margin: 0; font-family: 'Open Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--neutral); background: #fff; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.6; } h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--dark-bg); margin-bottom: 0.6rem; } /* ========== NAVBAR ========== */ .site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 120; background: transparent; border-bottom: 1px solid rgba(255,255,255,0.1); transition: all .3s ease; padding: 0; } .site-nav.scrolled { background: rgba(11,32,64,0.95); padding: 4px 0; } .navbar-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; text-transform: uppercase; position: absolute; top: 0; left: 20px; z-index: 125; } .navbar-brand img { height: 130px; width: auto; object-fit: scale-down; transition: all .2s ease; } .navbar-toggler { filter: invert(1); } .nav-link { color: rgba(255,255,255,0.92); font-weight: 700; margin-left: 12px; position: relative; transition: color .2s ease, transform .15s ease; padding-bottom: 6px; text-decoration: none !important; } .nav-link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background-color: var(--btn); transition: width .3s ease; } .nav-link:hover::after, .nav-link.active::after { width: 100%; } .nav-link:hover, .nav-link.active { color: var(--btn); } .nav-link:focus { outline: none; box-shadow: none; } @media (max-width: 991px) { .navbar-brand img { height: 80px; } .navbar-collapse { background: rgba(11,32,64,0.95); border-radius: 8px; padding: 12px; } } /* ========== HERO SECTION ========== */ .hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: url('/assets/images/hero-bg.webp') center/cover no-repeat; /* removed gradient */ color: var(--white); padding-top: 120px; /* keep if you need spacing for header */ } .hero .hero-inner { max-width: 980px; background: rgba(255,255,255,0.03); padding: 42px; border-radius: 12px; box-shadow: 0 20px 60px rgba(3,10,25,0.55); } .hero h1 { color: var(--white); font-size: 2.6rem; line-height: 1.1; } .hero p.lead { color: rgba(255,255,255,0.92); font-size: 1.05rem; margin-bottom: 16px; } .btn-primary-custom { background: var(--btn); color: var(--white); border: none; padding: 10px 26px; border-radius: 40px; font-weight: 700; box-shadow: 0 10px 30px rgba(13,202,230,0.25); transition: all .3s ease; } .btn-primary-custom:hover { background: var(--btn-hover); transform: translateY(-2px); } /* Hero Button Group */ .hero .cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 20px; } .hero .cta-buttons .btn { flex: 1 1 auto; min-width: 160px; white-space: nowrap; } @media (max-width: 576px) { .hero .cta-buttons .btn { width: 100%; max-width: 320px; } } /* ========== SECTIONS ========== */ section { padding: var(--page-padding) 0; } .section-title { text-align: center; margin-bottom: 26px; } .section-sub { text-align: center; color: var(--muted); max-width: 840px; margin: 0 auto 28px; } /* ========== COMPONENTS ========== */ .product-card { border-radius: 12px; background: #fff; box-shadow: 0 10px 30px rgba(6,18,40,0.06); padding: 18px; height: 100%; transition: transform .28s ease, box-shadow .28s ease; } .product-card:hover { transform: translateY(-8px); box-shadow: 0 22px 60px rgba(6,18,40,0.12); } .product-card img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; margin-bottom: 12px; } .why-grid .item { background: linear-gradient(180deg,rgba(41,64,122,0.03),rgba(41,64,122,0.02)); border-radius: 10px; padding: 20px; text-align: center; border: 1px solid rgba(6,18,40,0.04); } .why-grid .item strong { color: var(--primary); display: block; margin-bottom: 8px; } .contact-cta { background: linear-gradient(90deg,rgba(37,149,190,0.06),rgba(42,89,159,0.04)); padding: 26px; border-radius: 12px; border: 1px solid rgba(6,18,40,0.04); } /* ========== FOOTER ========== */ footer { background: linear-gradient(180deg,#0a2a54,#061833); color: #fff; padding: 36px 0; } footer h5, footer h6 { color: var(--btn); font-weight: 700; text-transform: uppercase; margin-bottom: 1rem; } .footer-links a { color: #fff; text-decoration: none; display: block; padding: 4px 0; transition: all .3s ease; } .footer-links a:hover { color: var(--btn) !important; text-decoration: underline; padding-left: 5px; } footer a:hover { color: var(--btn); } footer p { margin-bottom: 8px; font-size: .95rem; } hr.border-secondary { border-color: var(--btn) !important; opacity: 1; } footer .small { font-size: .85rem; color: rgba(255,255,255,0.8); } .footer-bottom { background: rgba(0,0,0,0.2); text-align: center; padding: 12px 0; font-size: .85rem; color: rgba(255,255,255,0.8); } /* ========== CONTACT BUTTONS ========== */ .contact-buttons .btn { border-radius: 40px; font-weight: 600; font-size: 0.95rem; padding: 8px 18px; transition: all 0.3s ease; box-shadow: 0 3px 10px rgba(0,0,0,0.15); } .contact-buttons .btn-outline-info { color: var(--btn); border-color: var(--btn); } .contact-buttons .btn-outline-info:hover { background-color: var(--btn); color: #fff; transform: translateY(-2px); } .contact-buttons .btn-outline-light { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.6); } .contact-buttons .btn-outline-light:hover { background-color: #fff; color: var(--primary); transform: translateY(-2px); } @media (max-width: 576px) { .contact-buttons .btn { display: block; width: 100%; margin-bottom: 8px; } } /* ========== FLOATING BUTTONS ========== */ .floating-buttons { position: fixed; top: 50%; left: 20px; transform: translateY(-50%); display: flex; flex-direction: column; gap: 12px; z-index: 1200; } .floating-buttons a { position: relative; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; box-shadow: 0 3px 8px rgba(0,0,0,0.3); transition: all 0.3s ease; text-decoration: none; } .floating-buttons a:hover { transform: translateX(5px); } .floating-buttons a::after { content: attr(data-title); position: absolute; left: 60px; top: 50%; transform: translateY(-50%) scale(0.8); background: rgba(0,0,0,0.85); color: #fff; padding: 5px 10px; border-radius: 6px; white-space: nowrap; opacity: 0; transition: all 0.3s ease; pointer-events: none; font-size: 14px; } .floating-buttons a::before { content: ""; position: absolute; left: 50px; top: 50%; transform: translateY(-50%) rotate(45deg) scale(0.8); width: 8px; height: 8px; background: rgba(0,0,0,0.85); opacity: 0; transition: all 0.3s ease; } .floating-buttons a:hover::after, .floating-buttons a:hover::before { transform: translateY(-50%) scale(1); opacity: 1; } @media (max-width: 767px) { .floating-buttons { top: auto; bottom: 20px; left: 50%; transform: translateX(-50%); flex-direction: row; gap: 8px; } .floating-buttons a:hover::after, .floating-buttons a:hover::before { display: none; } } /* ========== MISC ========== */ @media (max-width: 767px) { footer { text-align: center; } .footer-links a { padding: 6px 0; } .hero h1 { font-size: 1.6rem; } .hero p.lead { font-size: .95rem; } .product-card img { height: 180px; } section { padding: 48px 0; } } /* ========== CSS for square boxes FP New ========== */ .feature-box { background: #ffffff; transition: transform 0.3s, box-shadow 0.3s; } .feature-box:hover { transform: translateY(-6px); box-shadow: 0 12px 25px rgba(0,0,0,0.15); } /* CONTACT STRIP */ .contact-strip { background: #1fb7e6; /* close to screenshot blue */ position: relative; padding: 30px 0 40px; } /* CALLBACK FORM BOX */ .callback-box { background: #2b2b2b; padding: 30px; border-radius: 6px; margin-top: -60px; /* overlap effect */ } .callback-box .form-control { border-radius: 2px; height: 42px; } .callback-box .btn-info { background: #0dcae6; border: none; color: #fff; } .callback-box .btn-info:hover { background: #0bbcd6; } /* MOBILE FIX */ @media (max-width: 991px) { .callback-box { margin-top: 30px; } } .btn-accent { background-color: #0dcae6; color: white; border: none; } .btn-accent:hover { background-color: #0bbcd6; } /* Our Products */ .app-card { position: relative; height: 360px; overflow: hidden; border-radius: 10px; box-shadow: 0 10px 25px rgba(0,0,0,0.15); } .app-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; } .app-card:hover img { transform: scale(1.08); } .app-overlay-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.35); transition: background 0.3s ease; } .app-card:hover .app-overlay-center { background: rgba(13, 202, 230, 0.75); /* CTA color */ } .app-overlay-center h6 { color: #fff; font-size: 1.05rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin: 0; } /* Our Application */ .img-card { position: relative; overflow: hidden; border-radius: 12px; height: 360px; } .img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .img-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px; transition: background 0.3s ease; } .img-overlay h5 { font-size: 18px; font-weight: 600; margin-bottom: 6px; } .img-overlay p { font-size: 14px; margin-bottom: 12px; opacity: 0.9; } .img-card:hover img { transform: scale(1.08); } /* Our Service */ .img-card:hover .img-overlay { background: rgba(0, 0, 0, 0.65); } .img-card { position: relative; height: 280px; overflow: hidden; border-radius: 12px; } .img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .img-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 25px; } .img-overlay h5 { font-size: 20px; font-weight: 600; margin-bottom: 8px; } .img-overlay p { font-size: 14px; opacity: 0.9; max-width: 260px; } .img-card:hover img { transform: scale(1.08); } /* CSS for z-index & scroll-padding */ .accordion-body { position: relative; z-index: 10; } #products { scroll-padding-top: 120px; } .table-responsive { overflow-x:auto; }