:root {
  --primary:#6f42c1;
  --secondary:#0d1b2a;
  --bg:#f8fafc;
}

body {
  font-family: 'Inter', sans-serif;
  color:#1f2937;
  line-height:1.6;
}

/* NAVBAR */
.navbar {
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.navbar-brand img { height:42px; }
.nav-link {
  font-weight:500;
  color:#111;
}
.nav-link:hover { color:var(--primary)!important; }

/* HERO */
.hero {
  background:linear-gradient(135deg,#0d1b2a,#1b2a4e);
  color:#fff;
  padding:120px 20px;
}
.hero h1 {
  font-size:3rem;
  font-weight:700;
}
.hero p {
  max-width:650px;
  margin:20px auto 35px;
  font-size:1.1rem;
}
.hero .btn {
  padding:14px 28px;
  font-weight:600;
}

/* SECTIONS */
section { padding:90px 0; }
.section-title {
  text-align:center;
  margin-bottom:60px;
}
.section-title h2 {
  font-size:2.4rem;
  font-weight:700;
}
.section-title p {
  max-width:700px;
  margin:10px auto 0;
  color:#6b7280;
}

/* ABOUT */
.about {
  background:var(--bg);
}
.about img {
  max-width:420px;
}

/* CARDS */
.card-box {
  background:#fff;
  border-radius:14px;
  padding:35px;
  height:100%;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.3s;
}
.card-box:hover {
  transform:translateY(-6px);
}
.card-box i {
  font-size:40px;
  color:var(--primary);
  margin-bottom:20px;
}

/* WHY */
.why {
  background:#f1f5f9;
}

/* CONTACT */
.contact-box {
  background:#fff;
  border-radius:14px;
  padding:40px;
  box-shadow:0 15px 40px rgba(0,0,0,.1);
}

/* FOOTER */
footer {
  background:#0d1b2a;
  color:#cbd5e1;
  padding:60px 0 30px;
}
footer img { height:45px; }

/* ANIMATION */
.reveal {
  opacity:0;
  transform:translateY(40px);
  transition:.8s ease;
}
.reveal.active {
  opacity:1;
  transform:none;
}

@media(max-width:768px){
  .hero h1 { font-size:2.2rem; }
}
.dev-section {
  background: radial-gradient(circle at top, #1f2937, #0f172a);
  padding: 90px 0;
}

.code-box {
  background: #0b1220;
  border-radius: 12px;
  padding: 25px;
  color: #d1d5db;
  font-size: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.dev-card {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  color: #fff;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-card i {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-card:hover {
  transform: translateY(-6px);
}
.trust-section {
  background: #ffffff;
}

.trust-logo {
  max-height: 45px;
  opacity: 0.85;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.trust-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
}

.testimonial-card::before {
  content: "“";
  font-size: 60px;
  color: #e5e7eb;
  position: absolute;
  top: 10px;
  right: 20px;
}

.testimonial-header {
  margin-bottom: 15px;
}

.testimonial-header strong {
  display: block;
  font-size: 16px;
}

.testimonial-header span {
  font-size: 14px;
  color: #374151;
}

.testimonial-header small {
  display: block;
  color: #6b7280;
  font-size: 13px;
}

.testimonial-card p {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}
.navbar .dropdown-menu {
  border-radius: 12px;
  padding: 10px;
}

.navbar .dropdown-item {
  padding: 10px 16px;
  font-size: 14px;
}

.navbar .dropdown-item:hover {
  background-color: #f1f5ff;
  color: #0d6efd;
}
.page-header {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    color: white;
    padding: 80px 0;
}
.service-card {
    border: none;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.service-card:hover {
    transform: translateY(-8px);
}
.icon-box {
    font-size: 40px;
    color: #0d1b2a;
}

/*countdown timer*/
.notify,
.countdown-timer {
    position: fixed;
    bottom: 20px;
    /* distance from bottom */
    left: 20px;
    /* distance from left */
    display: flex;
    align-items: center;
    gap: 10px;
    /*background: linear-gradient(180deg, #7D25EC 0%, #9425EC 100%);*/
    background-color: #0d1b2a;
    padding: 10px 12px 10px 60px;
    /* left padding for button */
    border-radius: 10px;
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    z-index: 9999;
    /*min-width: 185px;*/
    max-width: 300px;
    font-family: Arial, sans-serif;
}

/* Button/Icon */
.notify .button,
.countdown-timer .button {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 43px;
    height: 35px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 17px;
}

/* Text Container */
.notify .text,
.countdown-timer .text {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
}

/* Subtitle */
.notify .subtitle,
.countdown-timer .subtitle {
    color: #ddd;
    font-size: 13px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

/* Title */
.notify .title,
.countdown-timer .title {
    color: white;
    font-size: 15px;
    font-weight: 600;
    font-family: "Space Grotesk", sans-serif;
}

/* Responsive */
@media (max-width: 480px) {

    .notify,
    .countdown-timer {
        bottom: 15px;
        left: 15px;
        padding: 10px 10px 10px 50px;
        min-width: 160px;
        max-width: 225px;
    }

    .notify .button,
    .countdown-timer .button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .notify .title,
    .countdown-timer .title {
        font-size: 14px;
        margin-left: 10px;
    }

    .notify .subtitle,
    .countdown-timer .subtitle {
        font-size: 12px;
        margin-left: 10px;
    }
}
#fixedWhatsAppIcon {
  display: block;
  position: fixed;
  left: 20px;
  bottom: 100px;
  width: 50px;
  height: 50px;
  background-color: #54b460;
  text-align: center;
  border: 5px double white;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  z-index: 9999;
}
#fixedWhatsAppIcon:hover {
  background-color: #339933;
}