:root {
  --primary-color: #6c63ff;
  --secondary-color: #4d46b8;
  --dark-color: #2a2a3c;
  --light-color: #f8f9fa;
  --text-dark: #333;
  --text-light: #f8f9fa;
  --transition: all 0.4s ease;
  --card-bg: #ffffff;
  --footer-bg: #1e1e2d;
}

[data-theme="dark"] {
  --dark-color: #1e1e2d;
  --light-color: #121218;
  --text-dark: #e0e0e0;
  --text-light: #f0f0f0;
  --card-bg: #1e1e2d;
  --footer-bg: #121218;
}

[data-theme="dark"] .nav-link {
  color: white !important;
}

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

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--light-color);
  color: var(--text-dark);
  transition: var(--transition);
  overflow-x: hidden;
}

/* Header & Navigation */
.navbar {
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 10px;
  position: relative;
  transition: var(--transition);
}

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

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

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

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 15px;
  transition: var(--transition);
}

.theme-toggle:hover {
  color: var(--primary-color);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.1) 0%,
    rgba(77, 70, 184, 0.1) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--text-dark);
}

.hero-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-weight: 500;
  margin: 10px 0;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  top: -150px;
  right: -150px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-color);
  bottom: -100px;
  left: -100px;
}

/* Section Styling */
section {
  padding: 100px 0;
}

.section-title {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* About Section */
.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.about-img:hover {
  transform: translateY(-10px);
}

.about-content h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 30px;
  line-height: 1.8;
}

.skills {
  margin-top: 30px;
}

.skill-item {
  margin-bottom: 25px;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.skill-title {
  font-weight: 500;
}

.skill-percent {
  color: var(--primary-color);
  font-weight: 600;
}

.progress {
  height: 10px;
  border-radius: 5px;
  background-color: rgba(108, 99, 255, 0.1);
}

.progress-bar {
  background-color: var(--primary-color);
  border-radius: 5px;
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.portfolio-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(108, 99, 255, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
}

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

.portfolio-overlay h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.portfolio-overlay .btn {
  margin-top: 15px;
  background: white;
  color: var(--primary-color);
  border: none;
}
/* "View All Work" button  */
.text-center.mt-5 {
  margin-top: 3rem;
}

/* Services Section */
.services {
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.05) 0%,
    rgba(77, 70, 184, 0.05) 100%
  );
}

/* Services Slider */
.services-slider {
  position: relative;
  padding: 0 50px;
}

.service-slide {
  padding: 20px;
}

