:root {
  --primary-color: #6c63ff;
  --secondary-color: #4a44c6;
  --accent-color: #ff6584;
  --dark-color: #2a2d3e;
  --light-color: #f8f9fa;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7ff;
  color: #333;
}

section {
  padding: 3rem 0rem;
}

.design-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f5f7ff 0%, #e6e9ff 100%);
  position: relative;
  overflow: hidden;
}
.design-section .design-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(108, 99, 255, 0.1);
  top: -150px;
  right: -150px;
}
.design-section .design-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 101, 132, 0.1);
  bottom: -100px;
  left: -100px;
}
.design-section .section-content {
  position: relative;
  z-index: 2;
}
.design-section .tagline {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.design-section .main-heading {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark-color);
  line-height: 1.2;
  margin-bottom: 30px;
}
.design-section .main-heading span {
  color: var(--primary-color);
  position: relative;
}
.design-section .main-heading span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background-color: rgba(108, 99, 255, 0.2);
  bottom: 5px;
  left: 0;
  z-index: -1;
}
.design-section .btn-know-more {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}
.design-section .btn-know-more:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}
.design-section .design-elements {
  position: absolute;
  right: 0;
  height: 400px;
}
.design-section .floating-element {
  position: absolute;
  border-radius: 10px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
}
.design-section .element-1 {
  width: 120px;
  height: 120px;
  top: 50px;
  right: 100px;
  animation: float 6s ease-in-out infinite;
}
.design-section .element-2 {
  width: 150px;
  height: 150px;
  bottom: 50px;
  right: 200px;
  animation: float 8s ease-in-out infinite 1s;
}
.design-section .element-3 {
  width: 100px;
  height: 100px;
  top: 150px;
  right: 300px;
  animation: float 7s ease-in-out infinite 0.5s;
}
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
.design-section .stats {
  margin-top: 60px;
}
.design-section .stat-item {
  text-align: center;
  padding: 15px;
}
.design-section .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}
.design-section .stat-text {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 992px) {
  .design-section .main-heading {
    font-size: 2.8rem;
  }
  .design-section .design-elements {
    height: 300px;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .design-section .main-heading {
    font-size: 2rem;
  }
  .design-section .design-elements {
    height: 250px;
    display: none;
  }
  .design-section .element-1,
  .design-section .element-2,
  .design-section .element-3 {
    transform: scale(0.8);
  }
}

.about-section {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}
.about-section .about-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(74, 108, 247, 0.05);
  top: -150px;
  right: -150px;
}
.about-section .about-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 107, 107, 0.05);
  bottom: -100px;
  left: -100px;
}
.about-section .impact-statement {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .about-section .impact-statement {
    margin-bottom: 20px;
  }
}
.about-section .impact-statement h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 30px;
}
@media (max-width: 767px) {
  .about-section .impact-statement h2 {
    font-size: 1.5rem;
  }
}
.about-section .impact-statement .highlight {
  color: var(--primary-color);
  position: relative;
}
.about-section .impact-statement .highlight::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background-color: rgba(74, 108, 247, 0.2);
  bottom: 5px;
  left: 0;
  z-index: -1;
}
.about-section .about-content {
  position: relative;
  z-index: 2;
}
.about-section .about-card {
  background: white;
  border-radius: 10px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}
.about-section .about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.about-section .about-card.what-we-do {
  border-top-color: var(--accent-color);
}
.about-section .about-card.our-vision {
  border-top-color: #6c63ff;
}
.about-section .card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(74, 108, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary-color);
  font-size: 1.8rem;
}
.about-section .what-we-do .card-icon {
  background: rgba(255, 107, 107, 0.1);
  color: var(--accent-color);
}
.about-section .our-vision .card-icon {
  background: rgba(108, 99, 255, 0.1);
  color: #6c63ff;
}
.about-section .about-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}
.about-section .about-card p {
  color: var(--text-color);
  margin-bottom: 0;
}

.services-section {
  background-color: var(--light-color);
}
.services-section .service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.services-section .service-item:hover {
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
.services-section .service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(74, 108, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  color: var(--primary-color);
  font-size: 1.8rem;
  flex-shrink: 0;
}
.services-section .service-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
}
.services-section .service-content p {
  color: var(--text-color);
  margin-bottom: 0;
}
.services-section .image-column {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.services-section .service-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.services-section .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.85) 0%, rgba(106, 117, 249, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  color: white;
  text-align: center;
}
.services-section .image-overlay h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.services-section .image-overlay p {
  font-size: 1.2rem;
  max-width: 400px;
  margin: 0 auto;
}
.services-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}
.services-section .section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}
.services-section .section-title h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
.services-section .section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-color);
}
@media (max-width: 992px) {
  .services-section .image-column {
    min-height: 400px;
  }
  .services-section .image-overlay h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .services-section .services-section {
    padding: 60px 0;
  }
  .services-section .section-title h2 {
    font-size: 2rem;
  }
  .services-section .image-overlay h2 {
    font-size: 2.2rem;
  }
  .services-section .service-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
  }
  .services-section .service-icon {
    margin: auto;
    margin-bottom: 20px;
  }
}

