* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}
body{
    background-color: #faf8f1;
    color: #1a1a1a;
}
html{
    scroll-behavior: smooth;
}
img,span,h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
    font-family: "Oswald", sans-serif;
}
p,a{
     font-family: "Montserrat", sans-serif;
}

/*navbar*/
.navbar{
    width:100%;
    background:#000000;
    padding:15px 40px;
    position: fixed;
    z-index: 2;
}

.nav-container{
    display:flex;
    justify-content:center;  
    align-items:center;
    gap:60px;                 
    width:100%;
}

.navbarlogo{
    color:white;
    padding:8px 18px;
    font-size:16px;
    letter-spacing:2px;
    border-radius: 5px;
}

.active{
    border:2px solid #00eaff;
    color:#00eaff !important; 
}

.nav-links{
    display:flex;
    align-items:center;
    justify-content:center;
    list-style:none;
    gap:40px;
}
.nav-links a{
    text-decoration:none;
    color:white;
    font-size:14px;
    letter-spacing:1px;
    display: inline-block;
    padding:1rem 1rem;
}

.nav-links a:hover{
    color:#00eaff;
}

.lines{
    display:none;
    flex-direction:column;
    cursor:pointer;
}

.lines span{
    height:3px;
    width:25px;
    background:white;
    margin:4px 0;
}

@media (max-width:768px){
.nav-links{
    position:absolute;
    top:70px;
    right:unset;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background:#000 !important;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:20px 0;
    display:none;
    z-index: 10;
}
.nav-links.active{
    display:flex;
}
.lines{
    display:flex;
  }
.about {
    padding: 80px 30px !important;
}
.about-container{
    width:100% !important;
}
.box .about-content {
    text-align: left !important;
}
}

.hero{
    color:#fff;
    display:flex;
    min-height: 90vh;
    align-items:center;
    justify-content:center;
    padding-top:30px;
    background-size: 65vh;
    background-repeat: no-repeat;
    background-position: center;

}

