*{
    padding: 0;
    margin: 0 ;
    box-sizing: border-box;
}


body {
  font-family: 'Poppins', sans-serif;
}
.navbar{
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid whitesmoke;
    background-color: white;
    padding-left: 20px;
    padding-right: 20px;
}
#hem{
    display: none;
}
.navbar ul li a{
    color: black;
    text-decoration: none;
}

.logo {
    text-decoration: none;
    color: black;
    font-size: 31px;
    font-weight: bold;
    
    
}
.navbar li {
    list-style: none;
    font-weight: bold;
    font-size: 14px;
  
    
}
#hem{
    display: none;
}
.logo-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

}
#bird{
    font-size: 30px;
    color: darkgray;
}
li p {
    font-size: 10px;
    font-weight: 200;
    color: darkgray;
    text-align: center;
}

/* Hover effect on LI (your menu items) */
.navbar ul li {
    position: relative;
    display: flex;             
    flex-direction: column;    
    align-items: center;       
    padding: 30px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Orange top border animation */
.navbar ul li::before {
    content: "";
    position: absolute;
    top: 0;                    
    left: 0;
    width: 0;
    height: 3px;
    background-color: darkgray;
    transition: width 0.3s ease;
    z-index: 10;               
}

/* Hover effect */
.navbar ul li:hover {
    background-color: whitesmoke;
    
}

/* Expand line */
.navbar ul li:hover::before {
    width: 100%;
}
/* ACTIVE STATE (always applied to the current page) */
.navbar ul li.active {
    position: relative;
    background-color: whitesmoke;  /* optional */
    color: #f15a29;
}

/* Permanent orange line on active item */
.navbar ul li.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;                 
    height: 3px;
    background-color: #f15a29;
}

/* Active text stays orange */
.navbar ul li.active span
 {
    color:#f15a29;
}



.navbar ul li {
    position: relative;
    display: inline-block;
   
}
.about-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
   
    background-color: rgba(245, 245, 245, 0.617);
    padding-top: 25px;
    padding-bottom: 25px;
    border: 1px solid rgba(245, 245, 245, 0.939);
}
.breadcrumb{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    position: relative;
    padding-left: 8px; /* space before slash */
}

/* Add slash before every item except the first one */
.breadcrumb li:not(:first-child)::before {
    content: "/";
    position: absolute;
    left: -2px;
    color: #555;
}

.about-section li{
    list-style: none;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.562);
}
.about-section a {
    text-decoration: none;
    color: #000000bf;
    font-weight: bold;
    font-size: 22px

}
.about-section li:last-child{
color: darkgray;
}
.about-col{
    background-color: whitesmoke;
}
#plus{
    color: darkgray;
    margin-right: 5px;
}
.container{
    max-width: 1050px;
    margin: 0 auto;
    width: 100%;
}
.main-box{
    margin-top: 35px;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
       
        gap: 35PX;

}
.left-side-content {
    width: 70%;
}

.left-side-content h4 {
       font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000ad;
}
.about-col{
    background-color: rgba(245, 245, 245, 0.617)
}




.black{
    color: rgba(0, 0, 0, 0.53);
    font-weight: 501;
    font-size: 13px;
    margin-bottom: 15px;
}
.darkgray{
    font-size: 13px;
    margin-bottom: 15px;
    color: darkgray;
}

/* Image + Bullet List Row */
.image-bullets {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}
.black p{
     line-height: 22px;
    margin-bottom: 15px;
    color: black;
    font-size: 13px;
}

/* About image */
.image-bullets img {
    width: 217px;
    border-radius: 1px;
    border: 2px solid rgba(169, 169, 169, 0.648);
    padding: 3px;
    

}

/* Bullet List */
.image-bullets ul {
    padding-left: 18px;
}

.image-bullets ul li {
    margin-bottom: 8px;
    color: darkgray;
    list-style: circle;
    font-size: 14px;
}

.right-side-content{
    width: 27%;
}


.right-side-content h4 {
   font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000ad;
}

.right-side-content p {
    color: darkgray;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 25px;
}

/* Skill Box */
.skill-box {
    margin-bottom: 20px;
    position: relative;
}

/* Skill name and percentage */
.skill-title {
    font-weight: 600;
    color: #0000008c;
    font-size: 13px;
}

.skill-percent {
    
    font-weight: 600;
    color: #0000008c;
    font-size: 13px;
}

/* Bar background */
.skill-bar {
    width: 100%;
    height: 15px;
    background: #eee;
    border-radius: 4px;
    margin-top: 6px;
}

