html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(250, 218, 221, 0.35), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255, 200, 210, 0.25), transparent 40%),
    linear-gradient(135deg, #ffffff 0%, #fff6f8 50%, #fdecef 100%);
  background-attachment: fixed;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  color: rgb(0, 0, 0);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(90deg, #ffffff, #fff1f5);
  border-bottom: 1px solid #f4a6b5;
}

.logo {
  font-size: 50px;
  font-weight: bold;
}
.logo img{
  width: 180px;
  padding-top: 5px;
  margin: 0;
}
.logo sub{
  font-size: 25px;
  color: #F4A6B5;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 60px;
  align-items: center;
}

.nav-links a {
  color: #111;
  text-decoration: none;
  position: relative;
}
.nav-links a:hover {
  color: #F4A6B5;
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-right: 50px;
  padding-top: 50px;
}

.hero-text {
  width: 40%;
  z-index: 2;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  color: #111;
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-text ul {
  list-style: none;
  padding:0;
  justify-content: space-between;
  display: flex;
}

.hero-text ul li {
  font-size: 25px;
  font-weight: bold;
  color: #F4A6B5;
  margin-bottom: 10px;
  position: relative;
  padding-right: 15px;
}

.hero-text ul li::before {
  content: "•";
  display: flex;
  position: absolute;
  left:-15px;
  color: #111;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;

  background: radial-gradient(circle, rgba(250,218,221,0.4), transparent 60%);
  filter: blur(90px);

  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,200,210,0.3), transparent 60%);
  filter: blur(90px);
  z-index: 0;
}
.mySwiper {
  width: 100%;
  height: 70vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(1.03);
}
.mySwiper::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transform: skewX(-15deg);
  animation: shine 5s infinite;
  z-index: 3;
}
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  padding: 0 80px;
  position: relative;
  background: radial-gradient(circle, rgba(255,200,210,0.3), transparent 60%);
}

.about-text {
  width: 40%;
}

.about-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}
#three-container{
  width:50%;
  height:500px;

  display:flex;
  justify-content:center;
  align-items:center;

  position:relative;
}
.products-section{
    width:100%;
    min-height:100vh;
    background:#0f0f0f;
    padding:100px 5%;
    color:white;
    position:relative;
    overflow:hidden;
}


.products-section::before{
    content:"";
    position:absolute;
    top:-200px;
    right:-100px;
    width:500px;
    height:500px;
    background:rgba(244,166,181,0.15);
    filter:blur(120px);
    border-radius:50%;
}

.products-section::after{
    content:"";
    position:absolute;
    bottom:-200px;
    left:-100px;
    width:450px;
    height:450px;
    background:rgba(255,255,255,0.05);
    filter:blur(120px);
    border-radius:50%;
}


.products-container{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:70px;
    position:relative;
    z-index:2;
    margin-bottom:60px;
}


.product-slider{
    position:relative;
    width:65%;
    aspect-ratio:16 / 9;
    overflow:hidden;
    border-radius:30px;

    background:#111;

    box-shadow:
    0 20px 80px rgba(0,0,0,0.45),
    0 0 40px rgba(244,166,181,0.12);
}

.product-slider .slides{
    display:none;
    width:100%;
    height:100%;
}

.product-slider .slides:first-child{
    display:block;
}

.product-slider .slides img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:30px;
    transition:0.5s;
}



.products-content{
    width:35%;
    padding-top:10px;
}

.products-content h1{
    font-size:60px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.products-content p{
    color:#cfcfcf;
    line-height:1.9;
    font-size:16px;
    margin-bottom:35px;
}



.product-list{
    width:100%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.product-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);

    padding:22px;
    border-radius:24px;

    backdrop-filter:blur(15px);

    transition:0.4s;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.2);

    min-height:200px;
}

.product-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.08);
    border-color:rgba(244,166,181,0.4);
}

.product-card h2{
    font-size:25px;
    margin-bottom:12px;
}

.product-card p{
    font-size:15px;
    color:#a5a5a5;
    line-height:1.7;
    margin:0;
}
.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);

    color:white;
    font-size:24px;
    cursor:pointer;

    transition:0.3s;
    z-index:10;
}

