@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --text-color: #333;
    --background-color: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    scroll-behavior: smooth;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}
html {
    scroll-behavior: smooth;
}

/* .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
} */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo-img {
    max-height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 2rem;
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 150px;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-item {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--background-color);
}


.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

.banner {
    position: relative;
    width: 100%;
    height: 630px;
    background-image:url('img/fragrance-incrediants.jpg');
    background-size: cover;
    background-position: center;
}
.content {
    position: absolute;
    margin-top: 130px;
    left: 0;
    top: 0;
    width: 46%;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(0% 9%, 0% 100%, 374% 56%);
}
.content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}
.content p{
    font-size: 20px;
}
#changing-text {
    font-size: 1.6em;
    color: #4b96e0;
    font-weight: bold;
}
#dot{
    font-size: 1.6em;
    color: #4b96e0;
    font-weight: bold;
}
.btn-container{
    position: absolute;
    top: 79%;
    left: 8%;
    transform: translate(-50%, -50%);
}
 
.button {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    font-size: 19px;
    cursor: pointer;
    background-color: #2d8099ad;
    color: #fff;
    z-index: 1;
  }
  
  .button:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .button:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #39bda7;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .button:hover {
    color: #ffffff;
    border: 1px solid #13caeb;
  }
  
  .button:hover:before {
    top: -35%;
    background-color: #70b8da;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  
  .button:hover:after {
    top: -45%;
    background-color: #0574a8;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  .btn-custom {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-custom:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-custom a:hover {
    text-decoration: none;
    color: white;
}


.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card h5 {
    font-weight: bold;
    color: #007bff;
}

/* Image */
.card-img-top {
    height: 200px;
    object-fit: cover;
}

  
@media screen and (max-width:864px) {
    .content h1 {
        font-size: 2em;
        margin-bottom: 20px;
    }
    .content p{
        font-size: 19px;
    }
    #changing-text {
        font-size: 20px;
        color: #4b96e0;
        font-weight: bold;
    }
    #dot{
        font-size: 1.2em;
        color: #4b96e0;
        font-weight: bold;
    }
}
@media screen and (max-width:837px) {
    .content h1 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .content p{
        font-size: 18px;
    }
    #changing-text {
        font-size: 20px;
        color: #4b96e0;
        font-weight: bold;
    }
    #dot{
        font-size: 1.2em;
        color: #4b96e0;
        font-weight: bold;
    }
}
@media screen and (max-width:763px) {
    .content h1 {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    .content p{
        font-size: 17px;
    }
    #changing-text {
        font-size: 17px;
        color: #4b96e0;
        font-weight: bold;
    }
    #dot{
        font-size: 1.2em;
        color: #4b96e0;
        font-weight: bold;
    }
}
@media screen and (max-width:707px) {
    .content h1 {
        font-size: 1.4em;
        margin-bottom: 20px;
    }
    .content p{
        font-size: 15px;
    }
    #changing-text {
        font-size: 19px;
        color: #4b96e0;
        font-weight: bold;
    }
    #dot{
        font-size: 1.2em;
        color: #4b96e0;
        font-weight: bold;
    }
}
@media screen and (max-width:616px) {
    .content h1 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
    .content p{
        font-size: 16px;
    }
    #changing-text {
        font-size: 15px;
        color: #4b96e0;
        font-weight: bold;
    }
    #dot{
        font-size: 1.2em;
        color: #4b96e0;
        font-weight: bold;
    }
}
@media screen and (max-width:542px) {
    .content h1 {
        font-size: 1/2em;
        margin-bottom: 20px;
    }
    .content p{
        font-size: 15px;
    }
    #changing-text {
        font-size: 15px;
        color: #4b96e0;
        font-weight: bold;
    }
    #dot{
        font-size: 1.2em;
        color: #4b96e0;
        font-weight: bold;
    }
}
@media screen and (max-width:468px) {
    .content h1 {
        font-size: 19px;
        margin-bottom: 20px;
    }
    .content p{
        font-size: 14px;
    }
    #changing-text {
        font-size: 14px;
        color: #4b96e0;
        font-weight: bold;
    }
    #dot{
        font-size: 1.2em;
        color: #4b96e0;
        font-weight: bold;
    }
}
@media screen and (max-width:295px) {
    .content h1 {
        font-size: 17px;
        margin-bottom: 20px;
    }
    .content p{
        font-size: 12px;
    }
    #changing-text {
        font-size: 12px;
        color: #4b96e0;
        font-weight: bold;
    }
    #dot{
        font-size: 1.2em;
        color: #4b96e0;
        font-weight: bold;
    }
}

