@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}
body{
    background-color: black;
}



header {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: black;
  z-index: 1000;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 27px;
  font-weight: 400;
  color: #fff;
}
.logo span {
  font-weight: lighter;
  color: darkgray;
}

.menu-icon {
  font-size: 26px;
  cursor: pointer;
  display: block;
  color: #fff;
  transition: transform .5s ease;
}

.nav-links {
  list-style: none;
  position: absolute;
  top: 70px;
  right: 50px;
  background: rgba(20, 20, 20, 0.95);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 15px;
  transition: transform .5s ease;
  border-radius: 10px;
}
.nav-links.active {
  display: flex;
}
.nav-links li{
  padding: 5px 0;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: transform ease;
}
.nav-links li a:hover {
  color: #FF66FF;
}

/* ================= HERO (Sehar Anwar Intro) ================= */
.hero {
  height: 100vh;
  background: url('images/download.jpg') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 80px;
  position: relative;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.3;
}
.hero-content h1 span {
  font-weight: 500;
}

.hero-content p {
  margin: 20px 0;
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
}

/* Buttons */
.buttons {
  margin-top: 20px;
}
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(90deg, rgba(255, 102, 255, 1) 0%, rgba(255, 0, 255, 1) 9%, rgba(138, 0, 204, 1) 39%, rgba(40, 0, 77, 1) 100%);
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover {
  opacity: 0.8;
}

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 100px;
  right: 40px;
}
.scroll-down .circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255, 102, 255, 1) 0%, rgba(255, 0, 255, 1) 9%, rgba(138, 0, 204, 1) 39%, rgba(40, 0, 77, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.scroll-down .circle:hover {
  transform: scale(1.1);
}
.scroll-down .arrow {
  font-size: 25px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: bold;
}

/* ================= LOGO CAROUSEL ================= */
.logo-carousel-section {
  background-color: #1f1d1d;
  padding: 35px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #8a00cc;
}
.logo-carousel-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 40px;
}
.logo-item span {
  font-size: 18px;
  font-weight: bold;
  color: #e7dede;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ================= IDEAS / SERVICES HERO ================= */
.ideas-section {
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #000;
  color: #fff;
}
.hero-content h1 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  color: white;
}
.hero-content .light { font-weight: 600; }
.hero-content .bold { font-weight: 700; }
.hero-content .dot { color: #8a00cc; }

.cta-button { margin-top: 50px; }
.cta-button button {
  background: linear-gradient(90deg, rgba(255, 102, 255, 1) 0%, rgba(255, 0, 255, 1) 9%, rgba(138, 0, 204, 1) 39%, rgba(40, 0, 77, 1) 100%);
  color: white;
  padding: 15px 30px;
  border: none;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}
.cta-button button span { font-size: 18px; }

.hero-image {
  width: 470px;
  margin-top: -40px;
  margin-left: 50px;
  height: 280px;
  object-fit: cover;
  border-radius: 40px;
}

/* Services Grid */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 60px 30px;
  color: white;
  gap: 20px;
  background-color: #111;
}
.service-box {
  position: relative;
  border: 1px solid #333;
  padding: 30px;
  font-size: 18px;
  font-weight: 500;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000;
  overflow: hidden;
  transition: 0.3s ease;
  border-radius: 12px;
}
.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg, rgba(255, 102, 255, 1) 0%, rgba(255, 0, 255, 1) 9%, rgba(138, 0, 204, 1) 39%, rgba(40, 0, 77, 1) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-box::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(255, 0, 255, 0.25), transparent 70%);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.service-box:hover::before { opacity: 1; }
.service-box:hover::after { opacity: 1; transform: scale(1); }

/* ================= TESTIMONIALS ================= */
.testimonials {
  background: #f9f9f9;
  color: #222;
  padding: 80px 20px;
  text-align: center;
}
.testimonials .info-text {
  font-size: 14px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.5;
}
.testimonials .headline {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}
.testimonials .headline .thin-small {
  font-weight: 400;
  color: #555;
}
.avatar-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(90deg, rgba(255, 102, 255, 1) 0%, rgba(255, 0, 255, 1) 9%, rgba(138, 0, 204, 1) 39%, rgba(40, 0, 77, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
}
.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(138, 0, 204, 0.6);
}
.gradient-text {
  background: linear-gradient(90deg, rgba(255, 102, 255, 1) 0%, rgba(255, 0, 255, 1) 9%, rgba(138, 0, 204, 1) 39%, rgba(40, 0, 77, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.quote-icon {
  font-size: 70px;
  font-weight: bold;
  margin-top: 40px;
}



.bio{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 0 100px;
   
}
#section1{
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: white;
    gap: 30px;
}
.sec-child{
    width: 33.3333%;
}

#section1 .pfp {
  display: flex;
  justify-content: center;
  align-items: center;
}
#section1 .pfp img {
  margin: 0 auto;
  display: block;
  height: 250px;
  width: 250px;
}


#section1:first-child p{
    font-size: 15px;
}
.biography{
    margin-bottom: 50px;
}
.biography h1{
    margin-bottom: 8px;
    font-size: 20px;
}
.skills{
    margin-bottom: 50px;
}
.skills h1{
    font-size: 18px;
    margin: 8px 0;
}
.connect h1{
    font-size: 18px;
    margin: 8px 0;
}
#social-icons{
    display: flex;
    gap: 25px;
    align-items: center;
}
#social-icons a{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border-radius: 50%;
    background-color: rgb(50, 56, 62);
    color: white;
    font-size: 14px;
    transition: all ease .3s;
    text-decoration: none;
}
#social-icons a:hover{
    scale: 1.2;
    /* font-size: 15px; */
    background-color: rgba(138, 0, 204, 1);
}