.prev:hover,
.next:hover{
    background:#f4a6b5;
    color:black;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

@media (max-width:1200px){

  .hero{
    gap:40px;
  }

  .hero-text h1{
    font-size:42px;
  }

  .products-content h1{
    font-size:48px;
  }

  .product-list{
    grid-template-columns:repeat(2,1fr);
  }

}
@media (max-width:992px){

  .navbar{
    padding:15px 20px;
  }

  .nav-links{
    gap:25px;
  }

  .logo img{
    width:150px;
  }

  .logo sub{
    font-size:20px;
  }

  .hero{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    padding:120px 30px 60px;
    gap:50px;
  }

  .hero-text{
    width:100%;
  }

  .hero-text h1{
    font-size:42px;
  }

  .hero-text ul{
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
  }

  .mySwiper{
    width:100%;
    height:60vh;
  }

  .about{
    flex-direction:column;
    text-align:center;
    padding:80px 40px;
    gap:50px;
  }

  .about-text{
    width:100%;
  }

  .about-text h2{
    font-size:36px;
  }

  #three-container{
    width:100%;
    height:400px;
  }

  .products-container{
    flex-direction:column;
    align-items:center;
    gap:50px;
    margin-bottom:50px;
  }

  .product-slider{
    width:100%;
  }

  .products-content{
    width:100%;
    text-align:center;
  }

  .products-content h1{
    font-size:44px;
  }

  .products-content p{
    max-width:800px;
    margin:auto;
  }

  .product-list{
    grid-template-columns:repeat(2,1fr);
  }

}



@media (max-width:768px){

  .navbar{
    padding:12px 15px;
    flex-direction:column;
    gap:10px;
  }

  .nav-links{
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .nav-links a{
    font-size:14px;
  }

  .logo img{
    width:130px;
  }

  .logo sub{
    font-size:18px;
  }

  .hero{
    padding:140px 20px 60px;
    gap:40px;
  }

  .hero-text h1{
    font-size:34px;
    line-height:1.3;
  }

  .hero-text ul{
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
  }

  .hero-text ul li{
    font-size:20px;
  }

  .mySwiper{
    height:45vh;
    border-radius:18px;
  }

  .about{
    padding:80px 20px;
    gap:40px;
  }

  .about-text h2{
    font-size:30px;
  }

  .about-text p{
    font-size:16px;
    line-height:1.8;
  }

  #three-container{
    width:100%;
    height:320px;
  }

  .products-section{
    padding:70px 20px;
  }

  .products-container{
    gap:40px;
    margin-bottom:40px;
  }

  .product-slider{
    width:100%;
    border-radius:22px;
  }

  .product-slider .slides img{
    border-radius:22px;
  }

  .products-content{
    width:100%;
    text-align:center;
  }

  .products-content h1{
    font-size:36px;
  }

  .products-content p{
    font-size:15px;
    line-height:1.8;
  }

  .product-list{
    grid-template-columns:1fr;
  }

  .product-card{
    min-height:auto;
  }

  .prev,
  .next{
    width:45px;
    height:45px;
    font-size:18px;
  }

}



@media (max-width:480px){

  .navbar{
    padding:10px;
  }

  .nav-links{
    gap:10px;
  }

  .nav-links a{
    font-size:12px;
  }

  .logo img{
    width:110px;
  }

  .logo sub{
    font-size:15px;
  }

  .hero{
    padding:130px 15px 40px;
  }

  .hero-text h1{
    font-size:28px;
  }

  .hero-text ul{
    flex-direction:column;
    gap:10px;
  }

  .hero-text ul li{
    font-size:18px;
  }

  .mySwiper{
    height:38vh;
    border-radius:15px;
  }

  .about{
    padding:60px 15px;
  }

  .about-text h2{
    font-size:26px;
  }

  .about-text p{
    font-size:15px;
  }

  #three-container{
    height:250px;
  }

  .products-section{
    padding:60px 15px;
  }

  .products-content h1{
    font-size:30px;
  }

  .products-content p{
    font-size:14px;
  }

  .product-card{
    padding:18px;
  }

  .product-card h2{
    font-size:18px;
  }

  .product-card p{
    font-size:13px;
  }

  .prev,
  .next{
    width:40px;
    height:40px;
    font-size:16px;
  }

}


.family-section{
    width:100%;
    min-height:100vh;
    padding:120px 5%;
    background:
    linear-gradient(
        135deg,
        #fff7f9 0%,
        #fff1f5 45%,
        #fdecef 100%
    );

    position:relative;
    overflow:hidden;
}


.family-section::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-120px;

    width:520px;
    height:520px;

    background:rgba(244,166,181,0.22);

    filter:blur(120px);
    border-radius:50%;
}

.family-section::after{
    content:"";
    position:absolute;
    bottom:-180px;
    left:-100px;

    width:450px;
    height:450px;

    background:rgba(255,255,255,0.7);

    filter:blur(120px);
    border-radius:50%;
}

.family-header{
    text-align:center;
    margin-bottom:90px;
    position:relative;
    z-index:2;
}

