/* Base Styles & Variables */
:root {
  --primary-black: #0a0a0a;
  --secondary-black: #1a1a1a;
  --primary-white: #ffffff;
  --secondary-white: #f5f5f5;
  --primary-grey: #2d2d2d;
  --secondary-grey: #4a4a4a;
  --accent-grey: #8a8a8a;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--primary-black);
  color: var(--primary-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Mobile container adjustment */
@media screen and (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.section-title {
  font-family: "Scada", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-white);
  margin: 15px auto;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1.2rem;
  font-family: "Scada", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--secondary-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-white);
  border: 2px solid var(--primary-white);
}

.btn-secondary:hover {
  background: var(--primary-white);
  color: var(--primary-black);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-white);
  border: 2px solid var(--accent-grey);
}

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

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
  text-decoration: none;
}

.btn-small a {
text-decoration: none;
color: var(--secondary-black);
}

/* Glassmorphism Effect */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
  overflow: hidden;
}



.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.glass-nav {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Floating Bubbles Animation */
.bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -100px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  opacity: 0.5;
  animation: rise 10s infinite ease-in;
}

.bubble:nth-child(1) {
  width: 40px;
  height: 40px;
  left: 10%;
  animation-duration: 8s;
}

.bubble:nth-child(2) {
  width: 20px;
  height: 20px;
  left: 20%;
  animation-duration: 5s;
  animation-delay: 1s;
}

.bubble:nth-child(3) {
  width: 50px;
  height: 50px;
  left: 35%;
  animation-duration: 7s;
  animation-delay: 2s;
}

.bubble:nth-child(4) {
  width: 80px;
  height: 80px;
  left: 50%;
  animation-duration: 11s;
  animation-delay: 0s;
}

.bubble:nth-child(5) {
  width: 35px;
  height: 35px;
  left: 65%;
  animation-duration: 6s;
  animation-delay: 1s;
}

@keyframes rise {
  0% {
    bottom: -100px;
    transform: translateX(0);
  }
  50% {
    transform: translateX(100px);
  }
  100% {
    bottom: 1080px;
    transform: translateX(-200px);
  }
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1600px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  font-family: "Scada", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.nav-link {
  color: var(--primary-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-white);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--secondary-white);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--primary-white);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 5rem 0;
  position: relative;
  margin: 0 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .hero {
    margin: 0 1rem;
    padding: 3rem 0;
  }
}

.hero-content {
  flex: 1;
  padding: 3rem;
  animation: fadeInUp 1s ease;
  border-radius: 20px;
  box-sizing: border-box;
  width: 100%;
}

.hero-title {
 font-family: "Scada", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--secondary-white);
  font-family: "Scada", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: fadeInRight 1s ease;
  width: 100%;
}

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
}

.hero-image video {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  height: auto;
  width: 70%;
}

/* About Section */
.about {
  padding: 6rem 0;
  margin: 0 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.about-text {
  padding: 2rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  padding: 0 1rem;
  line-height: 1.5;
  font-family: "Scada", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.skills h3 {
  margin: 2rem 0 1rem;
  text-align: center;
  font-size: 2rem;
  color: var(--primary-white);
  position: relative;
  padding-bottom: 1rem;
  font-family: "Scada", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.skills h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-white), var(--accent-grey));
  border-radius: 3px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 1rem;
  margin-top: 1rem;
}

.skill-tag {
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.skill-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.skill-tag:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.12));
}

.skill-tag:hover::before {
  left: 100%;
}

.about-image {
  padding: 0;
  margin: 0;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  box-sizing: border-box;
  margin: 0 auto;
  display: block;
}

.about-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.timeline {
  padding: 2.5rem;
  margin-top: 2.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.timeline-item {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
  padding: 0 2rem;
  transition: var(--transition);
}

.timeline-item:hover {
  transform: translateX(5px);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-white), var(--accent-grey));
  margin-right: 1.5rem;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.timeline-marker::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 2rem);
  background: linear-gradient(to bottom, var(--accent-grey), transparent);
}

.timeline-item:last-child .timeline-marker::after {
  display: none;
}

