/* CSS variables */
:root {
    --primary-color: #0d6efd;
    --btn-color: #ff5722;
    --nav-bg: #ffffff;
    --overlay-bg: rgba(0, 0, 0, 0.8);
    --card: #0f1724;
    --accent: #00d1ff;
    --accent-2: #7c5cff;
    --muted: #98a0b3;
      }
body{
   background: #333333 !important;
}
.custom-header {
    background-color: #343d44; /* Replace with your color */
}

/*about us*/
 .about-padding {
        padding: 80px 0;
      }

      .about-tag {
        color: #0d6efd;
        font-weight: 600;
        letter-spacing: 1px;
        font-size: 13px;
      }

      .about-title {
        color: #002f6c;
        font-weight: 700;
        line-height: 1.3;
      }

      .divider {
        width: 70px;
        height: 3px;
        background-color: #0d6efd;
        margin: 20px 0 35px;
      }

      .icon-box i {
        font-size: 26px;
        color: #0d6efd;
      }
      /* Core values */
      .core-values li {
        padding: 6px 0;
        font-weight: 500;
      }

      @media (max-width: 991px) {
        .about-image-wrapper {
          height: 350px;
        }
      }
/*end about us*/
 /*chages services*/
 body{
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Ubuntu,sans-serif;
}

/* SECTION */
.services-section{
  position: relative;
  padding: 90px 0;
  background:#eaf4ff;
  overflow:hidden;
}

/* BACKGROUND STRIPS */
.services-section::before,
.services-section::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:90px;
  background:linear-gradient(180deg,#dbeafe,#eaf4ff);
  z-index:0;
}

.services-section::before{ left:0; }
.services-section::after{ right:0; }

.services-section .container{
  position:relative;
  z-index:2;
}

/* LEFT IMAGE */
.service-image{
  height:100%;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.service-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* HEADING */
.services-title{
  font-weight:800;
  letter-spacing:1px;
  color:#002b5c;
}

.services-underline{
  width:60px;
  height:4px;
  background:#00b7ff;
  border-radius:4px;
  margin:10px 0 30px;
}

/* CARD */
.service-card{
  position:relative;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  height:100%;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  transition:all .35s ease;
}

/* FULL-WIDTH IMAGE */
.card-image{
  width:100%;
  height:170px;
  overflow:hidden;
}

.card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* CARD CONTENT */
.card-body{
  padding:22px;
}

/* GLOW */
.service-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top left, rgba(0,183,255,.3), transparent 60%);
  opacity:0;
  transition:.35s ease;
  pointer-events:none;
}

.service-card:hover::before{
  opacity:1;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 60px rgba(0,183,255,.25);
}

/* TEXT */
.service-card h5{
  font-weight:700;
  color:#002b5c;
  margin-bottom:8px;
}

.service-card p{
  font-size:.95rem;
  color:#555;
  margin:0;
}

/* RESPONSIVE */
@media(max-width:991px){
  .service-image{
    height:320px;
    margin-bottom:40px;
  }

  .services-section::before,
  .services-section::after{
    display:none;
  }
}
      
 /* Hero */
.hero {
    padding: 6rem 0 4rem;
      }
.hero h1 {
    font-weight: 800;
    font-size: 2.25rem;
      }
.neon {
    color: #febc1d;
      }
    /* Cards */
      .glass {
        background: linear-gradient(
          180deg,
          rgba(255, 255, 255, 0.02),
          rgba(255, 255, 255, 0.01)
        );
        border: 1px solid rgba(255, 255, 255, 0.04);
        box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
        border-radius: 14px;
      }
      .service-icon {
        width: 68px;
        height: 68px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
      }
      .accent-btn {
        background: linear-gradient(90deg, var(--accent), var(--accent-2));
        border: 0;
        color: #041126;
      }
