/* responsive.css */
/* ===========================
   Responsive breakpoints and adjustments
   =========================== */


/* ===========================
    HERO SECTION 
=========================== */
/* RESPONSIVE FOR LAPTOP (≤ 1024px) */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 60px;
  }

  /* LEFT CONTENT */
  .hero-left {
    max-width: 700px;
    width: 100%;
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 16px;
    margin: 0 auto;
  }

  .group-btn {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-social-strip {
    justify-content: center;
  }

  /* RIGHT SIDE IMAGE */
  .hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
  }

  .hero-image-wrap {
    width: 100%;
  }

  .hero-image {
    width: 100%;
    height: auto;
  }

  /* FLOATING REVIEW */
.review-card {
	right: 0;
	top: 620px;
	padding: 10px 7px;
}


.review-content {
	display: inline;
}

  /* ROUND BUTTON */
.rounded-btn-full {
	margin-top: 30px;
}

  /* ORBITS smaller */
  .orbit {
    transform: scale(0.7);
  }

  .section-header {
    justify-content: center;
    margin-bottom: 0px;
  }
}

/* RESPONSIVE FOR TABLET (≤ 768PX) */
@media (max-width: 768px) {
.hero-content {
	margin-top: 0px;
}

.hero-title {
	font-size: 45px;
	line-height: 1.2;
	margin-top: 0px;
}

  .hero-description {
    font-size: 16px;
  }

  .title-box h2 {
    font-size: 20px;
  }

  /* Buttons stacked */
.group-btn {
	flex-direction: row;
	gap: 16px;
	align-items: center;
}

  .btn-wrap {
    width: 100%;
    max-width: 260px;
  }

  /* Social icons smaller */
  .social-icons {
    gap: 14px;
  }

  /* Reduce circular button */
  .rounded-btn {
    transform: scale(0.85);
  }

  .review-card {
    right: 0;
    top: 75%;
    padding: 10px 7px;
    position: absolute;
  }


}


/* MOBILE (≤ 576px) */
@media (max-width: 576px) {
.title-box h2 {
	font-size: 20px;
	line-height: 19px;
}

  .hero-title {
    font-size: 35px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.6;
  }


  /* Image smaller */
.hero-image-wrap {
	max-width: 400px;
}

  /* Hide heavy decorations for performance */
  .orbit,
  .dot {
    display: none;
  }

  /* Circular explore button smaller */
  .rounded-btn {
    transform: scale(0.7);
  }

  .rounded-btn-full {
    top: 50%;
    left: -10%;
  }

  .circular-text svg {
    width: 180px;
    height: 180px;
  }

  /* Review card center */

  .review-card {
    right: 0;
    top: 65%;
    padding: 10px 7px;
    position: absolute;
    transform: scale(0.8);
  }

  .btn-wrap {
    width: 100%;
    max-width: 170px;
  }

  .btn-wrap {
    height: 40px;
  }


}

@media (max-width: 480px) {
    .hero-title {
      font-size: 30px;
      line-height: 1.15;
      margin-top: 24px;
    }
    .btn-wrap {
      width: 100%;
      max-width: 260px;
    }
    .short-desc {
    width: 90%;
    text-align: center;
  }
  .hero-container{
    padding: 20px 20px;
  }




}

/* SMALL MOBILE (≤ 400px) */
@media (max-width: 400px) {
  .review-card {
    top: 75%;
  }

  .rounded-btn-full {
    top: 58%;
    left: -12%;
  }

  .hero-container {
    max-width: 100%;
  }
  .hero-image-wrap {
    width: 100%;
  }
  .title-box h2 {
    font-size: 18px;
  }
  .hero-title {
    font-size: 30px;
  }

  .hero-description {
    font-size: 15px;
  }

  .btn-wrap {
    max-width: 140px;
  }

  .btn {
    font-size: 12px;
  }

    .profile-title {
      font-size: 30px !important;
    }

    .profile-left {
      align-items: center;
    }
    .stat-description {
    text-align: center;
  }
    
  .profile-container {
    margin-top: 30px !important;
  }

  .profile-container {
    max-width: 100%;
    padding: 20px 30px;
  }

/* development process  */
.dev-process-section {
	flex-direction: column;
}

.circle-list {
	flex-direction: row;
  gap: 0px;
}

.progress-sidebar {
	width: 100%;
	flex-direction: column;
}

.process-slide {
	padding: 20px;
  height: auto !important;
  line-height: 30px !important;
}

.process-slide h2 {
	font-size: 30px !important;
}


/* project section  */
.projects-section {
	padding: 100px 0px;
}

.projects-container {
	max-width: 91%;
}

}

