*{
    margin: 0;
    padding: 0;
    font-family:'Poppins' , sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body {
    background-color: #080808;
    color: #fff;
    background-image: 
        radial-gradient(circle at center, rgba(255,255,255,0.9) 2px, transparent 3px),
        radial-gradient(circle at center, rgba(0,153,255,0.7) 2px, transparent 3px),
        radial-gradient(circle at center, rgba(255,0,153,0.6) 2px, transparent 3px);
    background-size: 50px 50px, 100px 100px, 150px 150px;
    animation: starMove 300s linear infinite;
}

@keyframes starMove {
    from { background-position: 0 0, 25px 25px, 50px 50px; }
    to { background-position: 1000px 1000px, 1025px 1025px, 1050px 1050px; }
}
#header {
    width: 100%;
    height: 100vh;
    /* background-image: black; */ /* Removed invalid property */
    background-size: cover;
    background-position: center;
}
.container {
   padding: 10px 10%;
   font-weight: 700;  
}

nav  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.Logo img {
    width: 150px;
  height: auto;
  margin-left: 50px;
}

nav ul {
    display: flex;
    gap: 30px;
}
nav ul li {
    display: inline-block;
    list-style: none;
    margin-left: 10px 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 25px;
    position: relative;
}

nav ul li a:after {
    content: '';
    width: 0%;
    height: 3px;
    background: #ff9800;
    position: absolute;
    left:0;
    bottom: -6px;   
     transition: 0.5s;
}

nav ul li a:hover:after {
    width: 100%;
}

.header-test {
    display :flex;
   margin-top: 10%;
   font-size: 30px;
   align-items: center;
   gap: 100px ;
   justify-content: space-between;
}
.header-text p {
    font-size: 28px;
    margin-top: 15%;

}

.header-text h1 {
   font-size: 50px;
   margin-top: 2%;
}
.namaste {
    font-size: 70px;
    display: inline-block;
    animation: wave 1s infinite ease-in-out;
}

@keyframes wave {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

  .nav-image {
    height: 500px;
    width: 750px;
    object-fit: contain;
    margin-top: -390px;
    margin-left: 820px;
    border-radius: 10px ;
    margin-bottom: 500px;
}

.header-text h1 span {
   color: #ff0000;
}   

/*----------about---------*/
#about{
    padding: 80px 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;
}

.about-col-2 {
    flex-basis: 60%;
}
.Sub-title {
    font-size: 60px;
     font-weight: 600;
    color:#fff;
}

.tab-titles{
    display: flex;
    gap: 50px;
    margin: 20px 0 40px;  
}

.tab-links{
    margin-right: 40px;
    font-size: 18px;    
    font-weight: 500;
    cursor: pointer;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    
}

.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-type: none;
    margin: 10px 0 ;
}
.tab-contents ul li span{
    font-size: 14px;
    color:#ff004f;
}

.tab-contents {
    display: none;
}
.tab-contents.active-tab {
    display: block;
}

/*----------services----------  */
#services {
    margin-top: 50px;
    padding: 30px 0;
    font-size: 20px;
   
}
.Sub-title {
    font-size: 60px;
     font-weight: 600;
    color:#fff;
}

.services-list {
    display: grid;
    gap: 100px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin-top: 30px;
}
 .services-list div {
    background: #262626;
    padding: 40px;
    border-radius: 20px;
    transition: backgound 0.5s, transform 0.5s; 
    

 }

 .services-list div i{
    font-size: 70px;
    margin-bottom: 30px;
 }

    .services-list div h2 {
        font-size: 35px;
        margin-bottom: 15px;
        font-weight: 700;
    }

.services-list div a {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #ff004f;
    font-weight: 500;
    
}
 .services-list div p {
        font-size: 20px;
       
    }
.services-list div:hover {
    background: #1800cd;
    transform: translateY(-10px)  ;
}

