body {
    font-family: 'Segoe UI', sans-serif;
}
.hero {
    padding: 60px 0;
}
.hero h1 span {
    color: #f7b600;
    font-weight: 700;
}
.hero img {
    max-width: 100%;
    height: auto;
}
.btn-yellow {
    background-color: #f7b600;
    color: #fff;
    border: none;
}
.btn-yellow:hover {
    background-color: #e6a700;
}
.btn-darkblue {
    background-color: #122841;
    color: #fff;
    border: none;
}
.navbar {
  transition: all 0.3s ease;
}
.navbar .nav-link {
  position: relative;
  transition: color 0.3s ease;
}
.navbar .nav-link:hover {
  color: #0056b3;
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #ffce3d;
  transition: width 0.3s ease;
}
.navbar .nav-link:hover::after {
  width: 100%;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* removes the small gap */
}

.dropdown-menu {
  border-radius: 10px;
  border: none;
  padding: 0.5rem;
}

.dropdown-item {
  border-radius: 6px;
  padding: 0.6rem 1rem;
  transition: all 0.2s ease;
}

.dropdown-toggle::after{
  border: none;
}

.dropdown-item:hover {
  background-color: #f7c948; /* your yellow */
  color: #000;
}

.btn-yellow {
  background-color: #ffce3d;
  border: none;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-yellow:hover {
  background-color: #ffdb6e;
  color: #000;
  transform: translateY(-2px);
}
.btn-outline-darkblue {
  color: #122841;
  border: 1.8px solid #122841;
  transition: all 0.3s ease;
}
.btn-outline-darkblue:hover {
  background-color: #122841;
  color: #fff;
  transform: translateY(-2px);
}
.navbar-brand span {
  font-size: 1.25rem;
}

.price-box {
    background-color: #ffc107;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    color: #000;
}

.btn-yellow {
    background-color: #f7b600;
    color: #fff;
    border: none;
}

.btn-yellow:hover {
    background-color: #e6a700;
}

.btn-outline-primary,
.btn-outline-dark {
    border-width: 2px;
    font-weight: 500;
}

.btn-outline-primary.active,
.btn-outline-dark.active {
    background-color: #122841;
    color: #fff;
    border-color: #122841;
}

@media only screen and (min-width: 768px){
    section.hero{
        border-bottom: 3px solid #333;
    }
    .banner-image{
        width: 52rem;
        position: absolute;
        top: 140px;
        right: 0px;
        z-index: 1;
    }
    .price-section .justify-content-center{
        position: relative;
        z-index: 2;
    }
    .price-section{
        background-color: #f2f2f2;
        height: 184px;
        margin-bottom: 130px;
        border-bottom-right-radius: 314px;
        border-bottom-left-radius: 550px;
    }
}
@media only screen and (max-width: 768px){
    .testimonials .section-heading {
        position: relative;
        top: 20px!important;
    }
    .testimonials .heading-bg, .testimonials .heading-main {
        font-size: 3.3rem!important;
    }
}

/* --- Sticky Sidebar Style --- */
.sticky-sidebar {
  position: sticky!important;
  top: 100px; /* adjust if you have a fixed navbar */
  z-index: 10;
}

/* Box shadow for cards */
.card-shadow {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
}

/* Title with stroke effect */
.title-stroke {
    font-weight: 900;
    font-size: 3.5rem;
    color: #F59E0B;
    -webkit-text-stroke: 1px #1E293B;
    text-stroke: 1px #1E293B;
    line-height: 1;
}

.hover-up {
  transition: all 0.3s ease;
  transform: translateY(0);
}
.hover-up:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.step-box {
  background: white;
  border-radius: 12px;
  padding: 20px 25px;
  width: 150px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.step-box:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.step-box .num {
  display: inline-block;
  background-color: #122841;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-bottom: 10px;
}

/* Feature cards with hover effects */
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}
.feature-icon:hover {
  transform: translateY(-5px);
}

.feature-icon:hover .icon-outline {
  -webkit-text-stroke: 1px #fff;
  transform: scale(1.1);
}
.feature-icon i {
  transition: all 0.3s ease;
}
.feature-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
}
/* Pricing boxes */
.price-box {
  color: #fff;
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}
.price-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.price-header {
  font-size: 0.95rem;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-footer {
  font-size: 0.9rem;
  font-weight: 500;
  border-top: 2px solid rgba(255,255,255,0.1);
}
.btn-darkblue {
  background-color: #122841;
  color: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn-darkblue:hover {
  background-color: #0a1f3dff;
  transform: translateY(-2px);
}

/* Accordion button */
.accordion-btn {
    background-color: #f1f5f9; /* slate-100 */
    border: 1px solid #cbd5e1; /* slate-300 */
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
}
.accordion-btn:hover {
    background-color: #fbbf24; /* amber-400 */
    color: #1e293b; /* slate-800 */
}
.heading-main {
    color: #f5a623;
    font-weight: bold;
    font-size: 2rem;
}
.subheading {
    color: #003366;
    font-size: 1.2rem;
    font-weight: 500;
}
.section-heading {
    color: #f5a623;
    font-weight: 600;
    font-style: italic;
    font-size: 1.1rem;
}
.border-divider {
    border-left: 1px solid #ccc;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 8px 8px 0 0;
    background-color: #fff;
    font-weight: 600;
    color: #003366;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
}
.nav-tabs .nav-link.active {
    background-color: #f5a623;
    color: white;
}
.tab-content {
    background-color: #fff7ea;
    padding: 2rem;
    border-radius: 0 0 10px 10px;
}
.tab-content ul {
    list-style-type: disc;
    padding-left: 1.2rem;
}
.find-writer-btn {
    margin-top: 1.5rem;
    background-color: #002f4b;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 500;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background-color: #0b3750;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 4px solid #f5a623;
    margin: 0 auto 15px auto;
}
.feature-text {
    font-weight: 600;
    color: #0b3750;
    text-align: center;
}
.feature-section {
    background-color: #f4f4f4;
    padding: 50px 0;
}

.testimonials .section-heading {
    position: relative;
    top: 50px;
    text-align: center;
    z-index: 0;
}
/* Yellow background heading */
.section-heading .heading-bg {
    font-size: 9rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fbc02d;
    position: absolute;
    top: -15px;
    left: 47.5%;
    transform: translate(-48%, 6px); /* slight shift for shadow look */
    z-index: 1;
    opacity: 0.9;
    white-space: nowrap;
}
/* Main outlined heading */
.section-heading .heading-main {
    font-size: 9rem;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px #000; /* black outline */
    position: relative;
    z-index: 2;
    white-space: nowrap;
}
.testimonial-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}
.stars {
    color: #fbc02d;
}

.faq-heading {
    text-align: center;
    margin-bottom: 2rem;
}
.faq-heading h2 {
    font-weight: 800;
    color: #fbc02d;
    text-transform: uppercase;
}
.faq-heading p {
    color: #444;
    margin-top: -0.5rem;
}
.accordion-button {
    background-color: #f6f6f6;
    border-radius: 8px !important;
    font-weight: 600;
    color: #0d2c46;
    box-shadow: none!important;
}
.accordion-button:not(.collapsed) {
    background-color: #f6f6f6;
    color: #0d2c46;
}
.accordion-item {
    background-color: #f6f6f6;
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}
/* Custom icons for + and - */
.accordion-button::after {
    background-color: #0d2c46;
    content: "+";
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    padding: 16px 16px 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    writing-mode: vertical-lr;
}
.accordion-button:not(.collapsed)::after {
    content: "−";
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    writing-mode: horizontal-tb;
    padding: 15px 18px 19px 19px;
    margin-bottom: -12px;
}

footer {
    background-color: #123a52; /* dark blue */
    color: #fff;
    padding: 3rem 0 0rem;
}
footer a {
    color: #fff;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
.footer-logo img {
    max-width: 200px;
}
.footer-social a {
    font-size: 1.3rem;
    margin-right: 10px;
    color: #fff;
    transition: 0.3s;
}
.footer-social a:hover {
    color: #fbc02d;
}
.footer-bottom {
    background-color: #0d2c46;
    text-align: center;
    padding: 0.8rem 0;
    font-size: 0.9rem;
}