/* Orange progress fill */
.skill-level {
    height: 100%;
    background: #ff5e14; /* same orange from template */
    border-radius: 4px;
}
.stages{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top:30px;
    padding-bottom: 10px;
        
}
.stages span{
    color: white;
    background-color: #f15a29;
    margin-right: 10px;
    font-weight: 200;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 13px;
   border-radius: 3px 0px 0px 3px ;
   margin-bottom: 2px;

}
.stage-heading h3 {
    font-weight: 600;
    color: #00000097;
    border-top: 4px solid whitesmoke;
   
       padding: 34px 20px 0 0px
   

}
.planning h4{
    color: #000000a4;
}
.development h4{
    color:#000000a4; 

}
.design h4{
     color:#000000a4; 

}
.testing h4{
    color:#000000a4; 
}
.planning  p{
    margin-top: 12px;
}
.design p{
    margin-top: 12px;
}
.development p{
    margin-top: 12px;
}
.testing p{
    margin-top: 12px;
}

.blog-grid-container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}
.blog-card h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.721);
   
}
.project{
    font-size: 15px;
    color: rgba(0, 0, 0, 0.535);
    margin-top: 13px;
    font-weight: 501;
    text-align: center;
}
.web{
    font-size: 12px;
    color: darkgray;
    text-align: center;
    padding-bottom: 15px;
    font-style: italic;

}

.blog1 p{
    text-align: center;

}
.blog1 img{
    padding: 5px;
     border: 2px solid whitesmoke;
    
   
}
.blog2 p{
    text-align: center;
    

}
.blog2 img{
    padding: 5px;
     border: 2px solid whitesmoke;
    
   
}
.blog3 p{
    text-align: center;
     

}
.blog3 img{
    padding: 5px;
    border: 2px solid whitesmoke;
    
   
}
.blog4 p{
    
text-align: center;
}
.blog4 img{
    padding: 5px;
     border: 2px solid whitesmoke;   
}
.blog-card{
    border-top: 4px solid whitesmoke;
   
}
/* client section */
.client h3{
    margin-bottom: 17px;
    color: rgba(0, 0, 0, 0.721);
    padding-top: 10px;
    padding-bottom: 10px;
}
.client-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.box1c{
    border: 2px solid whitesmoke;
    padding: 12px 30px;
}
.box2c{
    border: 2px solid whitesmoke;
    padding: 12px 35px;
}
.box3c{
    border: 2px solid whitesmoke;
    padding: 12px 35px;
}
.box4c{
    border: 2px solid whitesmoke;
    padding: 12px 35px;
}
.box5c{
    border: 2px solid whitesmoke;
    padding: 12px 35px;
}
/* footer */
.footer {
  background: #2b2b2b;
  color: #bbb;
  padding: 60px 0 30px;
  font-size: 14px;
  margin-top: 52px;
  padding: 20px 20px 0 20px
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  
}

