/* ===================================
   GLOBAL STYLES
   =================================== */
:root {
  --header-padding-desktop: 12px 60px;
  --header-padding-lg: 18px 40px;
  --header-padding-md: 16px 30px;
  --header-padding-sm: 12px 20px;
}

/* =====================
   HEADER
   ===================== */
.header {
  padding: var(--header-padding-desktop);
}

/* =====================
   MOBILE MENU
   ===================== */
.hamburger {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  min-height: 100vh;
  background: #030213;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 9999;
  overflow-y: auto;
}

.mobile-menu.show {
  right: 0;
}

.mobile-menu .nav-item {
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
}

.mobile-menu .cta-btn {
  margin-top: 20px;
  width: 100%;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mobile-menu-header .close-btn {
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* =====================
   GLOBAL RESPONSIVENESS
   ===================== */
@media (max-width: 1280px) {
  .hero-content,
  .about-content,
  .services-header,
  .it-content,
  .pricing-header,
  .testimonials-header,
  .contact-header {
    max-width: 1204px;
    margin: 0 auto;
  }

  .hero-content {
    max-width: 1380px;
    margin: 0 auto;
  }
}

@media (max-width: 1200px) {
  .header {
    padding: var(--header-padding-lg);
  }
}

@media (max-width: 992px) {
  /* Hide desktop nav */
  .nav-menu,
  .cta-btn {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: block;
  }

  /* Hero adjustments */
  .hero-content {
    flex-direction: column;
    text-align: center;
    margin-top: 60px;
  }
  .hero-left {
    max-width: 80%;
  }
  .hero-right {
    display: none;
  }
  .hero-title {
    font-size: clamp(24px, 5vw, 32px);
  }
  .hero-subtitle {
    font-size: clamp(14px, 3vw, 18px);
  }
  .hero-description {
    font-size: clamp(12px, 2.5vw, 14px);
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .scroll-indicator {
    display: none;
  }

  /* About */
  .about-content {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
    .about-left,
  .about-right {
    width: 100%;
  }

  .about-left {
    margin-top: 20px;
  }
  .about-image {
    max-width: 100%;
    margin-top: 20px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
  }

  /* IT Section */
  .it-content {
    flex-direction: column;
  }
.it-section{
    padding-bottom: 0px;
}

/* CTA Section */
.cta-content {
    gap: 20px;
  }

  .cta-left h3 {
    font-size: 28px;
  }

  .cta-left p {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-right {
    text-align: center;
  }

  /* Contact */
  .contact-content {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }
  .footer-left {
    max-width: 100%;
  }
}

@media (max-width: 639px) {
  body {
    font-size: 0.875rem; /* 14px */
  }

  .header {
    padding: var(--header-padding-sm);
  }

  .section-title {
    font-size: 1.25rem; /* 20px */
  }
  .section-description {
    font-size: 0.8125rem; /* 13px */
  }

  .services-grid,
  .solutions-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services-grid{
    padding-top: 30px;
  }


  .contact-section {
    padding: 50px 0;
  }

  .contact-content {
    align-items: normal;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

.hero-content {
   
    padding: 80px 10px 0px;
  }

  /* Hero features */
  .hero-features {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  /* Footer */
  .footer-content,
  .footer-right {
    flex-direction: column;
  }

  /* Common flex direction */
  .hero-content,
  .about-content,
  .contact-content {
    flex-direction: column;
    text-align: center;
  }

  /* sevice section */

  .services-section {
    padding: 50px 0 10px 0;
  }

  /* About section */
  .about-content {
    padding: 40px 15px;
    gap: 20px;
  }

  .about-image {
    width: 100%;
    max-width: 100%;
  }
  .about-left p {
    font-size: 0.875rem; /* 14px */
    line-height: 1.6;
  }
  .about-content h3{
    padding-top: 30px;
  }


  /* CTA Section */
    .cta-content {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .cta-left h3 {
    font-size: 24px;
  }

  .cta-left p {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .cta-right {
    margin-top: 25px;
  }
}

/* =====================
   MIN-WIDTH ADJUSTMENTS
   ===================== */
@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
  .hero-title {
    font-size: clamp(28px, 4vw, 42px);
  }
  .hero-subtitle {
    font-size: clamp(16px, 2vw, 18px);
  }
  .hero-description {
    font-size: clamp(14px, 1.5vw, 15px);
  }

  .stat-number {
    font-size: 1.375rem; /* 22px */
  }
  .stat-label {
    font-size: 0.6875rem; /* 11px */
  }

  .section-title {
    font-size: 1.75rem; /* 28px */
  }

  .services-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .nav-menu {
    display: flex;
  }

  .hero-title {
    font-size: clamp(36px, 4vw, 48px);
  }
  .hero-subtitle {
    font-size: clamp(18px, 2vw, 20px);
  }
  .hero-description {
    font-size: clamp(14px, 1.5vw, 16px);
  }

  .hero-buttons {
    flex-direction: row;
    gap: 30px;
  }

  .btn-primary {
    flex: 1;
  }

  .stat-number {
    font-size: 1.5rem; /* 24px */
  }
  .stat-label {
    font-size: 0.75rem; /* 12px */
  }

  .section-title {
    font-size: 1.875rem; /* 30px */
  }

  .services-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }

  .hero-title {
    font-size: clamp(38px, 3vw, 40px);
  }
  .hero-subtitle {
    font-size: 1.3125rem; /* 21px */
  }
  .hero-description {
    font-size: 0.90625rem; /* 14.5px */
  }

  .stat-number {
    font-size: 1.625rem; /* 26px */
  }
  .section-title {
    font-size: 1.9375rem; /* 31px */
  }

  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .hero-content {
    max-width: 1380px;
    margin: 0 auto;
  }

  .about-content,
  .services-header,
  .it-content,
  .pricing-header,
  .testimonials-header,
  .contact-header {
    max-width: 1204px;
    margin-left: auto;
    margin-right: auto;
  }
}






















