/* Base Styles */
:root {
  --primary: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --primary-very-light: #ede9fe;
  --secondary: #f3f4f6;
  --dark: #1f2937;
  --darker: #111827;
  --light: #f9fafb;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --gray-dark: #4b5563;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;
  --white: #ffffff;
  --black: #000000;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius: 0.5rem;
  --transition: all 0.3s ease;
  --container-width: 1280px;
}

/* Dark Mode Variables */
.dark-mode {
  --primary: #a78bfa;
  --primary-dark: #8b5cf6;
  --primary-light: #c4b5fd;
  --primary-very-light: #4c1d95;
  --secondary: #374151;
  --dark: #f9fafb;
  --darker: #f3f4f6;
  --light: #1f2937;
  --gray: #9ca3af;
  --gray-light: #4b5563;
  --gray-dark: #d1d5db;
  --white: #111827;
  --black: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  color: var(--dark);
  background-color: var(--light);
  transition: var(--transition);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-very-light);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background-color: var(--gray-light);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn i {
  margin-right: 0.5rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  box-shadow: var(--shadow);
  padding: 1rem 0;
  transition: var(--transition);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.main-nav {
  display: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.875rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-dark);
  transition: var(--transition);
}

.theme-toggle:hover {
  background-color: var(--gray-light);
}

.light-icon,
.dark-icon {
  font-size: 1.25rem;
}

body:not(.dark-mode) .dark-icon,
body.dark-mode .light-icon {
  display: none;
}

.login-btn {
  display: none;
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--dark);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  z-index: 200;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 1.5rem;
}

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

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

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--dark);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--gray-light);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary);
}

.mobile-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 28rem;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.modal-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-very-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.modal-icon i {
  color: var(--primary);
  font-size: 1.5rem;
}

.modal-close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--gray);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--gray-dark);
}

input,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  background-color: var(--white);
  color: var(--dark);
  font-family: inherit;
  font-size: 0.875rem;
  transition: var(--transition);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-very-light);
}

.password-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.forgot-password {
  font-size: 0.75rem;
  font-weight: 500;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input {
  width: auto;
}

.checkbox-group label {
  margin-bottom: 0;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.slides {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  color: var(--white);
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 36rem;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.slide-badge i {
  margin-right: 0.5rem;
}

.slide h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.slide p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.text-link {
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
}

.text-link span {
  margin-left: 0.25rem;
  transition: var(--transition);
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link.light {
  color: var(--white);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-nav:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.slider-nav.prev {
  left: 1rem;
}

.slider-nav.next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active,
.dot:hover {
  background-color: var(--white);
}

/* Section Styles */
section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.section-header.left-aligned {
  text-align: left;
  margin-left: 0;
}

.section-badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Services Highlights */
.services-highlights {
  background-color: var(--secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}

.service-icon i {
  color: var(--white);
  font-size: 1.25rem;
}

.service-card h3 {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.875rem;
}

/* About Summary */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.feature-list {
  margin: 2rem 0;
}

.feature-list li {
  display: flex;
  margin-bottom: 1.5rem;
}

.feature-list i {
  color: var(--primary);
  margin-right: 1rem;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-list strong {
  display: block;
  color: var(--dark);
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-card {
  background-color: var(--darker);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12rem;
  height: 12rem;
  background-color: rgba(124, 58, 237, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.mission-icon {
  position: relative;
  z-index: 1;
  width: 6rem;
  height: 6rem;
  background-color: rgba(124, 58, 237, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mission-icon i {
  color: var(--primary);
  font-size: 3rem;
}

.mission-card h3 {
  position: relative;
  z-index: 1;
  color: var(--white);
  margin-bottom: 1rem;
}

.mission-card p {
  position: relative;
  z-index: 1;
  color: var(--gray-light);
}

/* Callback Section */
.callback-section {
  background-color: var(--secondary);
}

.callback-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.map-container {
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.callback-form-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* Clients Section */
.clients-carousel {
  overflow: hidden;
  position: relative;
}

.clients-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.client-item img {
  height: 5rem;
  width: 10rem;
  object-fit: contain;
  filter: grayscale(100%) opacity(70%);
  transition: var(--transition);
}

.client-item:hover img {
  filter: grayscale(0%) opacity(100%);
}

.client-item p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray);
}

/* Footer */
.footer {
  background-color: var(--darker);
  color: var(--gray-light);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-light);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.contact-info li {
  display: flex;
  margin-bottom: 1rem;
}

.contact-info i {
  color: var(--primary-light);
  margin-right: 1rem;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info a {
  color: var(--gray-light);
}

.contact-info a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.875rem;
}

/* Page Header */
.page-header {
  background-color: var(--primary-very-light);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.125rem;
  color: var(--gray-dark);
}

/* Services Detailed */
.services-detailed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-detailed-card {
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  background-color: var(--white);
  transition: var(--transition);
}

.service-detailed-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-detailed-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.service-detailed-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.service-detailed-icon i {
  color: var(--white);
  font-size: 2rem;
}

.service-features {
  margin-top: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-dark);
}

.feature-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  margin-right: 0.75rem;
}

/* CTA Section */
.cta-section {
  background-color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.cta-section.purple {
  background-color: var(--primary);
  color: var(--white);
}

.cta-section.purple h2 {
  color: var(--white);
}

.cta-section.purple p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-actions.centered {
  justify-content: center;
}

/* About Page */
.about-header {
  background: linear-gradient(to bottom, var(--primary-very-light), var(--white));
}

.about-main {
  padding-bottom: 2rem;
}

.about-intro {
  font-size: 1.125rem;
  max-width: 48rem;
  margin-bottom: 3rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.mission-vision-item h2 {
  margin-bottom: 1rem;
}

.values-section {
  background-color: var(--secondary);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  padding-left: 5rem;
}

.value-icon {
  position: absolute;
  left: 2rem;
  top: 2rem;
  color: var(--primary);
  font-size: 2rem;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.certification-card {
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.certification-card i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.certification-card h3 {
  font-size: 1rem;
  margin-bottom: 0;
}

/* Careers Page */
.careers-header {
  background: linear-gradient(to bottom, var(--primary-very-light), var(--white));
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  background-color: var(--white);
}

.benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 0;
}

.open-positions-section {
  background-color: var(--secondary);
}

.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.job-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.job-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-light);
}

.job-header h3 {
  margin-bottom: 1rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--gray);
}

.job-location,
.job-type {
  display: flex;
  align-items: center;
}

.job-location i,
.job-type i {
  margin-right: 0.5rem;
}

.job-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.job-details {
  margin-top: 1.5rem;
}

.job-details h4 {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.job-details ul {
  list-style: disc;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray);
}

.job-details li {
  margin-bottom: 0.5rem;
}

.job-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gray-light);
}

/* Contact Page */
.contact-header {
  background: linear-gradient(to bottom, var(--primary-very-light), var(--white));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info-container h2,
.contact-form-container h2 {
  margin-bottom: 1.5rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-card {
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-card-header i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.contact-card-header h3 {
  font-size: 1.125rem;
  margin-bottom: 0;
}

.contact-card-content p {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 0;
}

.contact-form-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.map-section {
  height: 400px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Media Queries */
@media (min-width: 640px) {
  h1 {
    font-size: 3rem;
  }

  .slide h1 {
    font-size: 3rem;
  }

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

  .callback-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .mission-vision {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .main-nav {
    display: block;
  }

  .login-btn {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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