@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Outfit", sans-serif;
    line-height: 1.8;
}

.bulletpoint{
    text-align: left;
}
.background-container {
    background: url(https://tiimg.tistatic.com/new_website1/sem/Wavy-Hair-Extensions/bg.png) no-repeat top center / cover;
    clip-path: polygon(50% 92%, 100% 100%, 100% 0, 0 0, 0 100%);
    position: relative; 
    box-shadow: 0 4px 10px rgba(89, 89, 89, 0.3);
}

.top-gap {height: 30px;}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {margin:15px 0 0 0; }

.header {
    background-color: #ffffff;
    border-bottom: 2px solid #f0f0f0;
    padding: 18px 0;
    max-width: 1140px;
    margin: 0 auto;
    border-radius: 12px;
    transition: all 0.3s ease, background-color 0.5s ease;
}




.logo {max-width: 10%;}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa; /* Change background color when sticky */
    padding: 10px 0; /* Reduce padding to make the header smaller */
    transform: translateY(0);
}

.sticky .company-info h1 {
    font-size: 20px; /* Resize the heading when sticky */
    transition: font-size 0.3s ease;
}

.sticky .logo img {
    transform: scale(0.8); /* Shrink the logo */
    transition: transform 0.3s ease;
}
.company-info  {width: 64%;}

.company-info h1 {
    font-size: 24px;
    line-height: 30px;
}

.company-info p {
    font-size: 14px;
    color: #2B8DB7;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact p {
    font-size: 14px;
}

.contact img {
   display: block; 
   padding: 0 20px 0 0;
}

.hero {
    
    background-size: cover;
    padding: 30px 0 160px 0;
    color: #fff; 
    text-transform: uppercase;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    max-width: 45%; 
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-text li {
text-align: left;
}
.hero-text h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px; 
    font-weight: 300;
}

.hero-text .highlight {
    color: #fff;
    font-weight: bold; 
    font-size: 55px; 
    text-shadow: 0px 5.886px 16.818px rgba(0, 0, 0, 0.59);
}

.hero-text span {
   display:block; 
}

/* Form Section */
.form-container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0px;
    width: 440px;
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease; 
}

.form-container h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 0px;
    text-align: center; 
    background: #E11B22; 
    border-radius: 10px 10px 0px 0px; 
    height: 66px; 
    align-items: center; 
    display: flex; 
    justify-content: center;
}

form {
    display: flex;
    flex-direction: column; 
    padding: 20px 30px; 
    color: #9F9F9F;
}

input[type="text"],
input[type="tel"],
textarea {
    border: 1px solid #BABABA;
    border-radius: 5px;
    padding: 14px;
    margin-bottom: 15px;
    font-size: 14px;
    width: 100%;     font-family: "Outfit", sans-serif;
}

textarea {
    resize: none;
    height: 90px;
}

.mobile-input {
    display: flex;
}

.mobile-input span {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #BABABA;
    font-size: 14px;  
    height: 50px; 
    margin: 0 10px 0 0;
}

.mobile-input input[type="tel"] {
    border-radius: 5px;
    flex: 1;
}

.captcha {
    display: flex;
}

.captcha input[type="text"] {
    border-radius: 5px;
    flex: 1;
}

.captcha img {
    border-radius:5px ;
    border-left: none;
    margin-left: 10px;
    width: 80px; height: 46px;
}

.audio-link {
    color: #282828;
    font-size: 12px;
    margin-bottom: 20px;
    display: block;
}
.audio-link a{
    color: #007bff;
text-decoration: none;
}


button {
    background-color: #d43f3f;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 14px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #c53737;
}

/* Product  */
.products {
    padding: 40px 0 60px 0;
    background-color: #fff;
}

.products h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: bold;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-item {
    text-align: center;
}

.product-item img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scale(1); 
    opacity: 1; 
}

.product-item:hover img {
    transform: scale(1.1); 
    opacity: 0.9; 
}

.product-item p {
    font-size: 16px;
    color: #333;
}

.product-item p a{
   
    color: #333; text-decoration: none;
}

.product-item p a:hover{
   
    color: #E11B22; text-decoration: none;
}



.welcome-section {
    background-color: #ffffff;
    padding: 40px 0;
    color: #333;
}

.welcome-content {
    text-align: center;
    max-width: 1180px;
    margin: 0 auto;
}

.welcome-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.welcome-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.connect-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0; 
    background: #F8F3FD;
}

.connect-section .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;    
    display: flex;
    align-items: center; 
    justify-content: space-between;
}

.image-side img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.content-side {
    max-width: 50%;
    display: flex; 
    align-items: center;
}

.content-side h2 {
    margin-bottom: 0px;
    font-size: 16px;
    color: #333; 
    font-weight: 300;
}

.social-icons a {
    margin: 0 2px;
    display: inline-block;
}

.social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #2C3E50;
    color: #fff;
    font-size: 16px;
}

.footer-section .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;    
    display: flex;
    align-items: center; 
    justify-content: space-between;
}

.footer-left a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
}

.footer-left a:hover {
    text-decoration: underline;
}

.footer-right {
    display: flex;
}

.footer-right span {
    margin-right: 10px;
}

.footer-right a {
    margin-left: 10px;
}

.footer-right img {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease;
}

.footer-right img:hover {
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 768px) {

   
.background-container {
  
    clip-path: polygon(100% 100%, 100% 100%, 100% 0, 0 0, 0 100%);
    
} 
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .company-info {
        width: 100%;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        text-align: center; 
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .hero-text .highlight {
        font-size: 40px; 
    }

    .form-container {
        width: 100%; /* Full width on mobile */
    }

    .form-container h2 {
        font-size: 18px; 
    }

    .products h2 {
        font-size: 20px; 
    }

    .product-grid {
        grid-template-columns: 1fr; /* One column on mobile */
    }

    .welcome-content h2 {
        font-size: 20px; 
    }

    .welcome-content p {
        font-size: 14px; 
    }

    .connect-section {
        flex-direction: column;
        align-items: center;
    }

    .content-side {
        max-width: 100%; 
        text-align: center; 
    }

    .social-icons img {
        width: 30px; 
        height: 30px; 
    }

    .footer-section .container { display: block; }

    .footer-section {
        flex-direction: column;
        align-items: center;
        text-align: center; 
    }

    .footer-right {
        justify-content: center; 
        margin-top: 10px; 
    }

}