* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 124%;
  height: auto;
  display: block;
}

/*================================================
header - section
=================================================*/

/* Responsive */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .btn-header {
    display: none;
  }
}

/*================================================
hero - section
=================================================*/

/* Tablets: max-width 768px */
@media screen and (max-width: 768px) {
  .about-banner {
    height: 280px;
    background-position: center center;
  }

  .banner-content h1 {
    font-size: 34px;
    text-align: center;
  }

  .banner-content p {
    font-size: 16px;
    text-align: center;
  }
}

/* Mobile: max-width 425px */
@media screen and (max-width: 425px) {
  .about-banner {
    height: 240px;
  }

  .banner-content h1 {
    font-size: 28px;
  }

  .banner-content p {
    font-size: 15px;
  }
}

/* Extra small devices: max-width 375px */
@media screen and (max-width: 375px) {
  .about-banner {
    height: 220px;
  }

  .banner-content h1 {
    font-size: 26px;
  }

  .banner-content p {
    font-size: 14px;
  }
}

/* Smallest devices: max-width 320px */
@media screen and (max-width: 320px) {
  .about-banner {
    height: 200px;
  }

  .banner-content h1 {
    font-size: 24px;
  }

  .banner-content p {
    font-size: 13px;
  }
}

/* ===========================
   Responsive: App Info Section
=========================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .app-container {
    margin: 60px 40px;
    gap: 30px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .content,
  .image {
    flex: 1 1 48%;
    animation: none;
    opacity: 1;
  }

  .content h1 {
    font-size: 36px;
  }

  .content p {
    font-size: 15.5px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 16px;
  }

  .image img {
    max-width: 100%;
    margin-left: 0;
  }
}

/* Small Tablet (max-width: 768px) */
@media (min-width: 600px) and (max-width: 768px) {
  .app-container {
    flex-direction: column;
    text-align: left;
    margin: 50px 30px;
  }

  .content,
  .image {
    flex: 1 1 100%;
    opacity: 1;
    animation: none;
  }

  .content h1 {
    font-size: 32px;
  }

  .content p {
    font-size: 15px;
  }

  .btn {
    font-size: 15px;
    padding: 12px 22px;
  }

  .image img {
    max-width: 70%;
    margin-left: 106px;
  }
}

