*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins',sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background: #000000;
    color: #fff;
}
#header{
    width:100%;
    height:100vh;
    /* background-image: url("images/manu2.png.jpg"); */
    background-size: cover;
    background-position: center;
}
.container{
    padding:10px 10%;

}
nav{
    display:flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
   
}
.logo{
    width:140px;

}
nav ul li{
    display: inline-block;
    list-style: none;
    margin:10px 20px;
}
nav ul li a{
    color:#fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}
nav ul li a::after{
    content:'';
    width:0;
    height:3px;
    background: #ff004f;
    position : absolute;
    left:0;
    bottom:-6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width:100%;
}
.header-text{
    margin-top:20%;
    font-size:30px;
}
.header-text h1{
    font-size: 60px;
    margin-top:20px;
}
 span{
    color: #ff004f;
}
/* ---------------------about----------------------- */
#about{
    padding:50px 0;
    color: #ababab;
}
.row{
    display:flex;
    justify-content:space-between;
    flex-wrap: wrap;
}
.about-col-1{
    flex-basis:35%;

}
.about-col-1 img{
    width:100%;
    border-radius:15px;
}

/* ---------------carousel----------------------- */
.carousel-container {
    position: relative;
    width: 95%;
    max-width: 1200px;
    height: 450px;
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 0, 79, 0.3);
    margin: 30px auto;
    border: 2px solid rgba(255, 0, 79, 0.2);
}

.carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    padding: 20px;
}

.carousel img {
    width: 280px;
    height: 410px;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 15px;
    border: 3px solid rgba(255, 0, 79, 0.3);
    transition: all 0.3s ease;
}

.carousel img:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: #ff004f;
    box-shadow: 0 8px 25px rgba(255, 0, 79, 0.4);
}

.carousel img:last-child {
    margin-right: 0;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5em;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 0, 79, 0.8), rgba(255, 0, 79, 0.6));
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.arrow:hover {
    background: linear-gradient(135deg, #ff004f, rgba(255, 0, 79, 0.8));
    transform: translateY(-50%) scale(1.1);
}

.arrow.right {
    right: 20px;
}

.arrow.left {
    left: 20px;
}

.arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Hero Banner Styles */
.hero-banner {
    background: linear-gradient(135deg, rgba(255, 0, 79, 0.05), rgba(255, 107, 157, 0.05));
    padding: 60px 30px;
    text-align: center;
    margin-top: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 79, 0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-content-main {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title-main {
    font-size: 3.5em;
    font-weight: bold;
    background: linear-gradient(135deg, #ff004f, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: slideInDown 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 40px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.6s both;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 0, 79, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 0, 79, 0.2);
}

.highlight-icon {
    font-size: 1.5em;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.8s both;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ff004f, #ff6b9d);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 79, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 79, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: #ff004f;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    border: 2px solid #ff004f;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: #ff004f;
    color: white;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.about-col-2 {
    flex-basis: 60%;

}
.sub-title{
    font-size: 60px;
    font-weight: 600;
    color:#fff;
}
.tab-titles{
    display:flex;
    margin:20px 0 40px;
}
.tab-links{
    margin-right:50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;

}
.tab-links::after{
    content:'';
    width:0;
    height:3px;
    background:#ff004f ;
    position: absolute;
    left:0;
    bottom:-8px;
    transition: 0.5s;
}
.tab-links.active-link::after{
    width :50%;

}
.tab-contents ul li{
    list-style: none;
    margin:10px 0;
    
}
.tab-contents ul li span{
    color:#b54769;
    font-size: 14px;
}
.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display:block;
  
}
/* ----------------------------hero section------------------------ */
#hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-description {
    font-size: 20px;
    color: #ababab;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, #ff004f, #ff6b9d);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.btn-hero {
    background: linear-gradient(135deg, #ff004f, #ff6b9d);
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 79, 0.4);
}

/* ----------------------------services------------------------ */
#services{
    padding: 80px 0;
    background: #000;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #ababab;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 79, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 79, 0.3);
    box-shadow: 0 20px 40px rgba(255, 0, 79, 0.2);
}

.service-card h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.service-card p {
    font-size: 16px;
    color: #ababab;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: "✓";
    color: #ff004f;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ----------------------------products------------------------ */
#products {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.products-intro {
    text-align: center;
    font-size: 18px;
    color: #ababab;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
    margin-top: 50px;
}

.product-item {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 0, 79, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 79, 0.1), transparent);
    transition: left 0.5s ease;
}

.product-item:hover::before {
    left: 100%;
}

.product-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 0, 79, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 79, 0.2);
}

.product-icon {
    font-size: 48px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.product-item:hover .product-icon {
    transform: scale(1.2) rotate(5deg);
}

.product-item h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-item:hover h3 {
    color: #ff6b9d;
}

.product-item p {
    color: #ababab;
    line-height: 1.6;
    font-size: 14px;
}

/* ----------------------------process------------------------ */
#process {
    padding: 80px 0;
    background: #000;
}

.process-intro {
    text-align: center;
    font-size: 18px;
    color: #ababab;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    background: linear-gradient(135deg, #ff004f, #ff6b9d);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.step p {
    color: #ababab;
    line-height: 1.6;
    font-size: 16px;
}
/* 
 ---------------portifolio----------------------- */

 #portfolio{
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
 }

 .portfolio-description {
    text-align: center;
    font-size: 18px;
    color: #ababab;
    margin: 20px auto 60px;
    max-width: 600px;
    line-height: 1.6;
 }