.family-header h1{
    font-size:68px;
    margin-bottom:25px;
    font-weight:800;
    color:#111;
    line-height:1.1;
}

.family-header p{
    max-width:850px;
    margin:auto;

    color:#666;
    line-height:1.9;
    font-size:18px;
}


.family-gallery{
    width:100%;
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:25px;

    margin-bottom:90px;

    position:relative;
    z-index:2;
}

.gallery-left img{
    width:100%;
    height:100%;
    min-height:620px;

    object-fit:cover;

    border-radius:35px;

    box-shadow:
    0 25px 70px rgba(0,0,0,0.12);
}

.gallery-right{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.gallery-right img{
    width:100%;
    height:300px;

    object-fit:cover;

    border-radius:28px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.10);

    transition:0.4s;
}

.gallery-right img:hover,
.gallery-left img:hover{
    transform:translateY(-8px) scale(1.01);
}


.family-values{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

    margin-bottom:90px;

    position:relative;
    z-index:2;
}

.value-card{
    background:rgba(255,255,255,0.65);

    border:1px solid rgba(244,166,181,0.18);

    padding:32px;

    border-radius:30px;

    backdrop-filter:blur(18px);

    transition:0.4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);
}

.value-card:hover{
    transform:translateY(-10px);

    background:white;

    border-color:rgba(244,166,181,0.45);

    box-shadow:
    0 20px 60px rgba(244,166,181,0.18);
}

.value-card h2{
    font-size:24px;
    margin-bottom:15px;

    color:#111;
}

.value-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

.family-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

    margin-bottom:90px;

    position:relative;
    z-index:2;
}

.stat-box{
    background:rgba(255,255,255,0.6);

    border-radius:28px;

    padding:42px 20px;

    text-align:center;

    border:1px solid rgba(244,166,181,0.15);

    backdrop-filter:blur(12px);

    box-shadow:
    0 15px 45px rgba(0,0,0,0.08);

    transition:0.4s;
}

.stat-box:hover{
    transform:translateY(-8px);

    background:white;

    box-shadow:
    0 20px 55px rgba(244,166,181,0.18);
}

.stat-box h1{
    font-size:58px;

    color:#f4a6b5;

    margin-bottom:12px;

    font-weight:800;
}

.stat-box p{
    color:#666;
    font-size:16px;
}


.founder-message{
    max-width:980px;

    margin:auto;

    text-align:center;

    background:rgba(255,255,255,0.72);

    border:1px solid rgba(244,166,181,0.18);

    padding:65px 45px;

    border-radius:40px;

    backdrop-filter:blur(20px);

    position:relative;
    z-index:2;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.08);
}

.founder-message p{
    font-size:27px;
    line-height:1.9;

    color:#111;

    margin-bottom:25px;

    font-weight:300;
}

.founder-message h3{
    color:#f4a6b5;

    font-size:22px;

    font-weight:700;
}


