
:root {
  --primary-color: #000;
  --background-color: #fff;
  --accent-color: #FFC107;
  --secondary-accent: #FF0000;
  --dark-bg: #181818;
  --dark-text: #eaeaea;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-color);
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
  transition: background-color 0.3s, color 0.3s;
}

/* Header Styles */
header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
}

/* Updated Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 2rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  animation: slideInLeft 1s ease-out;
}

.hero-image-container {
  flex: 1;
  max-width: 600px;
  position: relative;
  animation: slideInRight 1s ease-out;
  min-height: 400px;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.highlight {
  color: var(--accent-color);
  font-weight: 700;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 5px;
  margin-top: 1.5rem;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 40px;
  }
  
  .hero-image-container {
    order: -1;
    width: 100%;
    max-width: 400px;
    min-height: 300px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}


body {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-color);
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
  transition: background-color 0.3s, color 0.3s;
}
/* Header Styles */
header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.logo {
  font-weight: bold;
  font-size: 1.2rem;
}
nav {
  display: flex;
  align-items: center;
  
}
nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 11rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: auto; /* Push nav to the right */
margin-right: 20px; /* Add some right margin */
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin-bottom: 4px;
  border-radius: 5px;
}
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 60px;
    right: -200%;
    background-color: var(--primary-color);
    flex-direction: column;
    width: 200px;
    transition: right 0.3s ease;
    padding: 1rem;
  }
  nav.active {
    right: 0;
  }
  nav a {
    margin: 1rem 0;
  }
  .hamburger {
    display: flex;
  }
}
/* Dark/Light Mode Toggle Button */
.theme-toggle {
  background-color: var(--accent-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transform: translateX(-20px); /* Move 10px left */
  margin-left: 4rem !important; /* Reduce left margin */
}
/* Main Content Offset */
main {
  margin-top: 60px; /* Header height */
}
/* Section Styles */
section {
  padding: 5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 102vh;
}
/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  padding: 2rem;
  min-height: 100vh;
  position: relative;
}
.hero-text {
  padding-right: 2rem;
  z-index: 2;
}
.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta-button {
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
}
/* Hero Image Slider Styles */



/* About Me Section */
#about-me {
  max-width: 1200px;
  margin: 0 auto;
}
.title-and-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}
.title-and-buttons h2 {
  margin: 0;
  font-size: 2em;
  font-weight: bold;
}
.buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.buttons button {
  padding: 10px 20px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}
.buttons button:hover {
  background-color: #e0e0e0;
}
.buttons button.active {
  background-color: var(--accent-color);
  color: white;
}
.about-section {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  width: 100%;
}
.about-section .text {
  flex: 1;
}
.about-section .text h3 {
  margin-top: 0;
  font-size: 1.5em;
}
.about-section .media {
  flex: 1;
  text-align: center;
}
.about-section .media img,
.about-section .media video {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
.highlight {
  font-weight: bold;
  color: var(--accent-color);
  font-style: italic;
}
/* Work Section */
#work .project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  overflow-y: auto;
}
.project img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 5px;
}
.project:hover img {
  transform: scale(1.05);
}
.project h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.5rem 0;
}
/* Testimonials Section */
#testimonials {
  background-color: #f9f9f9;
  width: 100%;
  padding: 2rem;
}
#testimonials h2 {
  margin-bottom: 1rem;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial {
  background: #fff;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.testimonial p {
  font-style: italic;
}
.testimonial .client-name {
  text-align: right;
  font-weight: bold;
  margin-top: 0.5rem;
}
/* Contact Section */
#contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
}
#contact input,
#contact textarea {
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}
#contact button {
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-text {
    padding-right: 0;
  
  }
  .about-section {
    flex-direction: column;
  }
}
/* Dark mode styles */
body.dark-mode {
  background-color: var(--dark-bg);
  color: var(--dark-text);
}
body.dark-mode header {
  background-color: #333;
}
body.dark-mode nav a {
  color: var(--dark-text);
}
body.dark-mode .theme-toggle {
  background-color: #555;
  color: var(--dark-text);
}
body.dark-mode .testimonial {
  background: #333;
  color: var(--dark-text);
}
/* Modified Hero Image Styles */