/* Abiut Button */
@media screen and (max-width:1075px){
    .btn-container{
        position: absolute;
        top: 79%;
        left: 9%;
        transform: translate(-50%, -50%);
    }
    
}
@media screen and (max-width:864px){
    .btn-container{
        position: absolute;
        top: 77%;
        left: 12%;
        transform: translate(-50%, -50%);
    }
}
@media screen and (max-width:763px){
    .btn-container{
        position: absolute;
        top: 75%;
        left: 13%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 10px 20px;
    }
@media screen and (max-width: 707px){
    .btn-container{
        position: absolute;
        top: 75%;
        left: 14%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 8px 20px;
    }
}
@media screen and (max-width:645px){
    .btn-container{
        position: absolute;
        top: 75%;
        left: 15%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 7px 20px;
    }
}
}
@media screen and (max-width:570px){
    .btn-container{
        position: absolute;
        top: 74%;
        left: 17.2%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 6px 20px;
    }
}
@media screen and (max-width:523px){
    .btn-container{
        position: absolute;
        top: 74%;
        left: 19%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 5px 20px;
    }
}
@media screen and (max-width:470px){
    .btn-container{
        position: absolute;
        top: 73%;
        left: 21%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 4px 20px;
    }
}
@media screen and (max-width:428px){
    .btn-container{
        position: absolute;
        top: 75%;
        left: 21%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 4px 14px;
    }
}
@media screen and (max-width:376px){
    .btn-container{
        position: absolute;
        top: 75%;
        left: 23%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 3px 9px;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --text-color: #333;
    --background-color: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo-img {
    max-height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 2rem;
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 150px;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-item {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--background-color);
}


.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

.banner {
    position: relative;
    width: 100%;
    height: 630px;
    background-image:url('img/fragrance-incrediants.jpg');
    background-size: cover;
    background-position: center;
}
.content {
    position: absolute;
    margin-top: 130px;
    left: 0;
    top: 0;
    width: 46%;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(0% 9%, 0% 100%, 374% 56%);
}
.content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.content p{
    font-size: 20px;
}
#changing-text {
    font-size: 1.6em;
    color: #4b96e0;
    font-weight: bold;
}
#dot{
    font-size: 1.6em;
    color: #4b96e0;
    font-weight: bold;
}
.btn-container{
    position: absolute;
    top: 79%;
    left: 8%;
    transform: translate(-50%, -50%);
}
 