.timeline-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--primary-white);
  position: relative;
  padding-left: 1rem;
  font-family: "Scada", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.timeline-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary-white);
  border-radius: 50%;
  opacity: 0.7;
}

.timeline-content p {
  color: var(--secondary-white);
  line-height: 1.6;
  font-size: 1.05rem;
  font-family: "Scada", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--primary-black), var(--secondary-black));
  margin: 0 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

.service-card {
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-white);
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-family: "Scada", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
}

.service-card p {
    font-family: "Scada", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Portfolio Section */
.portfolio {
  padding: 6rem 0;
  margin: 0 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: transparent;
  color: var(--primary-white);
  border: 2px solid var(--accent-grey);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Scada", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-white);
  color: var(--primary-black);
  border-color: var(--primary-white);
}

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

.portfolio-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 300px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
  text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.portfolio-overlay p {
  margin-bottom: 1.5rem;
  color: var(--secondary-white);
}

/* Pricing Section */
.pricing {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--secondary-black), var(--primary-black));
  margin: 0 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-white);
}

.pricing-card.featured2 {
  transform: scale(1.05);
  border: 2px solid gold
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-white);
  color: var(--primary-black);
  padding: 0.5rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-family: "Scada", sans-serif;
}

.price {
  font-size: 2.2rem;
 font-family: "Playwrite US Modern", cursive;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--glass-border);
  font-family: "Scada", sans-serif;
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Why Choose Me Section */
.why-choose {
  padding: 6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-white);
}

.feature-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: "Scada", sans-serif;
}

.feature-item p {
    font-family: "Scada", sans-serif;
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--primary-black), var(--secondary-black));
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  color: var(--primary-white);
  font-family: "Playwrite US Modern", cursive;
}

.faq-question:hover {
  background: var(--glass-bg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-answer p {
  padding: 1.5rem;
  color: var(--primary-white);
  font-family: "Scada", sans-serif;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.social-links {
  padding: 2.5rem;
  text-align: center;
}

.social-links h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: "Scada", sans-serif;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--glass-bg);
  color: var(--primary-white);
  font-size: 1.5rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary-white);
  color: var(--primary-black);
  transform: translateY(-5px);
}

.newsletter {
  padding: 2.5rem;
  text-align: center;
}

.newsletter h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: "Scada", sans-serif;
}

.newsletter p {
  margin-bottom: 2rem;
  color: var(--secondary-white);
  font-family: "Playwrite US Modern", cursive;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 1rem;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-white);
  font-size: 1rem;
  font-family: "Scada", sans-serif;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-white);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary-white);
  color: var(--primary-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: var(--secondary-black);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--glass-border);
}

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

.footer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-info p {
  margin-bottom: 0;
  font-family: "Playwrite US Modern", cursive;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--primary-white);
  font-size: 1.2rem;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--secondary-white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  color: var(--accent-grey);
}

.footer-bottom p {
  font-family: "Playwrite US Modern", cursive;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-text {
    padding: 1rem;
  }
  
  .about-text p {
    padding: 0;
    font-size: 1rem;
  }
  
  .hero-image video {
    max-height: 300px;
    width: 90%;
    object-fit: cover;
    margin-top: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    min-width: 100%;
  }
  
  /* Add margin to all sections on mobile */
  .about, .services, .portfolio, .pricing, .why-choose, .faq, .contact {
    margin: 0 1rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--secondary-black);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    padding: 2rem 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 1.5rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero-content {
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }
  
  .hero-image video {
    max-height: 250px;
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }
  
  .about-text p {
    line-height: 1.6;
  }
  
  /* Add margin to all sections on mobile */
  .about, .services, .portfolio, .pricing, .why-choose, .faq, .contact {
    margin: 0 1rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }
}

@media screen and (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .portfolio-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 80%;
  }
  
  .hero-content {
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-image video {
    max-height: 200px;
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }
  
  .about-text {
    padding: 0.5rem;
  }
  
  /* Add margin to all sections on mobile */
  .about, .services, .portfolio, .pricing, .why-choose, .faq, .contact {
    margin: 0 1rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }
}