/* Mobile Large (max-width: 600px) */
@media (max-width: 600px) {
  .app-container {
    margin: 40px 20px;
  }

  .content h1 {
    font-size: 28px;
  }

  .content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Mobile Medium (max-width: 425px) */
@media (max-width: 425px) {
  .content h1 {
    font-size: 26px;
  }

  .content p {
    font-size: 13.5px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* Mobile Small (max-width: 375px) */
@media (max-width: 375px) {
  .content h1 {
    font-size: 24px;
  }

  .btn {
    font-size: 13.5px;
  }
}

/* Extra Small Devices (max-width: 320px) */
@media (max-width: 320px) {
  .app-container {
    margin: 30px 15px;
  }

  .content h1 {
    font-size: 22px;
  }

  .content p {
    font-size: 13px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}


/* Small Tablet (max-width: 768px) */
@media (max-width: 768px) {
  .App-section {
    padding: 50px 30px;
  }

  .App-section h2 {
    font-size: 30px;
  }

  .App-section p {
    font-size: 20px;
  }

  .App-grid {
    gap: 30px;
  }

  .App-card {
    padding: 28px 16px;
  }

  .App-card h3 {
    font-size: 18px;
  }

  .App-card p {
    font-size: 15.5px;
  }
}

/* Mobile Large (max-width: 600px) */
@media (max-width: 600px) {
  .App-section {
    padding: 40px 20px;
  }

  .App-section h2 {
    font-size: 28px;
  }

  .App-section p {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .App-grid {
    gap: 25px;
  }

  .App-card {
    padding: 25px 15px;
  }

  .App-card h3 {
    font-size: 18px;
    flex-direction: row; /* Keep icon and text in a row */
    align-items: center;
    gap: 10px; /* spacing between icon and text */
  }

  .app-icon {
    width: 62px; /* Optional: scale down icon size on small screens */
    height: auto;
  }

  .App-card p {
    font-size: 15px;
  }
}

/* Mobile Medium (max-width: 425px) */
@media (max-width: 425px) {
  .App-section h2 {
    font-size: 26px;
  }

  .App-section p {
    font-size: 17px;
  }

  .App-card h3 {
    font-size: 16px;
  }

  .App-card p {
    font-size: 14.5px;
  }
}

/* Mobile Small (max-width: 375px) */
@media (max-width: 375px) {
  .App-section h2 {
    font-size: 24px;
  }

  .App-section p {
    font-size: 16.5px;
  }

  .App-card h3 {
    font-size: 15.5px;
  }

  .App-card p {
    font-size: 14px;
  }
}

/* Extra Small Devices (max-width: 320px) */
@media (max-width: 320px) {
  .App-section {
    padding: 30px 15px;
  }

  .App-section h2 {
    font-size: 22px;
  }

  .App-section p {
    font-size: 15.5px;
  }

  .App-card h3 {
    font-size: 15px;
  }

  .App-card p {
    font-size: 13.5px;
  }
}

/* ==============================================
   Responsive: App Development Process (Slider)
   ============================================== */

@media (max-width: 600px) {
  .app-process-section .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .left-content {
    margin-top: -10px;
    width: 100%;
  }

  .left-content h2 {
    font-size: 26px;
  }

  .left-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .quote-btn {
    font-size: 14px;
    justify-content: center;
  }

  .right-cards-wrapper {
    overflow: hidden;
    width: 100%;
    margin-bottom: -395px;
  }

  .right-cards {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.4s ease;
    gap: 30px;
  }

  .process-card {
    flex: 0 0 100%; /* show 1 card at a time */
    max-width: 100%;
    box-sizing: border-box;
  }

  .process-card img {
    height: auto;
    max-height: 230px;
  }

  .process-card h3 {
    font-size: 17px;
  }

  .process-card p {
    font-size: 14.5px;
  }

  .arrow-nav {
    display: flex;
    gap: 10px;
    margin-top: 1px;
  }
}

/* ===============================
   Why Choose Us – Fully Responsive
   =============================== */


/* ---------- 1024px and below ---------- */
@media (max-width: 1024px) {
  .choose-container {
    flex-direction: row;
    gap: 40px;
    padding: 0 20px;
  }

  .choose-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .choose-content p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .choose-points ul {
    gap: 12px 24px;
    grid-template-columns: 1fr 1fr;
  }

  .choose-points li {
    font-size: 15px;
  }
}

/* ---------- 768px and below ---------- */
@media (max-width: 768px) {
  .choose-container {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
    gap: 40px;
  }

  .choose-image,
  .choose-content {
    flex: 1 1 100%;
  }

  .choose-content h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .choose-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .choose-points ul {
    gap: 10px 20px;
    align-items: flex-start;

  }

  .choose-points li {
    font-size: 14px;
  }
}

/* ---------- 425px and below ---------- */
@media (max-width: 425px) {
  .choose-content h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .choose-content p {
    font-size: 13.5px;
    margin-bottom: 18px;
  }

  .choose-points ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .choose-points li {
    font-size: 13.5px;
  }
}

/* ---------- 375px and below ---------- */
@media (max-width: 375px) {
  .choose-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .choose-content p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .choose-points li {
    font-size: 13px;
  }
}

/* ---------- 320px and below ---------- */
@media (max-width: 320px) {
  .choose-content h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .choose-content p {
    font-size: 12.5px;
    margin-bottom: 14px;
  }

  .choose-points li {
    font-size: 12.5px;
  }
}

/* =========================
   TECHNOLOGY TABS - RESPONSIVE
============================= */

/* --- Responsive CSS --- */
@media (max-width: 768px) {
  .tech-section {
    padding: 40px 20px;
  }

  .tech-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .tabs {
    gap: 8px;
    margin-bottom: 25px;
  }

  .tabs label {
    padding: 8px 15px;
    font-size: 12px;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin: 20px auto;
  }

  .tech-icon {
    width: 80px;
    height: 80px;
  }

  .tech-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .tech-section {
    padding: 30px 15px;
  }

  .tech-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .tabs label {
    font-size: 13px;
    padding: 7px 12px;
  }

  .tech-grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 15px;
  }

  .tech-icon {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 320px) {
  .tech-section {
    padding: 20px 10px; 
  }

  .tech-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .tabs label {
    font-size: 12px;
    padding: 6px 10px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    gap: 12px;
    margin: 0;
  }

  .tech-icon {
    width: 65px;
    height: 65px;
  }

  .tech-card p {
    font-size: 13px;
  }
}


/*===============================================
  Featured App Projects - Responsive Enhancements
=================================================*/

/* Tablet (≤992px) - Show 2 cards per row */
@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .project-card img {
    height: 220px;
  }

  .project-content h3 {
    font-size: 20px;
  }

  .project-content p {
    font-size: 15px;
  }

  .tech-stack {
    font-size: 13.5px;
  }
}

/* Small Tablet and Mobile (≤768px) */
@media (max-width: 768px) {
  .featured-projects {
    padding: 60px 15px;
  }

  .featured-projects .section-title {
    font-size: 30px;
  }

  .featured-projects .section-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .project-card img {
    height: 200px;
  }

  .project-content {
    padding: 16px;
  }

  .project-content h3 {
    font-size: 18px;
  }

  .project-content p {
    font-size: 14px;
  }

  .tech-stack {
    font-size: 13px;
  }
}

/* Mobile (≤600px) - 1 card per row */
@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 20px 20px;
  }

  .project-card img {
    height: 180px;
  }

  .project-content {
    padding: 15px;
  }

  .project-content h3 {
    font-size: 17px;
  }

  .project-content p {
    font-size: 14px;
  }
}

/* Extra Small Devices (≤375px) */
@media (max-width: 375px) {
  .featured-projects .section-title {
    font-size: 26px;
  }

  .project-card img {
    height: 160px;
  }

  .project-content h3 {
    font-size: 16px;
  }

  .project-content p {
    font-size: 13px;
  }

  .tech-stack {
    font-size: 12.5px;
  }
}

/* ============================
   FAQ Section – Responsive
============================ */
/* --- Responsive CSS for FAQ Section --- */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 15px;
  }

  .faq-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 15px;
  }

  .faq-question .symbol {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .faq-question .symbol::before {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .faq-item input:checked + .faq-question .symbol::before {
    margin-bottom: -10px;
  }

  .faq-answer {
    padding: 0 20px;
    font-size: 15px;
  }

  .faq-item input:checked ~ .faq-answer {
    padding: 12px 20px 18px;
  }

  .faq-answer p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 30px 10px;
  }

  .faq-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .faq-question {
    padding: 14px 15px;
    font-size: 12px;
  }

  .faq-question .symbol {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .faq-question .symbol::before {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .faq-item input:checked + .faq-question .symbol::before {
    margin-bottom: -8px;
  }

  .faq-answer {
    padding: 0 15px;
    font-size: 14px;
  }

  .faq-item input:checked ~ .faq-answer {
    padding: 10px 15px 15px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
  .footer-map {
    right: 10%;
    width: 500px;
  }
}

@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start; /* Align items to the start (left) */
    text-align: left; /* Align text to the left */
    gap: 33px;
  }

  .footer-column {
    flex: 1 1 auto;
    min-width: unset;
    width: 100%;
    max-width: 400px; /* Still keep a max-width for readability */
  }

  .footer-about {
    max-width: 400px;
  }

  .footer-logo {
    margin-bottom: 20px;
    margin-top: 0;
  }

  .footer-column h3 {
    margin-bottom: 20px;
  }

  .footer-column .info-line {
    justify-content: flex-start; /* Align info lines to the left */
  }

  .social-icons {
    margin-top: 25px;
  }

  .social-icons a {
    margin-right: 10px; /* Maintain right margin for spacing */
    margin-left: 0; /* Ensure no left margin from previous centering */
  }

  .footer-map {
    right: 0;
    top: 60%;
    transform: translateY(-50%) translateX(20%);
    opacity: 0.05;
    width: 400px;
  }

  hr {
    margin: 60px 20px 20px;
  }

  .footer-bottom {
    padding: 0 20px;
    text-align: left; /* Align bottom text to the left */
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 20px 20px;
  }

  .footer-logo {
    margin-top: -121px;
    margin-left: -4px;
  }
  .footer-about p {
    margin-top: -118px;
  }
  .footer-map {
    display: none;
  }

  .footer-column {
    padding: 0 10px;
  }

  .footer-column h3 {
    font-size: 18px;
  }

  .footer-column a,
  .footer-column .info-line,
  .footer-bottom {
    font-size: 14px;
  }

  .footer-bottom p {
    line-height: 1.5;
  }

  .footer-bottom a br {
    display: none;
  }

  .footer-bottom a span {
    display: inline;
    margin-top: 0;
  }

  hr {
    margin: 40px 10px 20px;
  }
}

@media (max-width: 480px) {
  .footer-about p {
    font-size: 14px;
  }

  .social-icons {
    margin-top: 20px;
  }

  .social-icons a {
    font-size: 14px;
    padding: 6px;
  }

  .footer-column h3 {
    font-size: 17px;
  }
}