.hero-container{
    width:100%;
    max-width: 1410px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.hero-logo{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
    flex:1;
}

.hero-logo img{
    width:200px;
}

.hero-logo h2{
    font-size:45px;
    letter-spacing:3px;
}


.hero-center{
    text-align:center;
    flex:1;
}

.hero-center .logo{
    width:130px;
    margin-bottom:20px;
}

.hero-center h1{
    font-size:50px;
    line-height:1.2;
}

.hero-center .text1
{
    font-size:70px !important;
}

.hero-center span{
    color:#00e5e5;
}

@media (max-width:900px){
.hero-container{
    flex-direction:column;
    gap:40px;
}

.hero-logo img{
    width:90px;
}

.hero-center h1{
    font-size:40px;
}
}

.projects{
    background-color: #000000e0;
    padding: 80px 0;
}

.section-title{
    text-align:center;
    color:#18d3d3;
    font-size:40px;
    letter-spacing:3px;
    margin-bottom:60px;
}

.project-card{
    display: block;
    text-decoration: none;
    color: black;
    transition:0.2s;
    display: inline-block;
}

.project-card:hover{
    opacity: 0.3 !important;
}

.projects-container{
  width: 83%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}


.project-card{
    width:30%;
    min-width:300px;
}

.project-card img{
    width:100%;
    border-radius:8px;
    display:block;
}

.project-card p{
    margin-top:15px;
    font-size:14px;
    letter-spacing:2px;
    color:#fff;
}

@media (max-width:1000px){
.project-card{
    width:45%;
}
}

@media (max-width:600px){
.project-card{
    width:100%;
}

.section-title{
    font-size:30px;
}
}

.about{
    background:#000000e0;
    color:white;
    padding:80px 74px;
}

.about-container{
    width:90%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
    flex-wrap:wrap;
}

.about-left{
    flex:1;
    min-width:300px;
}

.about-left h2{
    color:#18d3d3;
    font-size:40px;
    letter-spacing:3px;
    margin-bottom:20px;
}

.about-left p{
    line-height:1.7;
    margin-bottom:20px;
}

.phone{
    margin-top:30px;
    font-size:14px;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.icon{
    width:40px;
    height:40px;
    background:#18d3d3;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    color:black;
    cursor:pointer;
    transition: 0.4s ease;
}
.icon:hover{
    background:white;
    color:rgb(0, 0, 0);
    border:2px solid #00eaff;

}

.about-right{
    flex:1;
    min-width:300px;
    display:flex;
    flex-wrap:wrap;
    gap:40px;
}

.box{
    width:45%;
    border-left:2px solid #18d3d3;
    padding-left:20px;
}

.box h3{
    font-size:40px;
    margin-bottom:10px;
}

.box .about-content{
    font-size:12px;
    letter-spacing:2px;
    text-align: center;
    line-height:20px;
}
@media (max-width:768px){
.about-container{
    flex-direction:column;
}

.about-right{
    gap:30px;
}

.box{
    width:100%;
}
}

.contact{
    background:#000000e0;
    color:white;
    padding:100px 20px;
    display:flex;
    justify-content:center;
}

.contact-container{
    width:100%;
    max-width:600px;   
    text-align:center;
    margin:auto;
}

.contact h2{
    color:#19d3d3;
    font-size:40px;
    letter-spacing:3px;
    margin-bottom:15px;
}

.subtitle{
    color:#ccc;
    margin-bottom:40px;
    line-height:1.6;
}

.contact-form{
    display:flex;
    flex-direction:column;
    align-items:center;   
    gap:20px;
    width:100%;
}

.row{
    display:flex;
    gap:15px;
    width:80%;        
}

.contact-form input,
.contact-form textarea{
    width:89%;
    padding:14px;
    background:#2f2e2eb0;
    border:1px solid #19d3d3;
    border-radius:6px;
    color:white;
}

.contact-form input[type="text"]{
    width:80%;
}

.contact-form input[type="submit"]{
    width:80%;
}

.contact-form textarea{
    height:150px;
    resize:none;
    width:80%;
}

.contact-form button{
    background:#19d3d3;
    padding:15px;
    font-size:16px;
    letter-spacing:2px;
    border-radius:6px;
    cursor:pointer;
    color:white;
    font-weight:bold;
    transition:0.3s ease;
    width:80%;       
    border:2px solid #00eaff;
}

.contact-form button:hover{
    background:white;
    color:rgb(0, 0, 0);
    border:2px solid #00eaff;

}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:white;
}

@media (max-width:700px){
.row{
    flex-direction:column;
    width:100%;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea{
    width:100%;
}

.contact-form button{
    width:60%;
}

.contact h2{
    font-size:30px;
}
}

.footer{
    background:#000000;
    border-top:1px solid #19d3d3;
    padding:37px 0;
}

.footer-container{
    width:85%;      
    max-width:1100px;   
    margin:auto;       
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.footer-logo img{
    width:80px;
}        

.footer-social{
    display:flex;
    gap:15px;
}

.social{
    width:40px;
    height:40px;
    border:1px solid #fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}
.social-icons .icon a{
    text-decoration: none;
    color:rgb(0, 0, 0);
}
.social:hover{
    background:#19d3d3;
    border-color:#19d3d3;
    color:black;
}

@media (max-width:600px){
.footer-container{
    flex-direction:column;
    gap:25px;
    text-align:center;
}
}




/*project1-css*/
.portfolio-wrapper{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:60px 0;

  
}
section{
    background-color:#000000e0;
}
.btn-back{
    background:#18c5c8;
    padding:8px 18px;
    border-radius:6px;
    text-decoration:none;
    color:white;
    font-size:14px;
    transition: 0.3s ease;
    border:2px solid #18c5c8;
}
.btn-back:hover{
    background:white;
    color:rgb(0, 0, 0);
    border:2px solid #18c5c8;
}

.project-heading{
    font-size:48px;
    letter-spacing:2px;
    margin:24px 0;
    color:#fff;
    line-height:40px;
}

.line-divider{
    height:2px;
    width:100%;
    background:#18c5c8;
    margin-bottom:30px;
}

.info-flex{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.btn-project{
    display:inline-block;
    background:#18c5c8;
    padding:12px 24px;
    border-radius:6px;
    text-decoration:none;
    color:white;
    font-weight:bold;
    margin-bottom:19px;
    border:2px solid #18c5c8;
    transform: 0.4s ease;
}
.btn-project:hover{
    background:white;
    color:rgb(0, 0, 0);
    border:2px solid #18c5c8;
}
.label{
    font-size:12px;
    color:#fff;
    font-family: "Montserrat", sans-serif;
}

.value{
    margin-top:5px;
    color:white;
}

.info-right{
    text-align:right;
}

@media(max-width:768px){
.project-heading{
    font-size:34px;
}
.info-flex{
    flex-direction:column;
    gap:30px;
}
.info-right{
    text-align:left;
  }

}

.design-section{
    background:#000000e0;
    padding:80px 0;
}

.design-container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.design-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.design-text{
    flex:1;
}

.design-text h2{
    font-size:36px;
    letter-spacing:2px;
    margin-bottom:20px;
    color:#fff;
}

.design-text p{
    color:#fcf1f1;
    line-height:1.8;
    margin-bottom:15px;
}

.design-image{
    flex:1;
}

.design-image img{
    width:100%;
    border-radius:8px;
}

@media(max-width:900px){
.design-flex{
    flex-direction:column;
    gap:40px;
}
.design-text h2{
    font-size:30px;
  }

}
.tools-section{
    background:#000000e0;
    padding:70px 0;
    color:white;
}

.tools-container{
    width: 90%;
    max-width: 1200px;
    margin:auto;
}

.focus-area{
    margin-bottom:40px;
}

.focus-area h4{
    margin-bottom:15px;
    font-size:18px;
    font-family: "Montserrat", sans-serif;
}

.focus-area p{
    color:#ffffff;
  
}

.tools-area h4{
    margin-bottom:20px;
    font-size:18px;
    font-family: "Montserrat", sans-serif;
}

.tools-flex{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.tool-box{
    background:#000000e0;
    padding:14px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    width:60px;
    height:60px;
    transition:0.3s;
}

.tool-box img{
    width:35px;
}

.tool-box:hover{
    transform:translateY(-5px);
    background:#242424;
}

@media(max-width:768px){
.tools-flex{
    gap:15px;
}
.tool-box{
    width:55px;
    height:55px;
}
.tool-box img{
    width:30px;
}

}

.shots-section{
    background:#000000e0;
    padding:80px 0;
}

.shots-container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.shots-title{
    color:white;
    font-size:36px;
    margin-bottom:40px;
}

.shots-flex{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
}

.shot-card{
    width:calc(33.33% - 20px);
    background:#eaeaea;
    border-radius:10px;
    overflow:hidden;
}

.shot-card img{
    width:100%;
    display:block;
}

@media(max-width:900px){
.shot-card{
    width:calc(50% - 15px);
}

}
@media(max-width:600px){
.shot-card{
    width:100%;
  }

}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px; /* keeps it nice on large screens */
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 20px auto; /* center + spacing */
  border-radius: 10px; /* optional: modern UI */
}

/* iframe fills container */
.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* 📱 Mobile optimization */
@media (max-width: 768px) {
  .video-container {
    max-width: 100%;   /* full width on mobile */
    margin: 15px 0;    /* remove side spacing */
    border-radius: 8px;
  }
}

/* 📱 Small devices (extra polish) */
@media (max-width: 480px) {
  .video-container {
    margin: 10px 0;
    border-radius: 6px;
  }
}

/* MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {

  .design-flex {
    display: flex;
    flex-direction: column !important;
  }

  /* Make image always come first */
  .design-image {
    order: -1;
    width: 100%;
  }

  .design-text {
    width: 100%;
  }

  /* spacing fix */
  .design-text {
    margin-top: 15px;
  }

  /* make images responsive */
  .design-image img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.resume-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background-color: #00cfc8;
    color: black;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s ease;
}

.text1::after {
  content: "|";
  margin-left: 5px;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}