@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
    /* Reset and Base Styles */
        :root {
            --primary-color: #17a7ba;
            --secondary-color: #2cd1f7;
            --dark-bg: #141313;
            --light-bg: #f7f2f2;
            --text-dark: #333;
            --text-light: #fff;
        }
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins";


    color: #fff;
}
body{
    background: linear-gradient(35deg,#000000,70%,#17a7ba);
    height: 100vh;

}
.grad-bar {
    width: 100%;
    height: 8px;
    position: fixed;
    background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
    background-size: 400% 400%;
        -webkit-animation: gradbar 15s ease infinite;
      -moz-animation: gradbar 15s ease infinite;
      animation: gradbar 15s ease infinite;
      z-index: 100;
  }
  /* KEYFRAME ANIMATIONS */
  
  @-webkit-keyframes gradbar {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes gradbar {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes gradbar {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}


.header .logo{
    font-size: 10px;
    font-weight: 100;
}
.header .logo-img {
    width: 150px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    position: relative; /* Adjust position */
    top: 10px; /* Adjust top position */
    left: 5px; /* Adjust left position */
}

.navbar {
    display: flex;
    /* background-color:; */
    gap: 2rem;
}

.header .navbar a {
    color: #fff;
    font-size: x-large;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.header .navbar a::before {
    content: "";
  
    left: 0;
    bottom: -5px;
    background: #38a9a2;
    height: 2px;
    width: 100%;
    border-radius: 5px;
    transition: width 0.3s ease;
    transform: scaleX(0);
}

.navbar a:hover::before {
    transform: scaleX(1);
}

.navbar a:hover {
    color: #38a9a2;
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}


.social-container1 {
    position: fixed;
   
    top: 75%;
    right: 5%;
    bottom: 25%;
    padding: 15px 0;
    z-index: 99;
    
}


.home{
    display: flex;
    height: 100vh;
   
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.home img{
    height: 100%;
    width: 100%;
    /* background-color: #000000; */
    opacity: 0.5;
    position: absolute;
    z-index: -1;
 
}
.home .text-content h2{
    font-size: 50px; 
    padding: 1rem 9% 2rem;
}
.home .text-content p{
    font-size: 20px; 
    max-width: 700px;
    position: relative;
    padding: 1rem 9% 2rem;
}


.about h2{
    font-size: 50px; 
    color: #ffffff; 
    
    /* background-color: #5814f5; */
}
.about-content1{
    border-bottom: 1px solid #2d2d2d;
    padding: 2rem;
    margin-bottom: 0%;
    border-radius: 0%;
    border-width: 25%;
}
.about p{
    font-size: 25px; 
    max-width: 700px;
    color: #000; 
    padding: 5%;
}

.about .text-content p{
    font-size: 13px; 
    max-width: 700px;
}
/* .about img{
    height: 600px;
    position: relative;
    z-index: 1;
} */

.products-gallery {
    padding: 4rem 5%;
    background: #0f0a0a;
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    color: #17a7ba;
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(transparent, #0f0a0a);
}

.product-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: #17a7ba;
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-title {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.product-description {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Updated About Section */
.about {
    padding: 5rem 5%;
    background-color: #000000;
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-content {
    color: #ffffff;
}

.about-image {
    position: relative;
    display: flex;
    border-radius: 100px;
   flex-direction: row;
   align-items: center;
   justify-content: center;
  
   font-size: 23%;
   font-weight: 900 ;
    /* overflow: hidden; */
}

.about-image img {
    width: 41%;
    bottom: 10%;
    top: 20%;
    height: auto;
}
.about-image p {
  
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    margin-top: 1rem;
  
  
}
/* Updated Services Section */
.services-section {
    padding: 5rem 5%;
    background: #141313;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: #17a7ba;
    margin-bottom: 1rem;
}


.social-container {
    display: flex;
    justify-content: right;
    gap: 25px;
    padding: 15px 0;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon i {
    color: #38a9a2;
    font-size: 30px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #38a9a2;
    transform: translateY(-10px);
}

.social-icon:hover i {
    color: #000;
}

/* Specific brand hovers */
.youtube:hover { background: #fff; }
.instagram:hover { background: #fff; }
.facebook:hover { background: #fff; }
.whatsapp:hover { background: #fff; }
/* What sApp Modal Styles */
.whatsapp-modal {
    /* display: none; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #2d2d2d;
    margin: 15% auto;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    position: relative;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.modal-content h3 {
    color: #38a9a2;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.modal-button {
    background-color: #38a9a2;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-button.alt {
    background-color: #3d3d3d;
    border: 1px solid #38a9a2;
}

.modal-button:hover {
    background-color: #3d3d3d;
}

.close-modal {
    color: #38a9a2;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
}

.close-modal:hover {
    color: #ffffff;
}