.service-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  margin-bottom: 30px;
  height: 100%;
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  line-height: 1.7;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  left: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-btn {
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: var(--transition);
  border: none;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

/* Testimonials Section */
.testimonial-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin: 15px;
  transition: var(--transition);
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-info h4 {
  margin-bottom: 5px;
}

.testimonial-info p {
  color: var(--primary-color);
  margin-bottom: 0;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.7;
  position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
}

.testimonial-content p::before {
  top: -15px;
  left: -10px;
}

.testimonial-content p::after {
  bottom: -30px;
  right: -10px;
}

/* Contact Section */
.contact-form {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.form-control {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  transition: var(--transition);
  background: var(--light-color);
  color: var(--text-dark);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(108, 99, 255, 0.25);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-message {
  display: none;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
}

.form-message.success {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid #28a745;
  color: #28a745;
}

.form-message.error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  color: #dc3545;
}

.send-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  background: #25d366;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  color: white;
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: var(--text-light);
  padding: 70px 0 20px;
}

.footer-content {
  margin-bottom: 50px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-about {
  max-width: 400px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

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

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: white;
}

.footer-links li {
  margin-bottom: 12px;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
}

@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
  .section-title h2 {
    font-size: clamp(1.8rem, 5vw, 2rem);
  }
  .service-card {
    padding: 25px 15px;
  }
  .navbar-nav .nav-link {
    padding: 12px;
    font-size: 1rem;
    text-align: center;
  }
  .navbar-collapse {
    background: var(--light-color);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.3rem);
  }
  .hero p {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
  }
  .section-title h2 {
    font-size: clamp(1.6rem, 5vw, 1.8rem);
  }
  .about-img {
    margin-bottom: 30px;
  }
  .footer-content > [class*="col-"] {
    margin-bottom: 30px;
  }
  .services-slider {
    padding: 0 20px;
  }
  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 1.8rem);
  }
  .hero p {
    font-size: clamp(0.9rem, 4vw, 1rem);
  }
  .section-title h2 {
    font-size: clamp(1.4rem, 5vw, 1.6rem);
  }
  .portfolio-img {
    height: clamp(180px, 50vw, 200px);
  }
  .contact-form {
    padding: 20px;
  }
  .form-control {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
  .send-msg,
  .whatsapp-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  .services-slider {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(1.3rem, 6vw, 1.5rem);
  }
  .hero p {
    font-size: clamp(0.85rem, 4vw, 0.95rem);
  }
  section {
    padding: clamp(40px, 8vw, 50px) 0;
  }
  .contact-form {
    padding: 15px;
  }
  .form-control {
    padding: 6px 8px;
    font-size: 0.85rem;
  }
  .send-msg,
  .whatsapp-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
  .slider-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  .services-slider {
    padding: 0 5px;
  }
  .back-to-top {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  .navbar-brand {
    font-size: 1.5rem;
  }
  .portfolio-grid {
    gap: 15px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: clamp(1.2rem, 6vw, 1.4rem);
  }
  .hero p {
    font-size: clamp(0.8rem, 4vw, 0.9rem);
  }
  .section-title h2 {
    font-size: clamp(1.3rem, 5vw, 1.5rem);
  }
  .form-control {
    font-size: 0.8rem;
  }
  .send-msg,
  .whatsapp-btn {
    font-size: 0.8rem;
  }
}

:root {
  --primary-color: #6c63ff;
  --secondary-color: #4d46b8;
  --dark-color: #2a2a3c;
  --light-color: #f8f9fa;
  --text-dark: #333;
  --text-light: #f8f9fa;
  --transition: all 0.4s ease;
  --card-bg: #ffffff;
  --footer-bg: #1e1e2d;
}

[data-theme="dark"] {
  --dark-color: #1e1e2d;
  --light-color: #121218;
  --text-dark: #e0e0e0;
  --text-light: #f0f0f0;
  --card-bg: #1e1e2d;
  --footer-bg: #121218;
}

[data-theme="dark"] .nav-link {
  color: white !important;
}

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

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--light-color);
  color: var(--text-dark);
  transition: var(--transition);
  overflow-x: hidden;
}

/* Header & Navigation */
.navbar {
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 10px;
  position: relative;
  transition: var(--transition);
}

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

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

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

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 15px;
  transition: var(--transition);
}

.theme-toggle:hover {
  color: var(--primary-color);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.1) 0%,
    rgba(77, 70, 184, 0.1) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--text-dark);
}

.hero-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-weight: 500;
  margin: 10px 0;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  top: -150px;
  right: -150px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-color);
  bottom: -100px;
  left: -100px;
}

/* Section Styling */
section {
  padding: 100px 0;
}

.section-title {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* About Section */
.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.about-img:hover {
  transform: translateY(-10px);
}

.about-content h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 30px;
  line-height: 1.8;
}

.skills {
  margin-top: 30px;
}

