*{
    margin: 0;
    padding: 0;
}

.main{
    width: 100%;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.5)50%,rgba(10, 10, 10, 0.5)50%), url(3.gif);
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.navbar{
    width: 1200px;
    height: 75px;
    margin: auto;
}

.icon{
    width: 200px;
    float: left;
    height: 70px;
}

.logo{
    color: #e6e333;
    font-size: 35px;
    font-family: Arial;
    padding-left: 20px;
    float: left;
    padding-top: 10px;
    margin-top: 5px
}

.menu{
    width: 400px;
    float: left;
    height: 70px;
}

ul{
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul li{
    list-style: none;
    margin-left: 62px;
    margin-top: 27px;
    font-size: 14px;
}

ul li a{
    text-decoration: none;
    color: #c2e4e2;
    font-family: Arial;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}

ul li a:hover{
    color: #c5e2dd;
}

.search{
    width: 330px;
    float: left;
    margin-left: 270px;
}

.srch{
    font-family: 'Times New Roman';
    width: 200px;
    height: 40px;
    background: transparent;
    border: 1px solid #7a2530;
    margin-top: 13px;
    color: #fff;
    border-right: none;
    font-size: 16px;
    float: left;
    padding: 10px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.btn{
    width: 100px;
    height: 40px;
    background: #eaee19;
    border: 2px solid #faec26;
    margin-top: 13px;
    color: #fff;
    font-size: 15px;
    border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: 0.2s ease;
    cursor: pointer;
}
.btn:hover{
    color: #000;
}

.btn:focus{
    outline: none;
}

.srch:focus{
    outline: none;
}

.content{
    width: 1200px;
    height: auto;
    margin: auto;
    color: #fff;
    position: relative;
}

.content .par{
    padding-left: 20px;
    padding-bottom: 25px;
    font-family: Arial;
    letter-spacing: 1.2px;
    line-height: 30px;
}

.content h1{
    font-family: 'Times New Roman';
    font-size: 50px;
    padding-left: 20px;
    margin-top: 9%;
    letter-spacing: 2px;
}

.content .cn{
    width: 160px;
    height: 40px;
    background: #ecce22;
    border: none;
    margin-bottom: 10px;
    margin-left: 20px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: .4s ease;
    
}

.content .cn a{
    text-decoration: none;
    color: #ffffff;
    transition: .3s ease;
}

.cn:hover{
    background-color: #fff;
}

.content span{
    color: #ecce22;
    font-size: 65px
}

.form{
    width: 250px;
    height: 380px;
    background: linear-gradient(to top, rgba(0,0,0,0.8)50%,rgba(0,0,0,0.8)50%);
    position: absolute;
    top: -20px;
    left: 870px;
    transform: translate(0%,-5%);
    border-radius: 10px;
    padding: 25px;
}

.form h2{
    width: 220px;
    font-family: sans-serif;
    text-align: center;
    color: #ecce22;
    font-size: 22px;
    background-color: #fff;
    border-radius: 10px;
    margin: 2px;
    padding: 8px;
}

.form input{
    width: 240px;
    height: 35px;
    background: transparent;
    border-bottom: 1px solid #ecce22;
    border-top: none;
    border-right: none;
    border-left: none;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    margin-top: 30px;
    font-family: sans-serif;
}

.form input:focus{
    outline: none;
}

::placeholder{
    color: #fff;
    font-family: Arial;
}

.btnn{
    width: 240px;
    height: 40px;
    background: #ecce22;
    border: none;
    margin-top: 30px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    transition: 0.4s ease;
}
.btnn:hover{
    background: #fff;
    color: #ecce22;
}
.btnn a{
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}
.form .link{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    padding-top: 20px;
    text-align: center;
}
.form .link a{
    text-decoration: none;
    color: #ecce22;
}
.liw{
    padding-top: 15px;
    padding-bottom: 10px;
    text-align: center;
}
.icons a{
    text-decoration: none;
    color: #ced11b;
}
.icons ion-icon{
    color: #fff;
    font-size: 30px;
    padding-left: 14px;
    padding-top: 5px;
    transition: 0.3s ease;
}
.icons ion-icon:hover{
    color: #bbc71b;
}
.about-page {
    display: flex;
    flex-direction: column;
    justify-content: center;  /* center vertically */
    align-items: center;      /* center horizontally */
    background: linear-gradient(to top, rgba(15, 15, 15, 0.5)50%,rgba(10, 10, 10, 0.5)50%), url(3.gif);
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    padding: 50px 0;
}
/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    animation-delay: 0.5s;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}




/* ABOUT PAGE LAYOUT */
.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.5)50%, rgba(10, 10, 10, 0.5)50%), url(3.gif);
    background-position: center;
    background-size: cover;
    padding: 50px;
    gap: 50px;
    animation: fadeIn 2s ease-in;
}