#bio-det{
   display: flex;
   flex-direction: column;
   text-align: right;
}
#bio-det h1{
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 50px;
}
#bio-det p{
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 10px;
}

#section1 img{
    height: 350px;
    width: 350px;
}
.gradient-text{
background: #FF66FF;
background: linear-gradient(90deg, rgba(255, 102, 255, 1) 0%, rgba(255, 0, 255, 1) 9%, rgba(138, 0, 204, 1) 39%, rgba(40, 0, 77, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.recent-work{
    margin-bottom: 50px;
  
}
.work-det{
    padding: 0 100px;
    width: 100%;
    color: white;
}
.portfolio{
    font-size: 13px;
    margin: 10px 0;
    color: rgb(89, 99, 107);
}
.work-det h1{
    font-size: 50px;
    color: white;
    font-weight: 500;
}
#work-desc{
    font-size: 15px;
    color: rgb(173, 184, 193);
}
.work-images{
    padding: 0 100px;
    display: flex;
    margin-top: 30px;
    justify-content: center;
    width: 100%;
    gap: 50px;
}
.work-images div{
    width: 50%;
}   
.work-images img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    filter: brightness(1);
}              
.work-images img:hover{
    filter: brightness(0.8);
    cursor: pointer;
    transition: all ease .3s;
}
.work-images h1{
    font-size: 22px;
    color: white;
    margin-bottom: 10px;
}  
.work-images p{
    font-size: 14px;
    color: rgb(173, 184, 193);
}    

.awards{
    padding: 50px 100px;
}    
#awards-det{
    display: flex;
    justify-content: space-between;
}                
.awards h1{
    font-size: 50px;
    color: white;
    font-weight: 500;
    margin-bottom: 50px;
}                 
.cardsParent{
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}                          
.achieve-card{
    display: flex;
    flex-direction: column;
    background-color: rgb(25, 25, 26);
    padding: 20px 40px;
    border-left: 2px solid rgba(255, 0, 255, 1);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-bottom: 20px;
    transition: all ease .3s;
    cursor: pointer;
}         
.achieve-card:hover{
    background-color: rgb(44, 44, 45);
    scale: 1.02;
    transition: all ease .3s;
}    
.achieve-card h3{
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
}               
.achieve-card p{
    font-size: 14px;
    color: rgb(173, 184, 193);
}                                                                   

.contact{
    padding: 50px 100px;
}
.contact h1{
    font-size: 50px;
    color: white;
    font-weight: 500;
}
.contact-parent{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}
#contact-details{
    display: flex;
    padding-top: 20px;
    padding-right: 250px;
    justify-content: flex-start;
    color: white;
}
#contact-details p{
    font-size: 20px;
    margin: 5px 0;
}
#email-form{
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}
#email-form div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
#email-form input, #email-form textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: rgb(25, 25, 26);
    color: white;
}
#email-form button{
    padding: 10px 20px;
    align-self: flex-end;
    background-color:  rgb(44, 44, 45);
    color: white;
    font-size: 10px;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all ease .3s;
}
#email-form button:hover{
    background-color: rgba(138, 0, 204, 1);   
}
#email-form button:active{
    transform: translateY(5px);
}
#copyrights{
    text-align: center;
    color: rgb(101, 109, 116);
    font-size: 12px;
    margin-top: 20px;
}



@media(max-width:500px){
    .sec-child{
        width: 100%;
    }
    .bio{
        height: auto;
        padding:20px;
        margin: 20px 0;
    }
    #section1{
        flex-direction: column;
        gap: 20;
    }
    #section1 h1{
        font-size: 20px;
    }
    #section1 p{
        font-size: 14px;
    }
    #section1 img{
        margin: 0 auto;
        height: 250px;
        width: 250px;
    }
    #bio-det{
        text-align: center;
    }
    #bio-det h1{
        margin-bottom: 25px;
        font-size: 30px;
    }
    .work-det,.awards,.contact{
        padding: 0 20px;
    }
    .work-det h1{
        font-size: 40px;
    }
    .work-images{
        padding: 0 20px;
        flex-wrap: wrap;
    }
    .work-images div{
        width: 100%;
    }
    #awards-det{
        flex-wrap: wrap;
    }
    .achieve-card{
        padding: 20px;
    }
    .contact{
        margin-top: 40px;
    }
    .contact-parent{
        flex-direction: column;
        gap: 20px;
    }
    #contact-details{
        flex-direction: column;
        padding-right: 0;
        margin-top: 20px;
        gap: 10px;
    }
    iframe{
        width: 100%;
        height: 300px;
    }

    .hero{
        padding-left: 20px;
    }
    .hero-content h1{
        font-size: 32px;
    }
    .hero-image{
        display: none;
    }
    .menu-icon{
        font-size: 30px;
    }
    .scroll-down{
        display: none;
    }
    .logo-carousel-section{
      padding: 25px 0;
    }
    .logo-item span{
      font-size: 15px;
    }
}