.button {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    font-size: 19px;
    cursor: pointer;
    background-color: #2d8099ad;
    color: #fff;
    z-index: 1;
  }
  
  .button:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .button:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #39bda7;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .button:hover {
    color: #ffffff;
    border: 1px solid #13caeb;
  }
  
  .button:hover:before {
    top: -35%;
    background-color: #70b8da;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  
  .button:hover:after {
    top: -45%;
    background-color: #0574a8;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  .btn-custom {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-custom:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-custom a:hover {
    text-decoration: none;
    color: white;
}


.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card h5 {
    font-weight: bold;
    color: #007bff;
}

/* Image */
.card-img-top {
    height: 200px;
    object-fit: cover;
}

  
@media screen and (max-width:864px) {
    .content h1 {
        font-size: 2em;
        margin-bottom: 20px;
    }
    .content p{
        font-size: 19px;
    }
    #changing-text {
        font-size: 20px;
        color: #4b96e0;
        font-weight: bold;
    }
    #dot{
        font-size: 1.2em;
        color: #4b96e0;
        font-weight: bold;
    }
}
@media screen and (max-width:837px) {
    .content h1 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .content p{
        font-size: 18px;
    }
    #changing-text {
        font-size: 20px;
        color: #4b96e0;
        font-weight: bold;
    }
    #dot{
        font-size: 1.2em;
        color: #4b96e0;
        font-weight: bold;
    }
}
@media screen and (max-width:763px) {
    .content h1 {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    .content p{
        font-size: 17px;
    }
    #changing-text {
        font-size: 17px;
        color: #4b96e0;
        font-weight: bold;
    }
    #dot{
        font-size: 1.2em;
        color: #4b96e0;
        font-weight: bold;
    }
}
@media screen and (max-width:707px) {
    .content h1 {
        font-size: 1.4em;
        margin-bottom: 20px;
    }
    .content p{
        font-size: 15px;
    }
    #changing-text {
        font-size: 19px;
        color: #4b96e0;
        font-weight: bold;
    }
    #dot{
        font-size: 1.2em;
        color: #4b96e0;
        font-weight: bold;
    }
}
@media screen and (max-width:616px) {
    .content h1 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
    .content p{
        font-size: 16px;
    }
    #changing-text {
        font-size: 15px;
        color: #4b96e0;
        font-weight: bold;
    }
    #dot{
        font-size: 1.2em;
        color: #4b96e0;
        font-weight: bold;
    }
}
@media screen and (max-width:542px) {
    .content h1 {
        font-size: 1/2em;
        margin-bottom: 20px;
    }
    .content p{
        font-size: 15px;
    }
    #changing-text {
        font-size: 15px;
        color: #4b96e0;
        font-weight: bold;
    }
    #dot{
        font-size: 1.2em;
        color: #4b96e0;
        font-weight: bold;
    }
}
@media screen and (max-width:468px) {
    .content h1 {
        font-size: 19px;
        margin-bottom: 20px;
    }
    .content p{
        font-size: 14px;
    }
    #changing-text {
        font-size: 14px;
        color: #4b96e0;
        font-weight: bold;
    }
    #dot{
        font-size: 1.2em;
        color: #4b96e0;
        font-weight: bold;
    }
}
@media screen and (max-width:295px) {
    .content h1 {
        font-size: 17px;
        margin-bottom: 20px;
    }
    .content p{
        font-size: 12px;
    }
    #changing-text {
        font-size: 12px;
        color: #4b96e0;
        font-weight: bold;
    }
    #dot{
        font-size: 1.2em;
        color: #4b96e0;
        font-weight: bold;
    }
}

/* Abiut Button */
@media screen and (max-width:1075px){
    .btn-container{
        position: absolute;
        top: 79%;
        left: 9%;
        transform: translate(-50%, -50%);
    }
    
}
@media screen and (max-width:864px){
    .btn-container{
        position: absolute;
        top: 77%;
        left: 12%;
        transform: translate(-50%, -50%);
    }
}
@media screen and (max-width:763px){
    .btn-container{
        position: absolute;
        top: 75%;
        left: 13%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 10px 20px;
    }
@media screen and (max-width: 707px){
    .btn-container{
        position: absolute;
        top: 75%;
        left: 14%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 8px 20px;
    }
}
@media screen and (max-width:645px){
    .btn-container{
        position: absolute;
        top: 75%;
        left: 15%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 7px 20px;
    }
}
}
@media screen and (max-width:570px){
    .btn-container{
        position: absolute;
        top: 74%;
        left: 17.2%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 6px 20px;
    }
}
@media screen and (max-width:523px){
    .btn-container{
        position: absolute;
        top: 74%;
        left: 19%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 5px 20px;
    }
}
@media screen and (max-width:470px){
    .btn-container{
        position: absolute;
        top: 73%;
        left: 21%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 4px 20px;
    }
}
@media screen and (max-width:428px){
    .btn-container{
        position: absolute;
        top: 75%;
        left: 21%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 4px 14px;
    }
}
@media screen and (max-width:376px){
    .btn-container{
        position: absolute;
        top: 75%;
        left: 23%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 3px 9px;
    }
}
@media screen and (max-width:305px){
    .btn-container{
        position: absolute;
        top: 75%;
        left: 23%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 2px 4px;
    }
}
@media screen and (max-width:295px) {
    .btn-container{
        position: absolute;
        top: 75%;
        left: 23%;
        transform: translate(-50%, -50%);
    }
    .button{
        padding: 0px 1px;
    }
}



