* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    Segoe UI,
    sans-serif;
}

body {
  background: #e0dffd;
  color: #46467a;
}

/* NAVBAR */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  color: #7766c6;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #46467a;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #7766c6;
}

/* HERO */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px 8%;
  min-height: 90vh;
}

.hero-content {
  max-width: 550px;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content span {
  color: #7766c6;
}

.hero-content p {
  margin-bottom: 35px;
  color: #555;
  font-size: 17px;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #7766c6;
  color: white;
  padding: 13px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

.btn-secondary {
  background: #ffc212;
  color: #46467a;
  padding: 13px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

/* HERO DESIGN */

.hero-design {
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-design svg {
  width: 100%;
  height: 100%;
}
.one {
  width: 220px;
  height: 220px;
  background: #7766c6;
  top: 40px;
  left: 120px;
}

.two {
  width: 160px;
  height: 160px;
  background: #f9b0c3;
  bottom: 50px;
  left: 0;
}

.three {
  width: 110px;
  height: 110px;
  background: #ffc212;
  top: 0;
  right: 0;
}

/* MOBILE */

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .hero-design {
    width: 300px;
    height: 300px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    background: white;
    width: 100%;
    flex-direction: column;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* SERVICES */

.services {
  padding: 100px 8%;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.section-header p {
  max-width: 600px;
  margin: auto;
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #e0dffd;
  padding: 35px 25px;
  border-radius: 20px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  background: #7766c6;
  color: white;
}

.service-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
}
/* ABOUT SECTION */

.about {
  padding: 100px 8%;
  background: #e0dffd;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-image {
  flex: 1;
}

.about-image svg {
  width: 100%;
  max-width: 420px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat-box {
  background: white;
  padding: 20px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.stat-box h3 {
  color: #7766c6;
  font-size: 24px;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 14px;
  color: #666;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* CONTACT SECTION */

.contact {
  padding: 100px 8%;
  background: white;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-header p {
  color: #666;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.contact-card {
  background: #e0dffd;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-8px);
  background: #7766c6;
  color: white;
}

.contact-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.6;
}
/* FOOTER */

.footer{
background:#46467A;
color:white;
padding:70px 8% 20px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
margin-bottom:40px;
}

.footer-col h3{
margin-bottom:15px;
}

.footer-col h4{
margin-bottom:15px;
}

.footer-col p{
font-size:14px;
line-height:1.6;
color:#ddd;
}

.footer-col ul{
list-style:none;
}

.footer-col ul li{
margin-bottom:8px;
}

.footer-col ul li a{
text-decoration:none;
color:#ddd;
font-size:14px;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#FFC212;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.2);
padding-top:15px;
text-align:center;
font-size:13px;
color:#ddd;
}