@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #000000;
    min-height: 100vh;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: 0.6s;
}

header.sticky {
    padding: 5px 100px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

header .logo {
    color: #fff;
    font-weight: 700;
    font-size: 2em;
    text-decoration: none;
    transition: 0.6s;
}

header.sticky .logo {
    color: #111;
}

header ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

header ul li {
    list-style: none;
    margin-left: 20px;
}

header ul li a {
    text-decoration: none;
    color: #111;
    font-weight: 300;
    padding: 6px 15px;
    border-radius: 20px;
    transition: 0.6s;
}

header ul li a:hover,
header ul li a.active {
    background: #111;
    color: #fff;
}

header.sticky ul li a {
    color: #111;
}

header.sticky ul li a:hover,
header.sticky ul li a.active {
    background: #111;
    color: #fff;
}

.toggle {
    position: relative;
    width: 30px;
    height: 30px;
    background: url(menu.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    cursor: pointer;
    display: none;
}

.toggle.active {
    background: url(close.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px;
}

/* Banner - Image + Text Alignment */
.banner .textBx {
    max-width: 100%; /* Allow full width */
    padding: 20px;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 30px; /* Space between image and text */
}

.profile-container img {
    width: 200px; /* Adjust as needed */
    height: 200px; /* Adjust as needed */
    border-radius: 50%; /* Optional: Circular image */
    object-fit: cover;
    border: 5px solid #ff0157; /* Optional: Border color */
}

.name-title {
    flex: 1; /* Takes remaining space */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        text-align: center;
    }
    .profile-container img {
        margin-bottom: 20px;
    }
}

section {
    padding: 100px;
}

.banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url(bg.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .textBx {
    max-width: 600px;
}

.banner .textBx h2 {
    font-size: 3em;
    color: #ffffff;
    line-height: 1em;
    font-weight: 700;
}

.banner .textBx h2 span {
    color: #ff0157;
    font-size: 1.5em;
    font-weight: 700;
} 

.banner .textBx h3 {
    font-size: 1.5em;
    color: #ffffff;
    line-height: 1.5em;
    font-weight: 300;
    margin: 20px 0;
}

.banner .textBx .btn {
    position: relative;
    display: inline-block;
    margin-top: 30px;
    padding: 10px 30px;
    background: #ff0157;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2em;
    letter-spacing: 2px;
    transition: 0.5s;
}

.banner .textBx .btn:hover {
    letter-spacing: 6px;
}

.heading {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.heading h2 {
    font-weight: 600;
    font-size: 2.5em;
}

.heading.white h2,
.heading.white p {
    color: #fff;
}

.contant-x {
  color: white;
}

.heading p {
    font-weight: 300;
    font-size: 1em;
    color: #ffffff;
}

.content {
    display: flex;
    justify-content: space-between;
}

.contentBx {
    padding-right: 30px;
}

.contentBx h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.w50 {
    min-width: 50%;
    background-color: rgb(0, 0, 0);
}

img {
    max-width: 100%;
}

.services {
    background: #111;
}

.services .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.services .content .servicesBx {
    padding: 40px 20px;
    background: #222;
    color: #fff;
    max-width: 340px;
    margin: 20px;
    text-align: center;
    transition: 0.5s;
}

.services .content .servicesBx:hover {
    background: #ff0157;
}

.services .content .servicesBx img {
    max-width: 80px;
    filter: invert(1);
}

.services .content .servicesBx h2 {
    font-size: 1.3em;
    font-weight: 500;
    margin-top: 20px;
}

.work .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.work .content .workBx {
    width: 350px;
    padding: 10px;
    margin: 20px;
}

.work .content .workBx img {
    max-width: 100%;
    border: 10px solid transparent;
    transition: 0.5s;
}

.work .content .workBx img:hover {
    border: 10px solid #ff0157;
}

.testimonial .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial .content .testimonialBx {
    max-width: 500px;
    padding: 40px;
    margin: 20px;
    background: #f9f9f9;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial .content .testimonialBx p {
    font-style: italic;
}

.testimonial .content .testimonialBx h3 {
    margin-top: 20px;
    text-align: right;
    font-weight: 500;
    color: #ff0157;
}

.testimonial .content .testimonialBx h3 span {
    color: #666;
    font-size: 0.8em;
    font-weight: 400;
}

.contact {
    background: #111;
}

.contact .content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact .contactInfo {
    width: 50%;
}

.contact .contactInfo h3 {
    color: #fff;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.contact .contactInfo .contactInfoBx {
    position: relative;
}

.contact .contactInfo .contactInfoBx .box {
    position: relative;
    padding: 20px 0;
    display: flex;
}

.contact .contactInfo .contactInfoBx .box .icon {
    min-width: 40px;
    padding-top: 4px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 24px;
}

.contact .contactInfo .contactInfoBx .box .text {
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
}

.contact .contactInfo .contactInfoBx .box .text h3 {
    color: #ff0157;
    font-weight: 500;
    margin-bottom: 0;
}

.contact .formBx {
    width: 40%;
    padding: 40px;
    background: #fff;
}

.contact .formBx h3 {
    color: #111;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact .formBx input,
.contact .formBx textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    border: none;
    outline: none;
    background: #f5f5f5;
    resize: none;
}

.contact .formBx input[type="submit"] {
    max-width: 100px;
    background: #ff0157;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
}

.copyright {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}

@media (max-width: 991px) {
    header,
    header.sticky {
        padding: 20px 50px;
    }
    
    .toggle {
        display: block;
    }
    
    header ul {
        position: fixed;
        top: 75px;
        left: -100%;
        display: block;
        padding: 100px 50px;
        text-align: center;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: 0.5s;
        z-index: 999;
        border-top: 1px solid rgba(0,0,0,0.2);
    }
    
    header ul.active {
        left: 0;
    }
    
    header ul li {
        margin: 10px 0;
    }
    
    header ul li a {
        font-size: 24px;
    }
    
    section {
        padding: 50px;
    }
    
    .banner .textBx h2 {
        font-size: 2em;
    }
    
    .banner .textBx h3 {
        font-size: 1em;
    }
    
    .content {
        flex-direction: column;
    }
    
    .contentBx {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .w50 {
        min-width: 100%;
    }
    
    .contact .contactInfo,
    .contact .formBx {
        width: 100%;
    }
    
    .contact .formBx {
        padding: 30px;
    }
}