.about-img-box {
    width: 400px;
    height: 300px;
    background-image: url('1.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    animation: slideLeft 1.5s ease;
}

.about-content {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    color: #bbc71b;
    text-align: center;
    animation: slideRight 1.5s ease;
}

.about-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content .about-text {
    font-size: 18px;
    line-height: 1.8;
}

/* ANIMATIONS */
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
/* RESET *//*About page*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* MAIN BACKGROUND */
.main {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.7) 50%, rgba(10, 10, 10, 0.7) 50%), url('3.gif') no-repeat center center/cover;
    padding-bottom: 50px;
}

/* NAVBAR */
.navbar {
    width: 90%;
    margin: auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon .logo {
    font-size: 32px;
    color: #e6e333;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.menu ul li a {
    text-decoration: none;
    color: #c2e4e2;
    font-weight: bold;
    transition: color 0.3s ease;
}

.menu ul li a:hover {
    color: #ecce22;
}

.search {
    display: flex;
    align-items: center;
}

.srch {
    width: 200px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid #7a2530;
    color: #fff;
    font-size: 16px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.btn {
    background: #eaee19;
    border: 2px solid #faec26;
    padding: 9px 20px;
    color: #000;
    font-weight: bold;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background: #fff;
    color: #ecce22;
}

/* ABOUT CONTAINER */
.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    gap: 50px;
    animation: fadeIn 2s ease;
}

/* ABOUT IMAGE BOX */
.about-img-box {
    width: 400px;
    height: 300px;
    background: url('1.jpg') no-repeat center center/cover;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    animation: slideLeft 1.5s ease;
}

/* ABOUT CONTENT */
.about-content {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    max-width: 600px;
    border-radius: 15px;
    text-align: center;
    color: #bbc71b;
    animation: slideRight 1.5s ease;
}

.about-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content .about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #c5e2dd;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        padding: 30px 10px;
    }

    .about-img-box {
        width: 90%;
        height: 250px;
    }

    .about-content {
        width: 90%;
    }

    .about-content h1 {
        font-size: 36px;
    }
}
/*Service Page*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #1f1c2c, #928dab);
    min-height: 100vh;
    color: #fff;
}

.main {
    width: 100%;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.3);
}

.icon .logo {
    color: #f4dc6f;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.4s;
}

.menu ul li a:hover {
    color: #f4dc6f;
}

.search {
    display: flex;
    align-items: center;
}

.srch {
    padding: 7px;
    border-radius: 20px;
    border: none;
    outline: none;
    width: 150px;
    margin-right: 10px;
    padding-left: 15px;
}

.btn {
    padding: 7px 20px;
    background: #f4dc6f;
    color: #000;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s;
}

.btn:hover {
    background: #ffd700;
    transform: scale(1.1);
}

.content {
    text-align: center;
    margin-top: 100px;
    padding: 0 5%;
}

.content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.content .par {
    font-size: 18px;
    line-height: 1.8;
}

.cn {
    margin-top: 30px;
    padding: 12px 30px;
    background: #f4dc6f;
    color: #000;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    transition: 0.4s;
    cursor: pointer;
}

.cn a {
    text-decoration: none;
    color: #000;
}

.cn:hover {
    background: #ffd700;
    transform: scale(1.1);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    animation-delay: 0.5s;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}
/*Service details*/
.details-page {
    text-align: left;
    margin-top: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.service-section h2 {
    color: #f4dc6f;
    margin-top: 20px;
    font-size: 28px;
}

.service-section p {
    font-size: 18px;
    margin-top: 10px;
    line-height: 1.6;
    color: #ddd;
}


/* Basic Reset *//*product*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #1f1c2c, #928dab);
    color: #fff;
}

.main {
    width: 100%;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.3);
}

.logo {
    color: #f4dc6f;
    font-size: 28px;
    font-weight: 800;
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.menu ul li a:hover {
    color: #f4dc6f;
}

.search {
    display: flex;
    align-items: center;
}

.srch {
    padding: 7px;
    border-radius: 20px;
    border: none;
    margin-right: 10px;
}

.btn {
    background: #f4dc6f;
    padding: 7px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

/* Product Page */
.content {
    padding: 40px 5%;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.4s, box-shadow 0.4s;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0,0,0,0.4);
}