/* Hero Slides */
.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-image-container {
width: 100%;
height: 0;
padding-bottom: [calculated]%;
position: relative;
}
.hero-slide img {
position: absolute;
width: 100%;
height: 100%;
}
/* Add this CSS to your existing styles */
.image-container {
  position: relative;
  width: 100%;
  height: auto;
}

.default-image {
  display: block;
  width: 100%;
  height: auto;
}

.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease;
}

.project:hover .hover-image {
  opacity: 1; /* Show hover image on hover */
}

.project:hover .default-image {
  opacity: 0; /* Hide default image on hover */
}

.tooltip {
  position: absolute;
  top: -30px; /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  background-color: green;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease;
  pointer-events: none; /* Prevents mouse events on the tooltip */
}

.project:hover .tooltip {
  opacity: 1; /* Show tooltip on hover */
}

/* Social Links Section Styles */
.social-links-section {
  padding: 2rem 0;  /* Reduced padding */
  background-color: transparent;
  text-align: center;
}

.social-container {
  max-width: 400px;  /* Reduced max-width */
  margin: 0 auto;
  padding: 1rem 20px;  /* Reduced padding */
  background-color: transparent;
}

.social-container h3 {
  font-size: 1.4rem;  /* Smaller font size */
  margin-bottom: 1rem;  /* Reduced margin */
  color: #333;
  font-weight: 600;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;  /* Reduced gap */
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  padding: 0.6rem 1.2rem;  /* Reduced padding */
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);  /* Smaller shadow */
}

.social-link i {
  font-size: 1.2rem;  /* Smaller icon */
  margin-right: 0.4rem;  /* Reduced margin */
}

.social-link span {
  font-size: 0.9rem;  /* Smaller text */
}

.social-link.discord {
  background: #7289da;
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Update dark mode styles */
body.dark-mode .social-links-section {
  background-color: #2d3436;  /* Replaced gradient with solid color */
}

body.dark-mode .social-container h3 {
  color: #fff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .social-links-section {
    padding: 3rem 0;
  }

  .social-container h3 {
    font-size: 1.5rem;
  }

  .social-icons {
    flex-direction: column;
    gap: 1rem;
  }

  .social-link {
    width: 100%;
    justify-content: center;
  }
}