.footer-col {
  width: 23%;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-col p {
  color: #aaa;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f15a29;
}

.strem-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.flickr-grid img {
  width: 100%;
  border-radius: 3px;
}

.copyright {
  text-align: start;
  margin-top: 40px;
  
  padding-top: 5px;
  color: #888;
  align-items: center;
  
}
.copyright{
  padding-left: 30px;
}
.hero-img{
  width: 100px;
  height: 100px;
}
.icons{
  position: absolute;
}
.client{
  margin-left: 30px;
}
.text-button{
  display: flex;
  justify-content:space-between;
}
.text-butto a{
  padding-right: 30px;
}
.fa-brands {
  font-size: 30px;
  
}
.fa-brands:hover{
  color: white;
  background-color: cornflowerblue;
}

.footer-page {
  background-color: #2b2b2b;
  color: white;
  display: flex;
  justify-content: space-between; /* copyright left, links right */
  align-items: center;
  padding: 15px 40px; /* space around content */
  font-family: "Poppins", sans-serif;
  
}

.footer-page {
  background-color: black;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  font-family: "Poppins", sans-serif;
  border-top: 2px solid #444; /* separator line */
  box-sizing: border-box;
  width: 100%;
  border-bottom: 2px solid #444;
  height: auto;
}

/* ✅ Remove default margins that cause extra lines/spaces */
.footer-page p,
.footer-page ul {
  margin: 0;
  padding: 0;
}

.footer-page .copyright {
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #f15a29;
}


.box1-f{
    border: 2px solid #676565;;
    height: 61px;
     height:60px;
    width: 60px;
}
.box1-f img {
   
      height: 100%;
    width: 100%;
}
.box2-f{
    border: 2px solid #676565;
   
    height:60px;
    width: 60px;
}
.box2-f img {
    
        height: 100%;
    width: 100%;
}

.box3-f{
    border: 2px solid #676565;
     height:60px;
    width: 60px;
}
.box3-f img {
    
      height: 100%;
    width: 100%;
}
.box4-f{
    
   height:60px;
    width: 60px;
}
.box4-f img {
    border: 2px solid #676565;
     height: 100%;
    width: 100%;
}
.box5-f{
    
      height:60px;
    width: 60px;
}
.box5-f img {
   border: 2px solid #676565;
    height: 100%;
    width: 100%;
}
.box6-f{
    
      height:60px;
    width: 60px;
}
.box6-f img {
    border: 2px solid #676565;
    height: 100%;
    width: 100%;
}
.box7-f{
    
    height:60px;
    width: 60px;
}
.box7-f img {
    border: 2px solid #676565;
      height: 100%;
    width: 100%;
}
.box8-f{
   
     height:60px;
    width: 60px;
}
.box8-f img {
    border: 2px solid #676565;;
    height: 100%;
    width: 100%;
}


.footer-col span {
    font-size: 15px;
    color: white;
    font-weight: 400;
}
.icon{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
    color: darkgray;
    border-top: 2px solid whitesmoke;
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid whitesmoke;
    gap: 10px;
    margin-left: 5px;
    margin-right: 5px;
}
.facebook{
    display: flex;
    justify-content: start;
    align-items: center;
    
    gap: 10px;
}
/* resposive */
/* ===========================================
   📱 MOBILE 0–600px
=========================================== */
@media (max-width: 600px) {

    /* NAVBAR */
    .navbar {
        
        padding: 15px;
        text-align: center;
    }
    .navbar a{
        font-size: 22px;
    }
    .about-section a {
        font-size: 22px;
    }
    .navbar ul {
        flex-direction: column;
        gap: 10px;
    }
    .navbar ul li {
        padding: 12px 0;
        font-size: 13px;
    }
    .facebook{
        justify-content: center;
    }

    /* ABOUT SECTION */
    .about-section {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* MAIN CONTENT (ABOUT PAGE) */
    .main-box {
        flex-direction: column;
        padding: 0 15px;
    }

    .left-side-content,
    .right-side-content {
        width: 100%;
    }
    .copyright{
        font-size: 8px;
    }
    .footer-links{
        font-size: 8px;
    }

    .image-bullets {
        flex-direction: column;
        align-items: center;
    }

    .image-bullets img {
        width: 100%;
    }
    .strem-box{
        display: grid;
        grid-template-columns: repeat(4,0fr);
        justify-content: center;
        padding-bottom: 13px;
    }

    /* STAGES */
    .stages {
        flex-direction: column;
        text-align: center;
    }

    /* BLOG GRID */
    .blog-grid-container {
        grid-template-columns: 1fr;
    }

    /* CLIENT LOGOS */
    .client-box {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .client-box div {
        width: 40%;
        text-align: center;
    }

    /* FOOTER */
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
    .footer-col {
        width: 100%;
    }

    /* BOTTOM FOOTER */
    .footer-page {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ===========================================
   📲 TABLET 600px – 900px
=========================================== */
@media (max-width: 730px) {
    .navbar{
        display: flex;
        justify-content: space-between;
        align-items: center;


    }
    .navbar ul li{
        display: none;
    }
    #hem{
        display: block;
    }
    .copyright{
        font-size: 8px;
        
    }
    .footer-links a{
        font-size: 8px;
    }
    .footer{
        padding-bottom: 10px;
    }
    
}




    

@media (min-width: 600px) and (max-width: 900px) {

    /* NAVBAR */
    .navbar {
        padding: 20px;
        gap: 5px;
    }
    .navbar ul li {
        padding: 20px 10px;
        font-size: 13px;

       
    }
    
    .navbar a{
        font-size: 22px;
    }

    /* MAIN CONTENT */
    .main-box {
        flex-direction: column;
    }

    .left-side-content,
    .right-side-content {
        width: 100%;
    }

    .image-bullets img {
        width: 270px;
    }

    /* STAGES */
    .stages {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 20px;
    }

    /* BLOG GRID */
    .blog-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CLIENT LOGOS */
    .client-box {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    /* FOOTER GRID */
    .footer-grid {
        flex-wrap: wrap;
    }
    .footer-col {
        width: 48%;
    }
}

/* ===========================================
   💻 SMALL LAPTOP 900px – 1200px
=========================================== */
@media (min-width: 900px) and (max-width: 1200px) {

    .navbar ul li {
        padding: 25px 20px;
    }

    .left-side-content {
        width: 60%;
    }

    .right-side-content {
        width: 40%;
    }

    .blog-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .client-box {
        gap: 20px;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-col {
        width: 100%;
    }
    .footer{
        width: 100%;
    }
    
}
@media (max-width:480px) {
    .footer{
        padding-bottom: 10px;
        
        
       
    }
    
}
    
    
    