.contact-section {
  background-color: var(--light-color);
}
.contact-section .contact-info {
  padding: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.contact-section .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(74, 108, 247, 0.05);
  transition: all 0.3s ease;
}
.contact-section .contact-item:hover {
  background-color: rgba(74, 108, 247, 0.05);
  transform: translateX(5px);
}
.contact-section .contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(74, 108, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact-section .contact-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 8px;
}
.contact-section .contact-content p {
  color: var(--text-color);
  margin-bottom: 0;
}
.contact-section .social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
.contact-section .social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(74, 108, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact-section .social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}
.contact-section .contact-form {
  padding: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.contact-section .form-control {
  padding: 15px 20px;
  border: 2px solid #eef0f8;
  border-radius: 8px;
  margin-bottom: 25px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-section .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(74, 108, 247, 0.1);
}
.contact-section textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.contact-section .btn-send {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 40px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
}
.contact-section .btn-send:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
}
.contact-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}
.contact-section .section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}
.contact-section .section-title h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
.contact-section .section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-color);
}
@media (max-width: 992px) {
  .contact-section .contact-info {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .contact-section .contact-section {
    padding: 60px 0;
  }
  .contact-section .section-title h2 {
    font-size: 2rem;
  }
  .contact-section .contact-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .contact-section .contact-icon {
    margin-right: 0;
    margin: auto;
    margin-bottom: 15px !important;
  }
  .contact-section .contact-info,
  .contact-section .contact-form {
    padding: 30px 25px;
  }
}

.visiting-card-sec {
  background-color: var(--light-color);
  overflow: hidden;
  width: 100%;
  transition: all 0.3s ease;
}
.visiting-card-sec .visiting-card-sec:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.visiting-card-sec .card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 40px 30px 30px;
  color: white;
  border-radius: 12px;
  text-align: center;
}
.visiting-card-sec .profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.3);
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 20px;
  display: block;
}
.visiting-card-sec .person-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.visiting-card-sec .job-title {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 5px;
}
.visiting-card-sec .company-name {
  font-size: 1rem;
  opacity: 0.8;
}
.visiting-card-sec .card-body {
  padding: 40px 30px;
}
.visiting-card-sec .contact-info {
  margin-bottom: 30px;
}
.visiting-card-sec .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0;
}
.visiting-card-sec .contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(74, 108, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1rem;
  flex-shrink: 0;
}
.visiting-card-sec .contact-details {
  flex: 1;
}
.visiting-card-sec .contact-label {
  font-size: 0.85rem;
  color: var(--text-color);
  opacity: 0.7;
  margin-bottom: 2px;
}
.visiting-card-sec .contact-value {
  font-size: 1rem;
  color: var(--dark-color);
  font-weight: 500;
}
.visiting-card-sec .qr-section {
  text-align: center;
  padding: 20px;
  border-left: 1px solid #eee;
}
.visiting-card-sec .qr-code {
  width: 180px;
  height: 180px;
  background: #f8f9fa;
  border-radius: 10px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 0.9rem;
  border: 1px solid #eee;
}
.visiting-card-sec .qr-text {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-bottom: 20px;
}
.visiting-card-sec .btn-download {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border: none;
  padding: 12px;
  font-size: 14px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
}
.visiting-card-sec .btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(74, 108, 247, 0.4);
  color: white;
}
.visiting-card-sec .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}
.visiting-card-sec .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(74, 108, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.visiting-card-sec .social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .visiting-card-sec .qr-section {
    border-left: none;
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 20px;
  }
  .visiting-card-sec .card-header {
    padding: 30px 20px 20px;
  }
  .visiting-card-sec .card-body {
    padding: 30px 20px;
  }
  .visiting-card-sec .profile-img {
    width: 100px;
    height: 100px;
  }
  .visiting-card-sec .person-name {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .visiting-card-sec .contact-item {
    flex-direction: column;
    text-align: center;
  }
  .visiting-card-sec .contact-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=visting-card4.css.map */