/* New Sections Styles */
.products-section, .partner-section {
  padding: 5rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.products-grid, .partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card, .partner-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover, .partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product-image, .partner-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-title, .partner-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.product-description, .partner-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.partner-link {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--accent-color);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.partner-link:hover {
  background-color: #e6a100;
}

/* Dark mode styles */
body.dark-mode .product-card,
body.dark-mode .partner-card {
  background-color: #2d3436;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

body.dark-mode .product-title,
body.dark-mode .partner-title {
  color: var(--dark-text);
}

body.dark-mode .product-description,
body.dark-mode .partner-description {
  color: #aaa;
}

body.dark-mode .section-title {
  color: var(--dark-text);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .products-section,
  .partner-section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .products-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }
}

/* Update Partner Section styles */
.partner-section {
  padding: 5rem 2rem;
  text-align: center;
  background-image: url('a-mesmerizing-deep-space-scene-featuring-swirling-.png'); /* Replace with your background image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.partner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.partner-section > * {
  position: relative;
  z-index: 2;
}

.partner-section .section-title {
  color: #fff;
  margin-bottom: 1.5rem;
}

.partner-section .subtitle {
  color: #fff;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.partner-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Add background image and overlay for each partner card */
.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: -1;
  transition: opacity 0.3s ease;
}

/* Specific background for each partnership tier */
.partner-card.basic::before {
  background-image: url('bronze.jpg');
}

.partner-card.premium::before {
  background-image: url('stone.jpg');
}

.partner-card.elite::before {
  background-image: url('diamond.jpg');
}

.partner-card:hover::before {
  opacity: 0.25;
}

/* Update text colors for better contrast */
.partner-card .partner-title {
  color: #1a1a1a;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.partner-card .partner-description {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Dark mode adjustments */
body.dark-mode .partner-card {
  background: rgba(45, 52, 54, 0.9);
}

body.dark-mode .partner-card .partner-title {
  color: #fff;
}

body.dark-mode .partner-card .partner-description {
  color: #ddd;
}

body.dark-mode .partner-card::before {
  opacity: 0.1;
}

body.dark-mode .partner-card:hover::before {
  opacity: 0.2;
}

/* Update the thank you text */
.social-container h2 {
  font-size: 1rem;
  margin-top: 1rem;
  color: #666;
}

/* Add these styles to your existing <style> section */
.contact-section {
  padding: 80px 0;
  background-color: #0d8282;
  font-family: 'Arial', sans-serif;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

#contact-form {
  background: #FD8B51;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(255, 2, 2, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #b81c7f;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #4a90e2;
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background-color: #4a90e2;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #3a7bc8;
}

.status-message {
  margin-top: 20px;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
  display: none;
}

.status-message.success {
  background-color: #d4edda;
  color: #FD8B51;
  display: block;
}

.status-message.error {
  background-color: #f8d7da;
  color: #721c24;
  display: block;
}

@media (max-width: 600px) {
  .contact-section {
    padding: 50px 0;
  }
  
  .contact-section h2 {
    font-size: 2rem;
  }
  
  #contact-form {
    padding: 20px;
  }
}

/* Add these styles to your existing CSS */
.guide-section {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
  color: #333;
}

.guide-container {
  max-width: 1000px;
  margin: 0 auto;
}

.guide-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.guide-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.step {
  margin-bottom: 4rem;
}

.step-title {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tag-category {
  margin-bottom: 2rem;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.tag {
  background: white;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.example-box {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.tips-list, .benefits-list {
  list-style: none;
  padding: 0;
}

.tips-list li, .benefits-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.tips-list li::before, .benefits-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #4a90e2;
}

/* Dark mode styles */
body.dark-mode .guide-section {
  background-color: #1a1a1a;
  color: #fff;
}

body.dark-mode .service-card,
body.dark-mode .tag,
body.dark-mode .example-box {
  background: #2d3436;
  color: #fff;
}

body.dark-mode .guide-title,
body.dark-mode .step-title {
  color: #fff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .guide-section {
    padding: 2rem 1rem;
  }

  .guide-title {
    font-size: 2rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .tag-grid {
    grid-template-columns: 1fr;
  }
}

/* Add these to your existing product card styles */
.product-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Ensure text colors stay consistent in dark mode */
body.dark-mode .product-card {
  color: var(--dark-text);
}

/* Footer Styles */
footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

footer .social-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Dark mode adjustments */
body.dark-mode footer {
  background-color: #1a1a1a;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  footer {
    padding: 1.5rem 0;
  }
  
  footer .social-icons {
    flex-direction: row;
    gap: 0.5rem;
  }
}

.slideshow-container {
    max-width: 500px;
    position: relative;
    margin: auto;
}

.slides {
    display: flex;
    overflow: hidden;
}

.slide {
    min-width: 100%;
    transition: transform 0.5s ease;
}

.slide img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}




.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Dots container */
.dots-container {
    text-align: center;
    padding: 20px;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fade animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
/* Add smooth transition for the popup */
#successPopup {
  transition: opacity 0.3s ease;
}

  /* Mobile Styles */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: flex-start;
    }

    .logo {
      margin-bottom: 1rem;
    }

    nav {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
    }

    nav a {
      margin: 0.5rem 0;
      margin-left: 0; /* Remove left margin for mobile */
    }

    .hero {
      flex-direction: column;
      padding: 1rem;
      text-align: center;
    }

    .hero-content {
      max-width: 100%;
      margin-bottom: 1rem;
    }

    .hero-image-container {
      width: 100%;
      min-height: 200px; /* Adjust height for mobile */
    }

    .cta-button {
      width: 100%; /* Full width button */
      margin-top: 1rem;
    }

    .project-grid {
      grid-template-columns: 1fr; /* Single column layout for projects */
    }

    .testimonial-grid {
      grid-template-columns: 1fr; /* Single column layout for testimonials */
    }

    .contact-section {
      padding: 40px 20px; /* Adjust padding for mobile */
    }
  }