.prices-sec{
    background:#eaf9ff
}
.gradient-text {
  background: linear-gradient(90deg, #00d1ff, #7c5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.floating-icons svg {
  transition: transform 0.3s;
}

.floating-icons svg:hover {
  transform: translateY(-5px) rotate(10deg);
}
/* Navbar styles */
header {
  background: var(--nav-bg);
  transition: all 0.3s ease;
}
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.btn-quote {
  background: var(--btn-color);
  color: #fff !important;
  border-radius: 6px;
  padding: 0.5rem 1rem;
}
.btn-quote:hover {
  background: #e64a19;
}

/* Overlay menu */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-bg);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}
.overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.overlay-menu {
  background: #fff;
  width: 90%;
  max-width: 400px;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
  text-align: center;
}
.overlay-menu a {
  display: block;
  font-size: 1.2rem;
  margin: 1rem 0;
  color: #333;
  text-decoration: none;
}
.overlay-menu a:hover {
  color: var(--primary-color);
}
.overlay-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(90deg, #1f0f4c, #9894c7);
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-section .btn {
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-section .d-flex span {
  font-size: 0.95rem;
}

/* Process Section */
.process-section {
  background: #fff;
}

.process-card {
  position: relative;
  background: #fff;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.process-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  background: #00695c;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* head mai */
.developers-section h2 {
  font-size: 2rem;
  line-height: 1.4;
}

.developers-section img {
  max-width: 100%;
  border-radius: 8px;
}

.developers-section p {
  font-size: 1rem;
}
/*what we do*/
.info-card {
  padding: 2rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  height: 100%;
}
.who {
  background-color: #9d8731;
} /* mustard gold */
.what {
  background-color: #333740;
} /* dark gray */
.why {
  background-color: #1e5b74;
} /* blue */
/*form*/
/* Parallax background */
.parallax-section {
  background-image: url("../images/cheap wordpress website design services.webp");
  min-height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

/* Unique overlay for parallax */
.parallax-overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding: 60px 0;
}

.contact-card {
  background: rgba(255, 255, 255, 0.5); /* semi-transparent white */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  padding: 2rem;
  height: 100%;
}

.contact-card h5 {
  font-weight: 600;
}

.form-control,
.btn {
  border-radius: 8px;
}

.btn-submit {
  background-color: #064c42;
  color: #fff;
}
.btn-submit:hover {
  background-color: #043830;
}

.section-title h4,
.section-title p {
  color: #fff;
}
/* prices */
.pricing-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  height: 100%;
  transition: 0.3s;
  background: #fff;
}
.pricing-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #28a745;
}
.btn-order {
  border: 1px solid #28a745;
  color: #28a745;
  font-weight: bold;
  border-radius: 50px;
  padding: 6px 18px;
  transition: 0.3s;
}
.btn-order:hover {
  background: #28a745;
  color: #fff;
}
.popular-ribbon {
  position: absolute;
  top: 15px;
  right: -35px;
  background: #28a745;
  color: #fff;
  padding: 3px 50px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: bold;
}
.included-list i {
  color: #28a745;
  margin-right: 8px;
}
footer {
  background: linear-gradient(
    90deg,
    #1f0f4c,
    #9894c7
  ); /* from footer color to section color */
  color: white;
  padding: 40px 0;
}
/* cta with FAQ */
.info-section {
  background: #eaf8ff; /* light blue background */
}

.info-box {
  background: #fff;
  border: 1px solid #b3e0ff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.info-box:hover {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.info-box .icon {
  font-size: 1.5rem;
  color: #0dcaf0; /* Bootstrap info color */
}

.info-box span {
  font-weight: 500;
}

.info-box .btn {
  background: #0dcaf0;
  border: none;
  color: #fff;
  border-radius: 6px;
  padding: 4px 12px;
}

.info-box .btn:hover {
  background: #0bb7db;
}

.faq-section {
        background: #f8fbfd;
        padding: 50px 0;
      }
      .faq-section h2 {
        font-weight: 700;
        margin-bottom: 30px;
        color: #0d6efd;
      }
      .accordion-button::after {
        background-image: none;
        font-weight: bold;
        content: "+";
        font-size: 1.2rem;
        margin-left: auto;
      }
      .accordion-button:not(.collapsed)::after {
        content: "–";
      }