.work-list {
    display: grid;
    gap: 90px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin-top: 50px;
}
.work{
    border-radius:10px;
   
    position: relative;
    overflow: hidden;
}
.work img {
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transoform 0.2s;

}
.layer {
    position: absolute;
    width: 100%;
    height: 0;  
    background: linear-gradient(rgba(0,0,0,0.6),#3f02d8);
    border-radius: 10px;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0 40px; /* More padding for better spacing */
    text-align: center;
    font-size: 15px;
    transition: height 0.2s;
}

.layesr h3 {
   font-weight: 600;
   font-size: 22px;
   margin-bottom: 20px;
}
.layer a {
    margin-top: 20px ;
    font-size: 16px; /* Slightly larger font for readability */
    line-height: 60px; /* Improved line spacing */
    color: #ff004f;
    text-decoration: none;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    text-align: center ;
    background: #fff;
}
.work:hover img {
    transform: scale(1.2);
}
.work:hover .layer {
    height: 100%;
}
.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;
}
.btn:hover {
    background: #ff004f;
    transition: 0.5s;
}

<!---contact------>
.contact-left{
    flex-basis: 35%;
}
.contact-right{
    flex-basis: 60%;
}
.contact-left p{
    margin: 10px 0;
    color: #fff;
}
.contact-left p i{
    color: #ff004f;
    margin-right: 20px;
    font-size: 25px;
}
.contact-icons{
    margin-top: 30px;
}
.contact-icons a{
    text-decoration: none  ;
    font-size: 30px;
    color: #ababab;
    display:inline-block;
    margin-right: 20px;
    transition: transform 0.5s;
}
.contact-icons a:hover {
    transform: translateY(-10px);
    color: #ff004f;
}
.btn.btn2 {
    background:#ff004f;
    display: inline-block;
    
}

.contact-right form {
    width:100%;

}
.contact-right form .text-box {
    width: 100%;
    padding: 15px;
    margin: 15px 0;
    background: #262626;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
}

form .btn2{
    padding: 14px 50px;
    font-size: 18px;
    margin-top: 20px;
    cursor:pointer

}

.copyright {
    text-align: center;
    padding: 25px 0;
    background: #262626;
    margin-top: 20px;
    width: 100%;
    font-weight: 300;
}

/*-----------css for small screen-------*/
@media (max-width: 600px) {
    .header-text h1 {
        font-size: 15px;
    }
    .header-text p {
        font-size: 15px;
    }
    .nav-image {
        width: 100%;
        height: auto;
        margin: 20px 0 0 0;
    }
    .header-test {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    nav ul {
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }
    nav ul.open {
        height: auto;
        padding: 20px 0;
    }
    nav ul li {
        margin: 10px 0;
    }
    .about-col-1, .about-col-2, .contact-left, .contact-right {
        flex-basis: 100%;
    }
    .tab-titles {
        flex-direction: column;
        gap: 10px;
    }
}
.copyright p:first-child {
    font-size: 22px;  /* tagline larger */
    font-weight: bold;
    color: #f39c12; /* bright orange-gold for emphasis */
}

.copyright p:last-child {
    font-size: 16px;  /* copyright smaller */
    opacity: 0.8;
}

/* -------- css for small screen---------- */
nav .fas{
    display: none;
}  


@media (max-width: 600px) {
    #header-text {
        text-align: right;
        font-size: 10px;
        width: 55%;
    }
    .header-text h1 {
        font-size: 20px;

    }
    /*menu icon*/
    nav .fas{
        display: block;
        font-size: 20px;   
    } 
    /*hidden siderbar */
    nav ul {
        background: #ff004f;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px; /* Decreased top padding */
        z-index: 2;
        transition: right 0.5s;
       
    }
    nav ul li {
        margin: 10px 0; /* Reduce vertical margin */
        display: block ;
    }
    nav ul li{
        margin: 25px;
        display: block;
       
    }
    nav ul .fas{
        position: absolute;
        top: 20px;
        left: 20px;
        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: 12px;
        line-height: 1.6;
    }
    .tab-links{
        font-size: 16px;
        margin-right: 20px;


    }


}
#msg{
    font-size: 20px;
    color: #61b752;
    margin-top: -40px;
    display: block;
}