.skill-item {
  margin-bottom: 25px;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.skill-title {
  font-weight: 500;
}

.skill-percent {
  color: var(--primary-color);
  font-weight: 600;
}

.progress {
  height: 10px;
  border-radius: 5px;
  background-color: rgba(108, 99, 255, 0.1);
}

.progress-bar {
  background-color: var(--primary-color);
  border-radius: 5px;
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.portfolio-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(108, 99, 255, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
}

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

.portfolio-overlay h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.portfolio-overlay .btn {
  margin-top: 15px;
  background: white;
  color: var(--primary-color);
  border: none;
}
/* "View All Work" button  */
.text-center.mt-5 {
  margin-top: 3rem;
}

/* Services Section */
.services {
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.05) 0%,
    rgba(77, 70, 184, 0.05) 100%
  );
}

/* Services Slider */
.services-slider {
  position: relative;
  padding: 0 50px;
}

.service-slide {
  padding: 20px;
}

.service-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  margin-bottom: 30px;
  height: 100%;
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  line-height: 1.7;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  left: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-btn {
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: var(--transition);
  border: none;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

/* Testimonials Section */
.testimonial-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin: 15px;
  transition: var(--transition);
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-info h4 {
  margin-bottom: 5px;
}

.testimonial-info p {
  color: var(--primary-color);
  margin-bottom: 0;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.7;
  position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
}

.testimonial-content p::before {
  top: -15px;
  left: -10px;
}

.testimonial-content p::after {
  bottom: -30px;
  right: -10px;
}

/* Contact Section */
.contact-form {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.form-control {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  transition: var(--transition);
  background: var(--light-color);
  color: var(--text-dark);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(108, 99, 255, 0.25);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-message {
  display: none;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
}

.form-message.success {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid #28a745;
  color: #28a745;
}

.form-message.error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  color: #dc3545;
}

.send-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  background: #25d366;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  color: white;
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: var(--text-light);
  padding: 70px 0 20px;
}

.footer-content {
  margin-bottom: 50px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-about {
  max-width: 400px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

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

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: white;
}

.footer-links li {
  margin-bottom: 12px;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
}

@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
  .section-title h2 {
    font-size: clamp(1.8rem, 5vw, 2rem);
  }
  .service-card {
    padding: 25px 15px;
  }
  .navbar-nav .nav-link {
    padding: 12px;
    font-size: 1rem;
    text-align: center;
  }
  .navbar-collapse {
    background: var(--light-color);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.3rem);
  }
  .hero p {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
  }
  .section-title h2 {
    font-size: clamp(1.6rem, 5vw, 1.8rem);
  }
  .about-img {
    margin-bottom: 30px;
  }
  .footer-content > [class*="col-"] {
    margin-bottom: 30px;
  }
  .services-slider {
    padding: 0 20px;
  }
  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 1.8rem);
  }
  .hero p {
    font-size: clamp(0.9rem, 4vw, 1rem);
  }
  .section-title h2 {
    font-size: clamp(1.4rem, 5vw, 1.6rem);
  }
  .portfolio-img {
    height: clamp(180px, 50vw, 200px);
  }
  .contact-form {
    padding: 20px;
  }
  .form-control {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
  .send-msg,
  .whatsapp-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  .services-slider {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(1.3rem, 6vw, 1.5rem);
  }
  .hero p {
    font-size: clamp(0.85rem, 4vw, 0.95rem);
  }
  section {
    padding: clamp(40px, 8vw, 50px) 0;
  }
  .contact-form {
    padding: 15px;
  }
  .form-control {
    padding: 6px 8px;
    font-size: 0.85rem;
  }
  .send-msg,
  .whatsapp-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
  .slider-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  .services-slider {
    padding: 0 5px;
  }
  .back-to-top {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  .navbar-brand {
    font-size: 1.5rem;
  }
  .portfolio-grid {
    gap: 15px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: clamp(1.2rem, 6vw, 1.4rem);
  }
  .hero p {
    font-size: clamp(0.8rem, 4vw, 0.9rem);
  }
  .section-title h2 {
    font-size: clamp(1.3rem, 5vw, 1.5rem);
  }
  .form-control {
    font-size: 0.8rem;
  }
  .send-msg,
  .whatsapp-btn {
    font-size: 0.8rem;
  }
}