@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        height: calc(100vh - 60px);
        top: 60px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 40%;
        transition: right 0.5s ease-in;
    }

    .nav-links li {
        margin: 1rem 0;
        opacity: 0;
        transition: opacity 0.5s ease-in;
    }
   

    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        padding: 0;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 0.5rem 1rem;
    }

    .burger {
        display: block;
    }

    .nav-active {
        right: 0;
    }

    .nav-active li {
        opacity: 1;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-form-container,
.contact-details-container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #4ea9d3;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #4ea9d3;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.contact-details {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item img.icon {
    width: 20px;
    height: 30px;
    margin-right: 15px;
}

.map-container {
    width: 100%;
    height: 450px;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}
.input-search {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}


@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* From Uiverse.io by Carlos-vargs */ 
.send-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    border-radius: 36px;
    font-weight: 700;
    height: 54px;
    font-size: 16px;
    padding-inline: 20px;
    background-color: transparent;
    color: #fff;
    text-transform: uppercase;
    overflow: hidden;
    text-align: center;
    transition: all .25s ease-in-out;
    z-index: 1;
    border: none;
  }
  
  .send-button:is(:hover, :focus)::before {
    transform: translateX(0%);
  }
  
  .text {
    white-space: nowrap;
    line-height: 1.2;
    padding-inline-end: 44px;
    z-index: 2;
  }
  
  
  .send-button::after {
    content: '';
    position: absolute;
    height: calc(100% - 2px);
    width: calc(100% - 2px);
    border: 1px solid transparent;
    border-radius: 36px;
    z-index: 2;
  }
  
  .send-button::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 200%;
    background-color: #4ea9d3;
    z-index: 1;
    left: -2px;
    transform: translateX(90%);
    transition: all .3s ease-out;
  }
  
  .send-icon {
    display: inherit;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 54px;
    height: 54px;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: #2971a1;
    z-index: 2;
  }
  
 /* General search bar container */
.search-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 38px auto;
}

/* Search input field */
.search-input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #ccc;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Input focus animation */
.search-input:focus {
    width: 100%;
    border-color: #2196F3;
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.5);
}

/* Search button */
.search-btn {
    position: absolute;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: #2196F3;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.search-btn i {
    color: white;
    font-size: 18px;
}

/* Button hover animation */
.search-btn:hover {
    background-color: #1976D2;
}

/* Hover effect on the input field */
.search-input:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

mark {
    background-color: rgb(189, 203, 214);
    padding: 0;
}

.product-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}



.main-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(208px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;

}

.main-product {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-margin-top: 100px;
}

.main-product:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.main-product h2 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.main-product p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.toggle-btn {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.toggle-btn:hover {
    background-color: #2980b9;
}

.sub-products {
    display: none;
    background-color: #fff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
    scroll-margin: 100px;
}

.sub-products-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 2rem;
    font-weight: bold;
}

.sub-product-group {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sub-product-group.active {
    display: block;
    opacity: 1;
}

.sub-product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.sub-product {
    background-color: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sub-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sub-product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sub-product:hover .sub-product-image img {
    transform: scale(1.1);
}

.sub-product-info {
    padding: 1.5rem;
}

.sub-product h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.sub-product p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.learn-more {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #2980b9;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .main-products {
        grid-template-columns: 1fr;
    }

    .sub-products {
        padding: 2rem 1rem;
    }

    .sub-products-title {
        font-size: 1.5rem;
    }

    .sub-product-list {
        grid-template-columns: 1fr;
    }
}


.highlight {
    background-color: yellow; /* Highlight color */
    font-weight: bold;
}






.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: bounce 2s infinite;
    z-index: 1000; /* Add this line */
}


.back-to-top:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}