.photography-header{
    background-color:#3f4b5b;
}
.headerimage-container{
    height: fit-content;
    
    background-size: cover;
    filter: drop-shadow(10px 10px 15px black);
    
    
}
.headertext-container{
    padding-left: 40%;
    padding-right: 3%;
    padding-bottom: 50%;
    text-align: center;
    position:fixed;
    
    top:100px;
   
}
.photoheader-image{
    width:37%
}
.header-background{
    background-color: #3f4b5b  ;
    background-position: cover;
    
    
}
.medium-size{
    font-size:x-large;
}
.header-image{
    
    height:560px;
}

.navbar{
    text-transform: uppercase;
    
}

.centerimg {
    width:30%;
    background-color: #3f4b5b;
    display: block;
    margin-left: auto;
    margin-right: auto;
     
}

.welcometext{
    text-align: center;
    color: white;
    
}
.contact-background{
    
    background: url('./images/contact-image2.jpg') no-repeat center center;
    background-size: cover;
    

}
.fullopacity{
    opacity: 100%;
}

@media screen and (max-width:900px){
    .centerimg {
        width:70%;
        
        display: block;
        margin-left: auto;
        margin-right: auto;
         
    }
    .headertext-container{
        padding: 5px;
        margin-top: -10%;
        margin-left: 45%;
        width:50%;
        text-align: center;
        font-size: small;
    }
}
@media screen and (max-width:600px){
    .centerimg {
        width:70%;
        
        display: block;
        
        margin-left: auto;
        margin-right: auto;
         
    }
    .photoheader-image{
        width:50%
    }
    .navbar{
        text-transform: uppercase;
        font-size: x-small;
        
    }
    .small-icons{
        font-size: x-small;
    }
    .respond{
        font-size:medium;
    }
    .headerimage-container{
        height: 155px;
        
    
        filter: drop-shadow(10px 10px 15px black);
        
    }
    .headertext-container{
        padding: 5px;
        margin-top: -25%;
        margin-left: 50%;
        width:50%;
        text-align: center;
        font-size:x-small;
    }
}

:hover a{
    text-decoration: none;
}
.progress-container{
    height: 100px;
}
.home-background{
    background-color: #05459c;
    border-radius: 20px;
    padding-left: 5px;
    padding-right: 7px;

}


/*gallery slider*/

.slider-body {
    position: relative;
    height: 50%;
}

.slider-body {
    background: #eee;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
    width:100%
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 80px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 100px;
    height: 100px;
    background: #000;
    -webkit-box-reflect: below 1px linear-gradient(transparent, transparent,#0006);
}

.swiper-slide img {
    display: block;
    width: 100%;
}


/* Projects Section Styles */
.projects-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-weight: 500;
    color: black;
    text-transform: uppercase;
    margin-top: 4rem;
    margin-bottom: 4rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 420px;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 64px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.card-image {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 0.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.project-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.project-actions {
    display: flex;
    gap: 0.75rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.btn-demo {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.btn-demo:hover {
    background: rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
    color: #22c55e;
}

.btn-download {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.btn-download:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    color: #3b82f6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-card {
        height: 380px;
    }
    
    .card-image {
        height: 200px;
    }
    
    .project-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem 0.5rem;
    }
    
    .project-card {
        height: 360px;
        border-radius: 20px;
    }
    
    .card-content {
        padding: 1.25rem;
    }
}
/* End of Projects Section Styles */