/* EXTRA SMALL MOBILE (≤ 350px) */
@media (max-width: 350px) {
  .review-card {
    right: -15%;
    top: 74%;
    transform: scale(0.7);
  }

  .rounded-btn-full {
    top: 56%;
    left: -17%;
  }

  .hero-title {
    font-size: 27px;
  }

  .btn-wrap {
    max-width: 120px;
  }

  .btn {
    font-size: 11px;
  }

}




/* ===========================
    ABOUT SECTION 
=========================== */
/* RESPONSIVE FOR LAPTOP (≤ 1024px) */
@media (max-width: 1024px) {
  .about-right {
    width: 50%;
  }
  .stat-number {
    font-size: 60px;
    font-weight: 700;
    color: var(--color-primary-1);
    margin: 0;
    -webkit-text-fill-color: color;
  }

  .profile-container {
    grid-template-columns: 2fr 1fr;
  }

  .profile-center {
    grid-column: span 1;
  }

}


/* RESPONSIVE FOR TABLET (≤ 1024px) */
@media (max-width: 768px) {
  .profile-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .profile-title {
    font-size: 34px;
  }

  .stat-number {
    font-size: 42px;
  }
}


/* MOBILE (≤ 576px) */
@media (max-width: 576px) {
.profile-section {
    padding: 80px 0;
  }

  .profile-heading {
    display: grid;
    justify-content: center;
  }

  .stat-number {
    font-size: 70px;
  }

  .about-right {
    display: none;
  }
  .heading-left {
    width: 100%;
  }

  .heading-line {
    justify-content: center;
  }

  .profile-container {
    margin-top: 50px;
  }

}



/* ===========================
    PROCESS SECTION 
=========================== */
/* RESPONSIVE FOR LAPTOP (≤ 1024px) */
@media (max-width: 1024px) {
  .process-slide {
    display: block;
  }

  .process-text {
    width: 100%;
  }

  .process-icon {
    height: 22%;
  }

}

/* RESPONSIVE FOR TABLET (≤ 1024px) */
@media (max-width: 768px) {
  .dev-process-section {
    width: 95%;
  }

  .process-slide h2 {
    margin-bottom: 0px;
    font-size: 2rem;
  }

  .process-slide {
    font-size: 20px;
    line-height: 1.7;
  }
  .process-checklist {
    margin-top: 20px;
  }


  }


/* MOBILE (≤ 576px) */
@media (max-width: 576px) {

}

/* ===========================
    PRICING SECTION 
=========================== */

@media (max-width:900px){

  .pricing-container{
    flex-direction:row;
    align-items:center;
  }

  .pricing-section {
    padding: 40px 0px;
  }

}




/* ===========================
    FOOTER SECTION 
=========================== */
/* small laptop (≤ 992px)  */
@media (max-width: 992px) {
  .footer-brand {
    text-align: left;
  }

  .subscribe-form {
    justify-content: start;
  }

}
/* ---------- Tablet ---------- */
@media (max-width:768px){

    .footer-container{
      text-align:left;
    }
    
    .footer-container{
      grid-template-columns: 1fr;
      gap:40px;
    }

    .footer-brand{
      order:-1; /* brand appears first on tablet */
    }

    .subscribe-form{
      flex-direction:column;
      align-items:start;
    }

    .subscribe-form input{
      width:100%;
      max-width:320px;
    }

    .subscribe-form button{
      width:100%;
      max-width:320px;
    }

    .footer-bottom{
      flex-direction:column;
      gap:18px;
      text-align:center;
    }

    .footer-brand {
      text-align: left;
    }

}
/* small mobile (≤ 480px) */
@media (max-width:480px){
  .footer{
    padding:70px 15px 25px;
  }
  .logo{
    font-size:30px;
  }
  .tagline{
    font-size:13px;
  }
  .footer-contact li{
    justify-content:start;
  }
  .social-icons{
    gap:14px;
  }

}




/* ===============================
   MOBILE BOTTOM NAVIGATION
   =============================== */

.mobile-bottom-nav {
  display: none;
}

