:root {
    --primary-color: #E1E0D6;
    --primary-dark: #C8C7BD;
    --text-dark: #333333;
    --text-light: #777777;
    --accent-color: #8B7D6B;
    --background-color:#F9F9F7;
}
        
* { 
    margin: 0;   
    padding: 0;    
    box-sizing: border-box; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      text-decoration: none;
}





  html {
    font-size: 62.5%;
    
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
    overflow-x: hidden;
  }



body {
    background-color:#F9F9F7;
    height: 100vh;
    width: 100vw;

  overflow-x: hidden;
}


.carousel button {
    display: flex;
    position: relative !important;
    top: 0  !important;
    overflow: hidden;
    z-index: -1;


}



@media (min-width: 1501px) {


/* hero başlangıç  */



/* hero bölümü */

  .hero {
    margin-top: 2rem;
    padding-top: -9rem;
    position: relative;
    height: fit-content;
    overflow: hidden;
}






.carousel {
    width: 100vw;
    height: 100vh;
}

.carousel-inner {
    width: 100%;
    padding-top: -5rem;
    height: fit-content;
}


.carousel-item img{
    width: 100%;
    overflow-y: hidden;
        transform: translateY(-27%);
}



.hero-background {
position: absolute;
bottom: 20vw;
left: 0;
width: 60rem;
height: fit-content;
z-index: 101;
 padding-left: 7rem;
}

.hero-content {
    display: flex;
 
    height:fit-content;
    padding-top: .5rem;
    padding-bottom: .5rem;
    width: 100%;
    background-color: #3333332f;
    justify-content: center;
    text-align: center;
    border-radius: 1rem;
 

}

.hero-content h2 {
    color: var(--background-color);
    font-size: 4rem;
    font-weight: 700;
    text-shadow:0 4px 8px 0  rgba(0, 0, 0, 0.19);
}




/* carousel bitiş */





/* about  us başlangıç */





 /* About Cards Grid */
        .about-section {
            padding: 10rem 8%;
            max-width: 1600px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-title h2 {
            font-size: 4.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 5rem;
        }

        .info-card {
            background: white;
            padding: 4rem;
            border-radius: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-color);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        .info-card:hover::before {
            transform: scaleX(1);
        }

        .info-card h3 {
            font-size: 2.4rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .info-card p {
            font-size: 1.6rem;
            line-height: 1.8;
            color: var(--text-dark);
        }

        .logo-card {
            background: var(--gradient-bg);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-card img {
            max-width: 80%;
            height: auto;
        }



/* about  us bitiş */














/* highligther başlangıç  */

.highlighter-mother{
    width: 100%;
    padding: 5rem 15%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}


.product-card{
    width: 30%;
    border-radius: 1rem;
    padding:3rem 3rem;


        box-shadow:0 4px 8px 0  rgba(0, 0, 0, 0.19);


           transition: all .2s ease-in;

}

.product-card img {
    width: 100%;
    height: auto;
/*     border-top-left-radius: 2rem;
    border-top-right-radius: 2rem; */
    border-radius: 1rem;


        transition: all .3s ease-in;
}



.product-promt{
    justify-content: left;
    margin-left: 1rem;  
    margin-top:1rem ; 
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 2rem;

}
.product-promt h2 {
    font-size: 2rem;
}


.product-promt p {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.658);
}

.product-card a>p  {
    margin:1rem ;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    width:fit-content;
    border-radius: 1rem;
    font-size: 1.4rem;
    
}


.product-card:hover {

      box-shadow:0 8px 16px 0  rgba(0, 0, 0, 0.19);
      transform: scale(1.01);
      transition: all .3s ease-in;


}



/* highligther bitiş */



}

@media (min-width: 1281px) and (max-width:1500px) {


/* hero başlangıç  */



/* hero bölümü */

  .hero {
    margin-top: 2rem;
    padding-top: -9rem;
    position: relative;
    height: 100vh;
    overflow: hidden;
}






.carousel {
    width: 100vw;
    height: 110vh;
}

.carousel-inner {
    width: 100%;
    height: 100vh;
    padding-top: -5rem;
    height: fit-content;
}

.carousel-item {
    width: 100%;
     height: 100vh;
}


.carousel-item img{
    width: 100%;
    overflow-y: hidden;
/*     transform: translateY(-27%); */
}



.hero-background {
position: absolute;
top: 18vw;
left: 0;
width: 60rem;
height: fit-content;
z-index: 101;
/* transform: translateY(80vh);    */
margin-top: 43vw;
 padding-left: 7rem;
}

.hero-content {
    display: flex;
 
    height:fit-content;
    padding-top: .5rem;
    padding-bottom: .5rem;
    width: 100%;
    background-color: #3333332f;
    justify-content: center;
    text-align: center;
    border-radius: 1rem;
 

}

.hero-content h2 {
    color: var(--background-color);
    font-size: 4rem;
    font-weight: 700;
    text-shadow:0 4px 8px 0  rgba(0, 0, 0, 0.19);
}




/* carousel bitiş */







/* about  us başlangıç */





 /* About Cards Grid */
        .about-section {
            padding: 10rem 8%;
            max-width: 1600px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-title h2 {
            font-size: 4.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 5rem;
        }

        .info-card {
            background: white;
            padding: 4rem;
            border-radius: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-color);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        .info-card:hover::before {
            transform: scaleX(1);
        }

        .info-card h3 {
            font-size: 2.4rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .info-card p {
            font-size: 1.6rem;
            line-height: 1.8;
               color: var(--text-dark);
        }

        .logo-card {
            background: var(--gradient-bg);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-card img {
            max-width: 80%;
            height: auto;
        }



/* about  us bitiş */











/* highligther başlangıç  */

.highlighter-mother{
    width: 100%;
    padding: 5rem 15%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}


.product-card{
    width: 30%;
    border-radius: 1rem;
    padding:3rem 3rem;


        box-shadow:0 4px 8px 0  rgba(0, 0, 0, 0.19);


           transition: all .2s ease-in;

}

.product-card img {
    width: 100%;
    height: auto;
/*     border-top-left-radius: 2rem;
    border-top-right-radius: 2rem; */
    border-radius: 1rem;


        transition: all .3s ease-in;
}



.product-promt{
    justify-content: left;
    margin-left: 3rem;  
    margin-top:1rem ; 
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 2rem;

}
.product-promt h2 {
    font-size: 2rem;
}


.product-promt p {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.658);
}

.product-card a>p  {
    margin:1rem 3rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    width:fit-content;
    border-radius: 1rem;
    font-size: 1.4rem;
    
}


.product-card:hover {

      box-shadow:0 8px 16px 0  rgba(0, 0, 0, 0.19);
      transform: scale(1.01);
      transition: all .3s ease-in;


}



/* highligther bitiş */



}


/* responsive başlangıç  */



@media (min-width: 1025px) and (max-width: 1280px) {
  

/* hero başlangıç  */



/* hero bölümü */

  .hero {
    margin-top: 2rem;
    padding-top: -9rem;
    position: relative;
    height: 100vh;
    overflow: hidden;
}






.carousel {
    width: 100vw;
    height: fit-content;
}

.carousel-inner {
    width: 100%;
    padding-top: -5rem;
    height: fit-content;
}


.carousel-item img{
    width: 100%;
    overflow-y: hidden;
 /*    transform: translateY(-27%); */
}



.hero-background {
  position: absolute;
  bottom: 5vh;
  left: 0;

  width: 60rem;
  height: fit-content;
  z-index: 101;
/*      transform: translateY(60vh); */
     padding-left: 7rem;
}

.hero-content {
    display: flex;
 
    height:fit-content;
    padding-top: .5rem;
    padding-bottom: .5rem;
    width: 100%;
    background-color: #3333332f;
    justify-content: center;
    text-align: center;
    border-radius: 1rem;
 

}

.hero-content h2 {
    color: var(--background-color);
    font-size: 4rem;
    font-weight: 700;
    text-shadow:0 4px 8px 0  rgba(0, 0, 0, 0.19);
}




/* carousel bitiş */






/* about  us başlangıç */





 /* About Cards Grid */
        .about-section {
            padding: 10rem 8%;
            max-width: 1600px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-title h2 {
            font-size: 4.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 5rem;
        }

        .info-card {
            background: white;
            padding: 4rem;
            border-radius: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-color);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        .info-card:hover::before {
            transform: scaleX(1);
        }

        .info-card h3 {
            font-size: 2.4rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .info-card p {
            font-size: 1.6rem;
            line-height: 1.8;
               color: var(--text-dark);
        }

        .logo-card {
            background: var(--gradient-bg);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-card img {
            max-width: 80%;
            height: auto;
        }



/* about  us bitiş */






/* highligther başlangıç  */

.highlighter-mother{
    width: 100%;
    padding: 5rem 15%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}


.product-card{
    width: 30%;
    border-radius: 1rem;
    padding:3rem 3rem;


        box-shadow:0 4px 8px 0  rgba(0, 0, 0, 0.19);


           transition: all .2s ease-in;

}

.product-card img {
    width: 100%;
    height: auto;
/*     border-top-left-radius: 2rem;
    border-top-right-radius: 2rem; */
    border-radius: 1rem;
    transition: all .3s ease-in;
}



.product-promt{
    justify-content: left;
    margin-left: 0;  
    margin-top:1rem ; 
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 2rem;

}
.product-promt h2 {
    font-size: 2rem;
}


.product-promt p {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.658);
}

.product-card a>p  {
    margin:1rem 3rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    width:fit-content;
    border-radius: 1rem;
    font-size: 1.4rem;
    
}


.product-card:hover {

      box-shadow:0 8px 16px 0  rgba(0, 0, 0, 0.19);
      transform: scale(1.01);
      transition: all .3s ease-in;


}



/* highligther bitiş */




    


}


@media (min-width: 768px) and (max-width: 1024px) {




.hero {
    margin-top: 2rem;
    padding-top: -9rem;
    position: relative;
    height: fit-content;
    overflow: hidden;
}




.carousel {
    width: 100vw;
    height: fit-content;
}

.carousel-inner {
    width: 100%;
    padding-top: -5rem;
    height: fit-content;
}


.carousel-item img{
    width: 100%;
    overflow-y: hidden;
}


.hero-background {
  position: absolute;
  bottom: 5vw;
  left: 0;
  width: calc(100vw / 1.8);
  height: fit-content;
  z-index: 101;
/*      transform: translateY(80vh); */
     padding-left: 7rem;
}

.hero-content {
    display: flex;
 
    height:fit-content;
    padding-top: .5rem;
    padding-bottom: .5rem;
    width: 100%;
    background-color: #3333332f;
    justify-content: center;
    text-align: center;
    border-radius: 1rem;
 

}

.hero-content h2 {
    color: var(--background-color);
    font-size: calc(100vw / 30 );
    font-weight: 700;
    text-shadow:0 4px 8px 0  rgba(0, 0, 0, 0.19);
}




/* carousel bitiş */







/* about  us başlangıç */





 /* About Cards Grid */


        .about-section {
            padding: 10rem 8%;
            max-width: 1600px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-title h2 {
            font-size: 4.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(1, 3fr);
            gap: 3rem;
            margin-bottom: 5rem;
        }

        .info-card {
            background: white;
            padding: 4rem;
            border-radius: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-color);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        .info-card:hover::before {
            transform: scaleX(1);
        }

        .info-card h3 {
            text-align: center;
            width: 50%;
            margin: 0 25%;
            padding: 2rem 0 ;
            font-size: 2.4rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            font-weight: 600;
            border-bottom: 1px solid rgba(0, 0, 0, 0.144);
        }

        .info-card p {
            font-size: 1.6rem;
            line-height: 1.8;
              color: var(--text-dark);
        }

        .logo-card {
            background: var(--gradient-bg);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-card img {
            max-width: 80%;
            height: auto;
        }



/* about  us bitiş */










/* highligther başlangıç  */

.highlighter-mother{
    width: 100%;
    padding: 5rem 15%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}


.product-card{
    width: 45%;
    border-radius: 1rem;
    padding:3rem 3rem;


        box-shadow:0 4px 8px 0  rgba(0, 0, 0, 0.19);


           transition: all .2s ease-in;

}

.product-card img {
    width: 100%;
    height: auto;
/*     border-top-left-radius: 2rem;
    border-top-right-radius: 2rem; */
    border-radius: 1rem;


        transition: all .3s ease-in;
}



.product-promt{
    justify-content: left;
    margin-top:1rem ; 
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 2rem;

}
.product-promt h2 {
    font-size: 2rem;
}


.product-promt p {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.658);
}

.product-card a>p  {
    margin:1rem 0;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    width:fit-content;
    border-radius: 1rem;
    font-size: 1.4rem;
    
}


.product-card:hover {

      box-shadow:0 8px 16px 0  rgba(0, 0, 0, 0.19);
      transform: scale(1.01);
      transition: all .3s ease-in;


}

  

  
}


@media (min-width: 481px) and (max-width: 767px) {
  



/* hero bölümü */

  .hero {
    margin-top: 2rem;
    padding-top: -9rem;
    position: relative;
    height: 100vh;
    overflow: hidden;
}




.carousel {
    width: 100vw;
    height: fit-content;
}

.carousel-inner {
    width: 100%;
    padding-top: -5rem;
    height: fit-content;
}


.carousel-item img{
    width: 100%;
    overflow-y: hidden;
/*     transform: translateY(-27%); */
}


.hero-background {
  position: absolute;
  bottom: 3vw;
  left: 0;
  width: 60rem;
  height: fit-content;
  z-index: 101;
/*      transform: translateY(80vh); */
     padding-left: 7rem;
}

.hero-content {
    display: flex;
 
    height:fit-content;
    padding-top: .5rem;
    padding-bottom: .5rem;
    width: 50vw;
    background-color: #3333332f;
    justify-content: center;
    text-align: center;
    border-radius: 1rem;
 

}

.hero-content h2 {
    color: var(--background-color);
    font-size: calc(100vw / 25);
    font-weight: 700;
    text-shadow:0 4px 8px 0  rgba(0, 0, 0, 0.19);
}




/* carousel bitiş */








/* about  us başlangıç */





 /* About Cards Grid */


        .about-section {
            padding: 10rem 8%;
            max-width: 1600px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-title h2 {
            font-size: 4.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(1, 3fr);
            gap: 3rem;
            margin-bottom: 5rem;
        }

        .info-card {
            background: white;
            padding: 4rem;
            border-radius: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-color);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        .info-card:hover::before {
            transform: scaleX(1);
        }

        .info-card h3 {
            text-align: center;
            width: 50%;
            margin: 0 25%;
            padding: 2rem 0 ;
            font-size: 2.4rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            font-weight: 600;
            border-bottom: 1px solid rgba(0, 0, 0, 0.144);
        }

        .info-card p {
            font-size: 1.6rem;
            line-height: 1.8;
                color: var(--text-dark);
        }

        .logo-card {
            background: var(--gradient-bg);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-card img {
            max-width: 80%;
            height: auto;
        }



/* about  us bitiş */






/* highligther başlangıç  */

.highlighter-mother{
    width: 100%;
    padding: 5rem 15%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}


.product-card{
    width: 100%;
    border-radius: 1rem;
    padding:3rem 3rem;
    box-shadow:0 4px 8px 0  rgba(0, 0, 0, 0.19);
    transition: all .2s ease-in;

}

.product-card img {
    width: 100%;
    height: auto;
/*  border-top-left-radius: 2rem;
    border-top-right-radius: 2rem; */
    border-radius: 1rem;
    transition: all .3s ease-in;
}



.product-promt{
    justify-content: left;
    margin-top:1rem ; 
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 2rem;

}
.product-promt h2 {
    font-size: 2rem;
}


.product-promt p {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.658);
}

.product-card a>p  {
    margin:1rem 0;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    width:fit-content;
    border-radius: 1rem;
    font-size: 1.4rem;
    
}


.product-card:hover {

      box-shadow:0 8px 16px 0  rgba(0, 0, 0, 0.19);
      transform: scale(1.01);
      transition: all .3s ease-in;


}

  
}

@media (min-width: 320px) and (max-width: 480px) {
  




    /* hero başlangıç  */



/* hero bölümü */

  .hero {
    padding-top:  0;
    position: relative;
    height: fit-content;
    overflow: hidden;
}






.carousel {
    width: 100vw;
    height: fit-content;
}

.carousel-inner {
    width: 100%;
    padding-top: 5rem;
    height: fit-content;
}


.carousel-item img{
    margin-top: 12vw !important;
    width: 100%;
    overflow-y: hidden; 

}





.hero-background {
position: absolute;
left: 0;
bottom: 5rem;
width: fit-content;
height: fit-content;
z-index: 101; 
padding-left: 7rem;
}



.hero-background {
  position: absolute;
  bottom: 3vw;
  left: 0;
  width: 60vw;
  height: fit-content;
  z-index: 101;

}




.hero-content {
    display: flex;
 
    height:fit-content;
    padding-top: .5rem;
    padding-bottom: .5rem;
    width: 100%;
    background-color: #3333332f;
    justify-content: center;
    text-align: center;
    border-radius: 1rem;
 

}

.hero-content h2 {
    
    color: var(--background-color);
    font-size: calc(100vw / 25);
    font-weight: 700;
    text-shadow:0 4px 8px 0  rgba(0, 0, 0, 0.19);
    width: 100%;
}




/* carousel bitiş */







 
/* about  us başlangıç */





 /* About Cards Grid */


        .about-section {
            padding: 10rem 8%;
            max-width: 1600px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-title h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(1, 3fr);
            gap: 3rem;
            margin-bottom: 5rem;
        }

        .info-card {
            background: white;
            padding: 4rem;
            border-radius: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-color);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        .info-card:hover::before {
            transform: scaleX(1);
        }

        .info-card h3 {
            text-align: center;
            width: 70%;
            margin: 0 15%;
            padding: 2rem 0 ;
            font-size: 2.4rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            font-weight: 600;
            border-bottom: 1px solid rgba(0, 0, 0, 0.144);
        }

        .info-card p {
            font-size: 1.6rem;
            line-height: 1.8;
              color: var(--text-dark);
        }

        .logo-card {
            background: var(--gradient-bg);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-card img {
            max-width: 80%;
            height: auto;
        }



/* about  us bitiş */






/* highligther başlangıç  */

.highlighter-mother{
    width: 100%;
    padding: 5rem 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem;
}


.product-card{
    width: 100%;
    border-radius: 1rem;
    padding:3rem 3rem;


        box-shadow:0 4px 8px 0  rgba(0, 0, 0, 0.19);


           transition: all .2s ease-in;

}

.product-card img {
    width: 100%;
    height: auto;
/*     border-top-left-radius: 2rem;
    border-top-right-radius: 2rem; */
    border-radius: 1rem;


        transition: all .3s ease-in;
}



.product-promt{
        display: flex;
    flex-direction: column-reverse;
    justify-content: left;
    margin-left: auto;  
    margin-top:1rem ; 

    margin-bottom: 2rem;

}
.product-promt h2 {
    font-size: 2rem;
}


.product-promt p {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.658);
}

.product-card a>p  {
    margin:1rem auto;
    margin-left: 0;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    width:fit-content;
    border-radius: 1rem;
    font-size: 1.4rem;
    
}


.product-card:hover {

      box-shadow:0 8px 16px 0  rgba(0, 0, 0, 0.19);
      transform: scale(1.01);
      transition: all .3s ease-in;


}



/* highligther bitiş */







}




/* responsive bitiş  */