.product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-card h2 {
    color: #f4dc6f;
    margin-bottom: 10px;
}

.product-card p {
    margin-bottom: 10px;
}

.details-btn {
    padding: 10px 20px;
    background: #f4dc6f;
    border-radius: 25px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

/* Modal */
.modal-toggle {
    display: none;
}

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #2c2c54;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.modal-content img {
    width: 80%;
    margin-top: 15px;
    border-radius: 10px;
}

.modal-content h2 {
    color: #f4dc6f;
    margin-bottom: 10px;
}

.modal-content p {
    margin-top: 15px;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: #f4dc6f;
    cursor: pointer;
}

/* Fade and Zoom Animations */
.fade-in {
    animation: fadeIn 1s ease-in forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    animation-delay: 0.5s;
}

.zoom {
    animation: zoomIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Show modal when checkbox is checked */
#modal1:checked ~ #m1,
#modal2:checked ~ #m2,
#modal3:checked ~ #m3
#modal4:checked ~ #m4
#modal5:checked ~ #m5
#modal6:checked ~ #m6
#modal7:checked ~ #m7
#modal8:checked ~ #m8
#modal9:checked ~ #m9
#modal10:checked ~ #m10
#modal11:checked ~ #m11
#modal12:checked ~ #m12 
#modal13:checked ~ #m13
#modal14:checked ~ #m14{
    display: flex;
}
/*pcparts*/
.content {
    padding: 40px 5%;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.4s, box-shadow 0.4s;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0,0,0,0.4);
}

.product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-card h2 {
    color: #f4dc6f;
    margin-bottom: 10px;
}

.product-card p {
    margin-bottom: 10px;
}

.details-btn {
    padding: 10px 20px;
    background: #f4dc6f;
    border-radius: 25px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

/* Modal */
.modal-toggle {
    display: none;
}

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #2c2c54;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.modal-content img {
    width: 80%;
    margin-top: 15px;
    border-radius: 10px;
}

.modal-content h2 {
    color: #f4dc6f;
    margin-bottom: 10px;
}

.modal-content p {
    margin-top: 15px;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: #f4dc6f;
    cursor: pointer;
}

/* Fade and Zoom Animations */
.fade-in {
    animation: fadeIn 1s ease-in forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    animation-delay: 0.5s;
}

.zoom {
    animation: zoomIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Show modal when checkbox is checked */
#modal1:checked ~ #m1,
#modal2:checked ~ #m2,
#modal3:checked ~ #m3
#modal4:checked ~ #m4
#modal5:checked ~ #m5
#modal6:checked ~ #m6
#modal7:checked ~ #m7
#modal8:checked ~ #m8
#modal9:checked ~ #m9
#modal10:checked ~ #m10
#modal11:checked ~ #m11
#modal12:checked ~ #m12 
#modal13:checked ~ #m13
#modal14:checked ~ #m14{
    display: flex;
}
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #121212;
    color: white;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1f1f1f;
    padding: 20px 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.icon .logo {
    color: #ffe135;
    font-size: 28px;
    font-weight: 800;
}

.menu ul {
    display: flex;
    gap: 25px;
}

.menu li a {
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu li a:hover {
    color: #ffe135;
}

.search {
    display: flex;
    align-items: center;
}

.srch {
    padding: 8px 14px;
    border: none;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
}

.btn {
    margin-left: 10px;
    padding: 8px 16px;
    background: #ffe135;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #e0c220;
}

/* Hero Content */
.content {
    text-align: center;
    padding: 100px 20px;
    animation: fadeIn 1.2s ease;
}

.content h1 {
    font-size: 4rem;
    line-height: 1.2;
    color: #ffe135;
}

.content h1 span {
    color: white;
    font-weight: 800;
}

.par {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 700px;
    margin: 20px auto;
}

.cn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    background: #ffe135;
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.cn:hover {
    background: #e0c220;
    transform: scale(1.05);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1.5s ease-in forwards;
    animation-delay: 0.5s;
}

.bounce {
    animation: bounceIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    60% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 20px;
    }

    .menu ul {
        flex-direction: column;
        gap: 10px;
    }

    .content h1 {
        font-size: 2.5rem;
    }

    .par {
        font-size: 1rem;
    }

    .search {
        margin-top: 15px;
    }
}