@media(max-width:1100px){

    .family-values{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .family-stats{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .family-gallery{
        grid-template-columns:1fr;
    }

    .gallery-left img{
        min-height:500px;
    }

}




@media(max-width:768px){

    .family-section{
        padding:90px 20px;
    }

    .family-header{
        margin-bottom:60px;
    }

    .family-header h1{
        font-size:42px;
        line-height:1.2;
    }

    .family-header p{
        font-size:16px;
        line-height:1.8;
    }

    .family-gallery{
        gap:20px;
        margin-bottom:60px;
    }

    .gallery-left img{
        min-height:350px;
        border-radius:25px;
    }

    .gallery-right{
        grid-template-columns:1fr;
        gap:18px;
    }

    .gallery-right img{
        height:240px;
        border-radius:22px;
    }

    .family-values{
        grid-template-columns:1fr;
        gap:20px;
        margin-bottom:60px;
    }


    .family-stats{
        grid-template-columns:repeat(2,1fr);
        gap:16px;
        margin-bottom:60px;
    }

    .value-card,
    .stat-box{
        border-radius:24px;
    }

    .value-card{
        padding:26px;
    }

    .stat-box{
        padding:28px 15px;
    }

    .stat-box h1{
        font-size:38px;
    }

    .stat-box p{
        font-size:14px;
    }

    .founder-message{
        padding:40px 25px;
        border-radius:28px;
    }

    .founder-message p{
        font-size:20px;
        line-height:1.8;
    }

}


@media(max-width:480px){

    .family-section{
        padding:70px 15px;
    }

    .family-header{
        margin-bottom:50px;
    }

    .family-header h1{
        font-size:34px;
        line-height:1.2;
    }

    .family-header p{
        font-size:15px;
        line-height:1.8;
    }

    .family-gallery{
        gap:16px;
        margin-bottom:50px;
    }

    .gallery-left img{
        min-height:260px;
        border-radius:22px;
    }

    .gallery-right{
        gap:16px;
    }

    .gallery-right img{
        height:200px;
        border-radius:20px;
    }

    .family-values{
        gap:18px;
        margin-bottom:50px;
    }

    .value-card{
        padding:24px;
        border-radius:22px;
    }

    .value-card h2{
        font-size:20px;
    }

    .value-card p{
        font-size:14px;
        line-height:1.8;
    }


    .family-stats{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
        margin-bottom:50px;
    }

    .stat-box{
        padding:22px 10px;
        border-radius:20px;
    }

    .stat-box h1{
        font-size:32px;
        margin-bottom:8px;
    }

    .stat-box p{
        font-size:12px;
        line-height:1.5;
    }

    .founder-message{
        padding:30px 18px;
        border-radius:24px;
    }

    .founder-message p{
        font-size:18px;
        line-height:1.8;
    }

    .founder-message h3{
        font-size:17px;
    }

}



.contact-section{
    width:100%;
    min-height:100vh;

    padding:120px 5% 60px;

    background:
    linear-gradient(
        135deg,
        #0f0f0f 0%,
        #171717 50%,
        #0b0b0b 100%
    );

    position:relative;
    overflow:hidden;
}


.contact-section::before{
    content:"";
    position:absolute;

    top:-200px;
    right:-120px;

    width:500px;
    height:500px;

    background:rgba(244,166,181,0.12);

    border-radius:50%;

    filter:blur(120px);
}

.contact-section::after{
    content:"";
    position:absolute;

    bottom:-200px;
    left:-120px;

    width:450px;
    height:450px;

    background:rgba(255,255,255,0.04);

    border-radius:50%;

    filter:blur(120px);
}


.contact-header{
    text-align:center;

    margin-bottom:80px;

    position:relative;
    z-index:2;
}

.contact-header h1{
    font-size:65px;
    color:white;

    margin-bottom:20px;

    font-weight:800;
}

.contact-header p{
    max-width:750px;

    margin:auto;

    color:#bdbdbd;

    line-height:1.9;

    font-size:18px;
}



.contact-container{
    width:100%;

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:30px;

    position:relative;
    z-index:2;
}


.contact-box{
    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:35px;

    padding:45px;

    backdrop-filter:blur(15px);

    transition:0.4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.25);
}

.contact-box:hover{
    transform:translateY(-8px);

    border-color:rgba(244,166,181,0.45);

    background:rgba(255,255,255,0.06);
}

.contact-box h2{
    color:white;

    font-size:34px;

    margin-bottom:30px;
}

.contact-box a{
    display:block;

    text-decoration:none;

    color:#d4d4d4;

    font-size:17px;

    margin-bottom:22px;

    transition:0.3s;
}

.contact-box a:hover{
    color:#f4a6b5;

    transform:translateX(6px);
}

.developer-name{
    color:#f4a6b5;

    font-size:20px;

    margin-bottom:25px;

    font-weight:600;
}



.copyright{
    width:100%;

    text-align:center;

    margin-top:90px;

    padding-top:35px;

    border-top:1px solid rgba(255,255,255,0.08);

    position:relative;
    z-index:2;
}

.copyright p{
    color:#9d9d9d;

    font-size:15px;

    letter-spacing:1px;
}



@media(max-width:900px){

    .contact-container{
        grid-template-columns:1fr;
    }

    .contact-header h1{
        font-size:48px;
    }

}

@media(max-width:768px){

    .contact-section{
        padding:90px 20px 50px;
    }

    .contact-header{
        margin-bottom:50px;
    }

    .contact-header h1{
        font-size:40px;
    }

    .contact-header p{
        font-size:16px;
        line-height:1.8;
    }

    .contact-box{
        padding:35px 25px;
        border-radius:28px;
    }

    .contact-box h2{
        font-size:28px;
    }

    .contact-box a{
        font-size:15px;
        margin-bottom:18px;
    }

    .developer-name{
        font-size:18px;
    }

}

@media(max-width:480px){

    .contact-section{
        padding:70px 15px 40px;
    }

    .contact-header h1{
        font-size:34px;
    }

    .contact-header p{
        font-size:15px;
    }

    .contact-box{
        padding:28px 20px;
        border-radius:24px;
    }

    .contact-box h2{
        font-size:24px;
    }

    .contact-box a{
        font-size:14px;
        line-height:1.7;
    }

    .developer-name{
        font-size:16px;
    }

    .copyright{
        margin-top:60px;
    }

    .copyright p{
        font-size:13px;
    }

}