.work-list{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap:50px;
    margin-top:50px;
}

.work{
    border-radius:20px;
    position:relative;
    overflow:hidden;
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 0, 79, 0.1);
}

.work:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 0, 79, 0.3);
}

.work img{
    width:100%;
    height: 220px;
    object-fit: cover;
    border-radius:20px 20px 0 0;
    display:block;
    transition: all 0.6s ease;
}

.layer{
    width:100%;
    height:0%;
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(255, 0, 79, 0.9) 100%);
    border-radius:0 0 20px 20px;
    position:absolute;
    left:0;
    bottom:0;
    overflow:hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
    text-align: center;
    font-size: 16px;
    transition: all 0.5s ease;
}

.layer h3{
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
}

.layer p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.social-handle {
    font-size: 12px;
    color: #ff004f;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 10px;
}

.layer a{
    margin-top:15px;
    color:#fff;
    text-decoration: none;
    font-size: 24px;
    line-height: 70px;
    background: linear-gradient(135deg, #ff004f, #ff6b9d);
    width:70px;
    height:70px;
    border-radius: 50%;
    text-align: center;
    transition: all 0.3s ease;
}

.layer a:hover {
    transform: scale(1.1);
}

.work:hover img{
    transform: scale(1.05);
}

.work:hover .layer{
    height:100%;
}

/* Social Showcase Styles */
.social-showcase {
    margin-top: 50px;
}

.social-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.stat-item {
    background: linear-gradient(135deg, rgba(255, 0, 79, 0.1), rgba(255, 107, 157, 0.1));
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 79, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #ff004f;
}

.stat-item h3 {
    color: #ff004f;
    font-size: 2.5em;
    margin: 0;
    font-weight: bold;
}

.stat-item p {
    margin: 10px 0 0 0;
    color: #666;
    font-size: 1.1em;
}

.featured-social {
    max-width: 400px;
    margin: 0 auto;
}

.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(255, 0, 79, 0.05), rgba(255, 107, 157, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 79, 0.1);
}

.cta-section h2 {
    color: #333;
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-section p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.social-cta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ff004f, #ff6b9d);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #ff6b9d, #ff004f);
}

.btn-secondary {
    background: transparent;
    color: #ff004f;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #ff004f;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #ff004f;
    color: #fff;
    transform: translateY(-3px);
}

.btn{
    display:block;
    margin:50px auto;
    width:fit-content;
    border:1px solid #ff004f;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color:#fff;
    transition: background  0.5s ease;

}
.btn:hover{
    background: #ff004f;
}
/* --------------------Contact----------------------- */
.contact-left{
    flex-basis:35%;
}
.contact-right{
    flex-basis:60%;
}
.contact-left p{
    margin-top: 30px;
}

.contact-info-large {
    font-size: 24px !important;
    font-weight: 600;
    color: #ff6b9d !important;
    margin-top: 25px !important;
    margin-bottom: 20px !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-info-large:hover {
    color: #ff004f !important;
    transform: translateX(5px);
}

.contact-left p i{
    color:#ff004f;
    margin-right: 15px;
    font-size: 25px;
}
.social-icons{
    margin-top: 30px;

}
.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #ababab;
    display:inline-block;
    transition:  transform 0.5s;

}
.social-icons a:hover{
    color:#ff004f;
    transform: translateY(-5px);
}
.btn.btn2{
    display:inline-block;
    background:#ff004f ;

}
.contact-right{
    width:100%;

}
form input, form textarea{
    width:100%;
    border:0;
    outline:none;
    background: #262626;
    padding: 15px;
    margin:15px 0;
    color:#fff;
    font-size: 18px;
    border-radius: 6px;
}
form .btn2{
    padding:14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}
.copyright{
    width:100%;
    text-align: center;
    padding:25px 0;
    background: #262626;
    font-weight: 300;
    margin-top: 20px;
}
.copyright i{
    color: #ff004f;
}

/* -------------------------Css for small screens-------------------- */
nav .fas{
    display:none;

}
@media only screen and (max-width: 600px){
    #header{
        background-image: url(Images/manu1.png.jpg);
    }
    .header-text{
        margin-top: 100%;
        font-size: 16px;
    }
    .header-text h1{
        font-size: 30px;
    }
    nav.fas{
        display:block;
        font-size: 25px;
    }
    nav ul{
        background: #ff004f;
        position : fixed;
        top:0;
        right:-200px;
        width:200px;
        height:100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }
    nav ul li{
        display:block;
        margin:25px;
    
    }
    nav ul .fas{
        position: absolute;
        top:25px;
        left:25px;
        cursor: pointer;
    }
    .sub-title{
        font-size: 40px;

    }
    .about-col-1, .about-col-2{
        flex-basis: 100%;

    }
    .about-col-1{
        margin-bottom: 30px;
    }
    .about-col-2{
        font-size: 14px;
    }
    .tab-links{
        font-size: 16px;
        margin-right: 20px;
    }
    .contact-left, .contact-right{
        flex-basis: 100%;
    }
    .copyright{
        font-size:14px ;
    }

}

/* Floating Action Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: bounce 2s infinite;
}

.fab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff004f, #ff6b9d);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(255, 0, 79, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.fab-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 0, 79, 0.6);
}

.fab-icon {
    font-size: 1.2em;
}

.fab-text {
    font-size: 0.9em;
    white-space: nowrap;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile responsiveness for FAB */
@media (max-width: 600px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-text {
        display: none;
    }
    
    .fab-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .fab-icon {
        font-size: 1.5em;
    }
}