/* Mobile + Tablet */
@media (max-width: 1024px) {

  /* Hide desktop header */
  .desktop-header {
    display: none !important;
  }

  /* Prevent content being hidden behind nav */
  body {
    padding-bottom: 80px;
  }

  .bottom-nav.mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.12);
    z-index: 1200;
    justify-content: center;
  }

  .bottom-nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    max-width: 520px;
    margin: 0;
    padding: 8px 6px;
  }

  .bottom-nav-menu li {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bottom-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-neutral-dark);
    padding: 6px 10px;
    transition: color 0.3s ease;
    user-select: none;
  }

  .bottom-nav-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .bottom-nav-link:hover,
  .bottom-nav-link:focus {
    color: var(--color-primary-1);
  }

  .bottom-nav-link:hover svg,
  .bottom-nav-link:focus svg {
    transform: translateY(-2px);
  }

}
/* ===============================
   MOBILE BOTTOM NAVIGATION FIXED
   =============================== */

.mobile-bottom-nav {
  display: none;
  box-sizing: border-box; /* Ensure padding/borders included */
  padding: 0 10px; /* Small side padding for safe edges */
  left: 0;
  right: 0;
}

/* Mobile + Tablet */
@media (max-width: 1024px) {

  /* Hide desktop header */
  .desktop-header {
    display: none !important;
  }

  /* Prevent body content hidden behind nav */
  body {
    padding-bottom: 80px;
    margin: 0; /* Remove default margin to prevent overflow */
  }

  .bottom-nav.mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    background: var(--color-white);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.12);
    z-index: 1200;
    justify-content: space-around;
    padding: 8px 0;
    box-sizing: border-box;
  }
  .bottom-nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .bottom-nav-menu li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto; /* Allow flex items to grow/shrink evenly */
    box-sizing: border-box;
  }

  .bottom-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-neutral-dark);
    padding: 6px 6px;
    transition: color 0.3s ease;
    user-select: none;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%; /* Prevent overflow */
  }

  .bottom-nav-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
  }

  .bottom-nav-link:hover,
  .bottom-nav-link:focus {
    color: var(--color-primary-1);
  }

  .bottom-nav-link:hover svg,
  .bottom-nav-link:focus svg {
    transform: translateY(-2px);
  }

  /* ===============================
     MOBILE HIRE ME BUTTON
     =============================== */

  .m-btn-wrap {
    position: relative;
    width: 96px;
    height: 42px;
    overflow: hidden;
    border-radius: 14px;
    margin: 0 auto; /* Center the button */
  }

  .m-btn-wrap .btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.35s ease;
    border-radius: 14px;
  }

  .m-btn-wrap .btn.base {
    background: linear-gradient(
      45deg,
      var(--color-primary-1),
      var(--color-primary-2)
    );
    color: var(--color-white);
    z-index: 1;
  }

  .m-btn-wrap .btn.hover {
    background: linear-gradient(
      135deg,
      var(--color-secondary-1),
      var(--color-secondary-2)
    );
    color: var(--color-white);
    transform: translateY(100%);
    z-index: 2;
  }

  .m-btn-wrap:hover .btn.base {
    transform: translateY(-100%);
  }

  .m-btn-wrap:hover .btn.hover {
    transform: translateY(0%);
  }
}

/* Desktop safety */
@media (min-width: 1025px) {
  .mobile-bottom-nav {
    display: none !important;
  }
}


/* ===========================
   RESPONSIVE – SERVICE CARDS
   =========================== */

/* Mobile devices */
@media (max-width: 576px) {
  .services-content {
    gap: 20px;
    margin-top: 32px;
  }

  .card {
    width: 100%;
    padding: 28px 22px;
  }

  .icon {
    font-size: 40px;
    margin-bottom: 14px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
  }

  .card::after {
    width: 240px;
    height: 240px;
    filter: blur(24px);
  }
}

/* Tablet devices */
@media (min-width: 577px) and (max-width: 992px) {
  .services-content {
    gap: 24px;
  }

  .card {
    width: calc(50% - 12px);
    padding: 32px 24px;
  }

  .icon {
    font-size: 44px;
  }

  h3 {
    font-size: 21px;
  }

  p {
    font-size: 14.5px;
  }

}

/* Laptop & Desktop */
@media (min-width: 1200px) {

}
