body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7fafd;
    color: #222;
}

:root {
    --primary-color: #183153;
    --secondary-color: #336699;
}

.navbar, .footer {
    background: var(--primary-color) !important;
}

.navbar .nav-link, .navbar .navbar-brand {
    color: #fff !important;
}

.navbar .nav-link.active, .navbar .nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Animation placeholder */
.animated-section {
    animation: fadeInUp 1s ease;
}

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

.cta-btn {
    background: linear-gradient(90deg, #29507a 0%, var(--secondary-color) 100%);
    color: #fff;
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: bold;
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(24,49,83,0.08);
    border: none;
}
.cta-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

.card {
    border: 1px solid #c7c7c7 !important;
    box-shadow: 7px 6px 15px rgb(196, 196, 196) !important;
    border-radius: 12px;
}

        .sidebar {
            min-height: 100vh;
            background: #ccc;
            padding: 20px;
        }
        .sidebar .nav-link {
            color: #333;
            padding: 10px 15px;
            border-radius: 5px;
            margin-bottom: 5px;
        }
        .sidebar .nav-link:hover,
        .sidebar .nav-link.active {
            background: #e9ecef;
        }
        .sidebar .nav-link i {
            width: 20px;
        }
        .sidebar h4 {
            color: #fff;
        }
        .stat-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        .stat-card .card-body {
            padding: 1.5rem;
        }
        .stat-card i {
            font-size: 2rem;
            opacity: 0.3;
        }

h1, h2, h3, h4, h5 {
    color: #183153;
    font-weight: 700;
}
.bg-dark h5{
    color: white;
}

footer {
    background: #183153;
    color: #fff;
}
footer a {
    color: var(--secondary-color);
    text-decoration: none;
}
footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.fa, .fab {
    color: var(--secondary-color);
}

.icon-animate {
    animation: bounce 1.2s infinite alternate;
}
@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

.hero-section {
    background: linear-gradient(120deg, #183153 0%, #29507a 50%, var(--secondary-color) 100%);
    color: #fff;
    padding: 70px 0 50px 0;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 8px 32px rgba(24,49,83,0.12);
    position: relative;
    overflow: hidden;
    animation: heroFadeIn 1.2s cubic-bezier(0.4,0,0.2,1);
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-cta {
    margin-top: 30px;
}

.hero-blob {
    position: absolute;
    right: -80px;
    top: 20px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 60% 40%, #336699 0%, #29507a 100%);
    opacity: 0.25;
    border-radius: 50%;
    z-index: 0;
    animation: blobMove 6s infinite alternate ease-in-out;
}
@keyframes blobMove {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.1) translateY(30px); }
}

.advanced-features {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(24,49,83,0.08);
    padding: 40px 20px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}
.advanced-features .fa {
    color: var(--secondary-color);
    margin-bottom: 10px;
} 


.display-4.fw-bold.mb-3 {
    color: whitesmoke;
  }

  
.display-5.fw-bold.mb-3 {
    color: whitesmoke;
  }

/* Navbar toggler icon and border customization for mobile */
@media (max-width: 991.98px) {
    .navbar-toggler {
        border-color: #fff !important;
        margin-left: auto;
        margin-right: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
}

/* Hide mobile menu close button on desktop */
@media (min-width: 992px) {
    .mobile-menu-close,
    .mobile-menu-close i {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        position: absolute !important;
        top: -9999px !important;
        left: -9999px !important;
    }
}

.container {
    max-width: 1140px;
    margin: auto;
    padding: 0 20px;
  }
  section {
    margin-bottom: 40px;
  }
  h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
  }
  ul {
    list-style: none;
    padding: 0;
  }
  #chatgpt ul li::before {
    content: "\2713";
    color: #336699;
    margin-right: 10px;
  }
  
  .features ul,
  .tools ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
  }
  .audience ul {
    padding-left: 20px;
  }
  .comparison table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  .comparison th,
  .comparison td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
  }
  .comparison th {
    background-color: #336699;
    color: white;
  }
  .faqs div p {
    margin-bottom: 15px;
  }
  blockquote {
    background-color: #f1f1f1;
    padding: 20px;
    border-left: 5px solid #336699;
    margin: 20px auto;
    max-width: 700px;
  }
  .cta a {
    transition: background 0.3s ease;
  }
  .cta a:hover {
    background: #224466;
    color: #fff;
  }

  @media (max-width: 768px) {
    h2 {
      font-size: 24px;
    }
    .features ul,
    .tools ul {
      grid-template-columns: 1fr;
    }
    .comparison table,
    .comparison th,
    .comparison td {
      font-size: 14px;
    }
    .cta h2 {
      font-size: 22px;
    }
  }