@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');


body {
  margin: 0px;
  padding: 0px;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  position: relative;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #111;
  margin-left: -50px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.solid {
  background-color: #3b2ce3;
  color: white;
  border: none;
}

.btn.outline {
  background-color: transparent;
  color: #3b2ce3;
  border: 2px solid #3b2ce3;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100vh;
  background-color: rgba(34, 34, 34, 0.9);
  color: white;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
  transition: left 0.3s ease;
}

.mobile-menu a,
.mobile-menu button {
  color: white;
  text-align: left;
  text-decoration: none;
  background: none;
  border: none;
  font-size: 1rem;
}

.close-btn {
  align-self: flex-end;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 900;
}


@media screen and (max-width: 768px) {

  .nav-links,
  .auth-buttons {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}




.custom-hero {
  position: relative;
  background: #f9fbff;
  padding: 80px 20px;
  overflow: hidden;
}

.custom-hero::before {
  content: "";
  background: url('../assets/Ellipse\ 2.png') no-repeat top left;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  z-index: 0;
}

.custom-hero .container {
  position: relative;
  z-index: 2;
}

.custom-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d0d3f;
  line-height: 1.4;
  margin-bottom: 20px;
}

.custom-hero h1 span {
  color: #5d3ef9;
}

.custom-hero p {
  font-size: 1rem;
  color: #1e1e3e;
  margin-bottom: 30px;
}

.custom-btn1 {
  background-color: #fcbc3d;
  padding: 14px 28px;
  font-weight: 600;
  color: #0d0d3f;
  border-radius: 40px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.custom-btn1:hover {
  background-color: #e3a92f;
}

.hero-image img {
  margin-top: -50px;
  max-width: 100%;
}

@media (max-width: 768px) {
  .custom-hero h1 {
    font-size: 1.6rem;
    text-align: center;
  }

  .custom-hero p {
    text-align: center;
  }

  .custom-btn {
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  .hero-text {
    text-align: center;
    margin-bottom: 40px;
  }
}

.typed-highlight {
  color: #5d3ef9;
  font-weight: 800;
}



/* what-we-do-section start  */
.service-section{
  background-color: #f9fbff;
}
.section-subtitle {
  font-size: 0.9rem;
  color: #4e4e4e;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
}

.highlight-blue {
  color: #236df7;
}

.service-box {
  border: 1px solid #eee;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  height: 100%;
  text-align: left;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
}

.service-box:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.service-box h5 {
  margin-top: 1rem;
  font-weight: 600;
}

.service-box p {
  font-size: 0.95rem;
  color: #444;
}

.icon-box {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
}

.bg-lightblue { background-color: #d8e5ff; color: #3a71e8; }
.bg-lightorange { background-color: #ffe9d5; color: #f09c4f; }
.bg-lightgreen { background-color: #ddfae9; color: #34c88a; }
.bg-lightyellow { background-color: #fff4ce; color: #b59828; }
.bg-lightred { background-color: #ffe3e3; color: #d9534f; }
.bg-lightgray { background-color: #eaeaea; color: #4e4e4e; }

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.5rem;
  }
}
/* what-we-do-section end */


/* project-showcase start */
.project-showcase {
  padding: 100px 0;
  background: #fff;
}

.project-showcase .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.text-column {
  flex: 1 1 400px;
  max-width: 500px;
}

.text-column h5 {
  font-size: 14px;
  color: #262626;
  margin-bottom: 10px;
}

.text-column h2 {
  font-size: 28px;
  font-weight: bold;
  color: #09092b;
}

.text-column h2 span {
  color: #593FFB;
}

.text-column p {
  margin: 20px 0;
  color: #262626;
  font-size: 16px;
  line-height: 1.6;
}

.visit-btn {
  background: #FFC247;
  color: #09092b;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.visit-btn:hover {
  background: #e0a100;
}

/* Image Column */
.image-column {
  flex: 1 1 300px;
  max-width: 500px;
}

.image-column img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .project-showcase .container {
    flex-direction: column;
    text-align: center;
  }

  .text-column h2 {
    font-size: 22px;
  }

  .image-column {
    max-width: 100%;
  }

  .image-column img {
    max-width: 100%;
    margin-top: 20px;
  }
}


/* project-showcase end */


/* build-agency-benefits Section start  */

/* Why Work With Me Section */
.whywork-section {
  background: linear-gradient(to bottom, #f5f7ff, #ffffff);
}

.section-tag {
  font-size: 0.875rem;
  color: #555;
}

.section-title2 {
  font-size: 1.75rem;
  font-weight: 700;
  max-width: 750px;
  margin: auto;
}

.highlighted-text {
  /* background: linear-gradient(to right, #5f00ff, #c200fb); */
  background-color: #593FFB;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.white-box {
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.info-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.info-card p {
  font-size: 0.95rem;
  color: #555;
}

.icon-img {
  height: 72px;
  width: 72px;
  object-fit: contain;
}


/* build-agency-benefits Section end  */


/* how it work start  */
.how-it-works {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.how-it-works h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.how-it-works h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.how-it-works h3 span {
  color: #593FFB;
}

.scroll-btn {
  background: #facc15;
  color: #000;
  padding: 10px 20px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-bottom: 30px;
}

.swiper {
  padding-top: 20px;
}

.swiper-slide {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 350px;
}

.step-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #593FFB;
}

/* .day-badge {
  background: #593FFB;
  color: white;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: bold;
  float: right;
} */

.step-content {
  height: 120px;
  margin-top: 40px;
}

.step-content p {
  margin: 0 0 10px;
  font-size: 15px;
  color: #333;
}

.Ready {
  height: 247px;
  background-color: black;
}

.Discuss {
  background: #593FFB;
  color: white;
  border-radius: 20px;
  padding: 10px;
  border-color: transparent;
}

@media (max-width: 768px) {
  .swiper-slide {
    max-width: 100%;
    padding: 25px;
    border-radius: 25px;
  }

  .how-it-works h3 {
    font-size: 24px;
  }

  .step-title {
    font-size: 16px;
  }

  .step-content{
    height: 160px;
  }
}

/* how it work end  */

/* Pricing start  */


.custom-section {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #000;
  overflow-x: hidden;
  box-sizing: border-box;
}


.custom-title-wrapper {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 10px;
}

.custom-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.custom-subtitle {
  font-size: 16px;
  color: #666;
}

/* Tabs (visible only on small screens) */
.custom-plan-tabs {
  display: none;
  width: 100%;
  max-width: 700px;
  margin: 20px auto 0;
  display: flex;
  border: 1px solid #dcdcdc;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background-color: #f8f8f8;
}

.custom-tab-btn {
  flex: 1;
  text-align: center;
  background: transparent;
  border: none;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-tab-btn.active {
  background-color: #000;
  color: #fff;
}

/* Card container */
.custom-pricing-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 20px;
}

/* Each card */
.custom-pricing-card {
  width: 270px;
  border: 1px solid #e5e5e5;
  border-radius: 15px;
  padding: 25px 20px;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
  position: relative;

}

.custom-pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111;
}

.custom-pricing-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 16px;
}

/* Features list */
.custom-pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.custom-pricing-card ul li {
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.custom-pricing-card ul li::before {
  content: "✓";
  color: #00a86b;
  position: absolute;
  left: 0;
}

/* Button */
.custom-btn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}

.custom-btn:hover {
  background-color: #222;
}

/* "Most Popular" tag */
.custom-tag {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #d1f2e9;
  color: #00a86b;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.custom-tag {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #d1f2e9;
  color: #00a86b;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.custom-tag-center {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  top: -14px;
}



/* Responsive styles */
@media (max-width: 767px) {
  .custom-pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .custom-pricing-card {
    width: 90%;
    display: none;
    /* JS will control visibility */
  }

  .custom-plan-tabs {
    display: flex;
  }
}

@media (min-width: 768px) {
  .custom-plan-tabs {
    display: none;
  }

}

/* Pricing end  */

/* footer start  */
.footer {
  background-color: #02033B;
  color: white;
  font-family: Arial, sans-serif;
}

.newsletter-box {
  background-color: #FFC247;
  border-radius: 25px;
  padding: 2rem;
  background-image: url('../assets/Icons/certo-dark-yellow.svg.png');
  /* Replace with actual image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  max-width: 400px;
}

.newsletter-box h5 {
  font-weight: 700;
  color: #1D1D1D;
}

.newsletter-box p {
  font-size: 0.9rem;
  color: #1D1D1D;
}

.newsletter-input {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 1rem;
}

.newsletter-input input {
  flex: 1;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.newsletter-input button {
  background-color: #02004D;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.footer-links h6 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.contact-info p {
  font-size: 0.9rem;
  margin: 0.2rem 0;

}

.contact-info p a {
  text-decoration: none;
  color: white;
}

.social-icons a {
  color: white;
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid white;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 768px) {
  .newsletter-box {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .newsletter-input input {
    padding: 0.5rem;
  }

  .newsletter-input button {
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }
}