:root {
  --uv-purple: #6a0dad;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  scroll-behavior: smooth;
}

header {
  background-color: var(--uv-purple);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  width: 250px;
  height: 80px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
  background: none;
  border: none;
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--uv-purple);
    text-align: center;
    padding: 1rem 0;
    z-index: 1000;
  }

  nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Main Slider */
.main-slide-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.slide-text {
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  font-weight: bold;
  text-align: center;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 2;
}

.slide-text.animate {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

section {
  padding: 60px 20px;
}

.section-title {
  text-align: center;
}

.section-description {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.services, .portfolio, .team {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-box, .portfolio-box, .team-box {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  text-align: center;
  transition: transform 0.3s;
}

.service-box:hover, .portfolio-box:hover, .team-box:hover {
  transform: translateY(-10px);
}

.portfolio-box {
  height: 200px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.portfolio-box img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

footer {
  background: var(--uv-purple);
  color: white;
  padding: 20px;
  text-align: center;
}
/* Contact Section Styling */
#contact {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.contact-info {
  font-size: 1rem;
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 500px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
}

.contact-form button {
  background-color: #5c2d91;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #4a2373;
}
.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1 1 500px;
  padding: 20px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-image {
  flex: 1 1 400px;
  padding: 20px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#contact {
  padding: 50px 20px;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #4c1d95; /* Ultra Violet Purple */
}

.section-description {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1000px;
  margin: auto;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info .info-box {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info i {
  font-size: 24px;
  color: #4c1d95;
  margin-top: 5px;
}

.contact-info h4 {
  margin: 0 0 5px;
  font-weight: 600;
}

.contact-info p {
  margin: 0;
  color: #444;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
}

.contact-form button {
  background-color: #4c1d95;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #372073;
}
.portfolio-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}

.portfolio-box:hover {
  transform: translateY(-8px);
}

.portfolio-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.portfolio-info {
  padding: 15px;
  text-align: center;
}

.portfolio-info h4 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
  color: #333;
}

.portfolio-info p {
  font-size: 0.9rem;
  color: #777;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--uv-purple);
}
.portfolio-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 220px;
  transition: transform 0.3s;
  text-align: center;
}

.portfolio-box:hover {
  transform: translateY(-10px);
}

.portfolio-box img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.service-box {
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  width: 240px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--uv-purple);
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 40px;
  color: var(--uv-purple);
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #333;
}

.service-box p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}
.team-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #7f00ff; /* Ultra violet */
}

.team-member h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}

.team-member p {
  color: #777;
  font-size: 14px;
}
.services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.service-box {
  background: #fff;
  padding: 25px;
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
}

.service-icon {
  font-size: 40px;
  color: #7f00ff;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.service-box p {
  font-size: 14px;
  color: #666;
}

.more-services-button {
  text-align: center;
  margin-top: 40px;
}

.btn-more {
  background: #7f00ff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-more:hover {
  background: #5d00c7;
}
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 20px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.read-more-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  background-color: #7f00ff;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #5d00c7;
}
.read-more-btn {
  display: inline-block;
  padding: 10px 24px;
  background-color: #7f00ff;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.read-more-btn:hover {
  background-color: #5d00c7;
}
.contact-section {
  background: #f9f9ff;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #7f00ff;
  margin-bottom: 10px;
}

.section-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.contact-split {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 300px;
}

.contact-left .info-box {
  display: flex;
  align-items: flex-start;
  background: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
}

.contact-left i {
  font-size: 24px;
  color: #7f00ff;
  margin-right: 15px;
  margin-top: 5px;
}

.contact-right form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
}

.contact-right button {
  background: #7f00ff;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-right button:hover {
  background: #5d00c7;
}

@media (max-width: 768px) {
  .contact-split {
    flex-direction: column;
    align-items: center;
  }

  .contact-left, .contact-right {
    width: 100%;
  }
}
