    *{
        margin : 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
    body{
        background: linear-gradient(135deg, #032a4f, #026c43, #ffffff);
        color:white;
        font-size: 16px;
        line-height: 1.5;
        
    }

    #header {
        width: 100%;
        height: 100vh; 
        background-size: cover;
        background-position: center;
    }
    .container{
        padding-left: 100x;
        padding-right: 10px;
        border-image: 10px;
    }
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        border: 2px solid white; 
        border-radius: 10px;      
        padding: 10px 20px;    
        width: full;   
    }
    .logo{
        width : 150px;

    }

    nav ul li{
        display:inline-block;
        list-style: none;
        margin: 0 15px;
        position: relative;
    }

    nav ul li a{
        text-decoration: none;
        color: white;
        font-weight: 500;
        font-size : 20px;
        transition: all 0.3s ease;
    }
    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: 10%;
        font-size : 50px;
        font-weight: 600;
        color: white;
    }
    .header-text h1{
        font-size: 60px;
        font-weight: 400;
        color: yellow;
    }
    .header-text h1 span{
        color: rgb(123, 218, 15);
    }

    #about{
        padding:00px 0;
        color: white;
        
    }
    .row{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .about-col-2 h1{
        font-size: 50px;
        font-weight: 600;
    }
    .about-col-1{
        flex-basis: 35%;
    }
    .about-col-1 img{
        width: 100%;
        height: auto;
        border-radius: 15px;
    }
    .about-col-2{       
        flex-basis: 60%;
        padding-left: 50px;
    }
    .sub-title{
        font-size: 60px;
        color: #ffffff;
        font-weight: 600;
    }
    .tab-titles{
        display: flex;
        margin : 20px 0 40px;

    }
    .tab-links{
        margin-right:50px;
        font-size:18px;
        font-weight: 500;
        cursor: pointer;
        color: #ffffff;
        position:relative;
    }

    .tab-links.active::after {
        content: '';
        width: 100%;
        height: 3px;
        background: #ff004f;
        position: absolute;
        left: 0;
        bottom: -8px;
        transition: 0.5s;
    }

    .tab-links::after {
        content: '';
        width: 0;
        height: 3px;
        background: #ff004f;
        position: absolute;
        left: 0;
        bottom: -8px;
        transition: 0.5s;
    }

    .tab-links:hover::after {
        width: 100%;
    }

    .tab-contents ul li{
        list-style: none;
        margin: 20px 0;
    }  
    .tab-contents ul li span{
        color:red;
        font-size:14px;
    }
    .tab-contents{
        display: none;
    }
    .tab-contents.active{
        display: block;
    }

    #services{
        padding: 400px 0;
    }
    .services-list{
        display:grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-gap:40px;
        margin-top: 50px;
    }
    .services-list h2{
        font-size: 50px;
        font-weight: 600;
        color: #ffffff;
    }
    .services-list h2 p{
        font-size: 20px;
        color: #c3ff00;
    }
    .services-list a {
        text-decoration: none;
        font-size: 20px;
        color: #6f8fe5;
        text-decoration: none;
        display: inline-block;
        margin-top: 20px;
    }

    .services-list a:hover {
        color: #cdf502;
        transform: scale(1.05);
    }

    .headings{
        font-size: 60px;
        font-weight: 600;
        color: #f0f403;
        margin-bottom: 10px;
    }

    .services-list div{
        background: #1a1a1a;
        padding: 30px;
        border-radius: 15px;
        transition : background 0.5s, transform 0.5s;
        text-align: center;
    }
    .services-list div:hover{
        background: #d34f4f;
        transform: scale(1.1);
    }

    .contact-left{
        flex-basis:35%;
    }
    .contact-right{
        flex-basis: 60%;
    }
    .contact-left p{
        margin-top: 30px;
        margin-left: 20px;
    }
    .contact-right form{
        width:100%;
    }
    .contact-right form button {
        padding: 15px 40px;
        font-size: 18px;
        border-radius: 15px;
    }
    form input, form textarea{
        width: 100%;
        padding: 15px;
        margin: 10px 0;
        border: none;
        border-radius: 5px;
        background-color: #333;
        color: white;
    }

    .social-icons a{
        padding:20px;
        text-decoration:none;
        font-size:30px;
        margin-right:15px;
        color: #d34f4f;
        display: inline-block
    }

    .social-icons img {
        width: 40px;
        height: 40px;
        transition: transform 0.3s, filter 0.3s;
        margin-right: 15px;
    }

    .social-icons img:hover {
        transform: scale(1.2);
        filter: brightness(1.5);
    }
    .social-icons a:hover{
        color: #ff004f;
        transform: scale(1.1);
    }

    .btn.btn2{
        padding: 15px;
        font-size: 18px;
        border-radius: 15px;
        background-color: #ff004f;
        color: white;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s, transform 0.3s;
    }

    footer {
        background: conic-gradient(from 0deg, rgb(64, 6, 212), yellow, green, red);; 
        color: #1d022d;             
        text-align: center;
        justify-content: center;
        padding: 20px 0;
        font-size: 14px;
        border-top: 1px solid #444;
    }

    footer p {
        margin: 5px 0;
    }

    footer p:first-child {
        font-weight: bold;
        font-size: 16px;
    }
    .contactme {
        text-align: center;
        font-size: 60px;
        font-weight: 600 ;
        color: #f7da00;
        margin-top: 50px;
    }
    .contactme::before {
        content: '';
        display: block;
        width: 100px;
        height: 4px;
        background-color: #ff004f;
        margin: 0 auto 20px;
    }
    .contactme::after {
        content: '';
        display: block;
        width: 100px;
        height: 4px;
        background-color: #ff004f;
        margin: 20px auto 0;
    }
    .contactme:hover::after {
        background-color: #f7da00;
        animation:backwards pulse 2s infinite;
    }