/*
Theme Name: ADS Environmental Theme
Author: Jonas Tan Xue Wei
Description: A website for ADS Environmental Services
Version: 1.0
*/

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Prevents that side-scrolling "break" */
}
html{
    scroll-behavior: smooth;
}
* {
    font-family: Arial, Helvetica, sans-serif;
}

body{
    margin: 0;
    background-color:  #013744;
    font-family: Inter;
    overflow-x: hidden !important;
}
.adsLogo{
    width: 80px;
    height: 70px;
    margin-bottom: 30px;
}
.homePageNavBar{
    display: flex;
    justify-content: space-between;
    margin: 0px 80px;
    padding-left: 20px;
    padding-top: 20px
}
.listNavBar{
    display: flex;
    align-items: center;
    gap: 0px;
    color: #FFF;
    font-size: large;


}


.heroImage{
    width: 100vw;
    height: 80vh;
    background-color: rgb(168, 168, 168);
    position: relative;
    background-image: url("assets/boatHero.jpg");
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    mask-image: linear-gradient(
        to bottom,
        black 35%,
        transparent 100%
    );
}
.textBlock{
    display: inline-block;
    position: absolute;
    bottom: 150px;
    background: rgba(1, 55, 68, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    margin-left: 50px;
}
.heroText{
    font-size: 3rem;
    color: white;
    font-weight: bold;
    margin-left: 10px;
    margin-bottom: 0px;
    margin-right: 10px;
}
.heroTextDetails{
    margin-left: 10px;
    margin-right: 10px;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-align: center;

}

.workedWithSection {
    background-color: #013744; 
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 1) 15%, 
        rgba(0, 0, 0, 1) 85%, 
        rgba(0, 0, 0, 0) 100%
    ),
     linear-gradient(
        to bottom,
        black 50%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0));
}

.logos{
    display: inline-flex;
    gap: 70px;

    justify-content: space-evenly;
    align-items: center;

}
.logosParentContainer::before{
    content:"";
    position: absolute;
    width:100%;
    height:1px;
    background: linear-gradient(to right, transparent, #0ADD08, transparent);
    top:0;
    left:0;
    opacity:0.3;
}
.logosParentContainer:after{
    content:"";
    position:absolute;
    width: 100%;
    height:1px;
    background: linear-gradient(to right, transparent, #0ADD08, transparent);
    opacity:0.3;


}
.logosParentContainer{
    position: relative;


}
.logoWrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    height:120px;
    width: 300px;
    padding: 20px;


}

.logoClientHero{
    max-width: 100%;  
    max-height: 100%;
    object-fit: contain; 
    opacity: 0.65;     
    transition: opacity 0.3s ease, transform 0.3s ease;
    backface-visibility: hidden;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;

}
.logoClientHero:hover {
    opacity: 1;
}
/*Logo*/
.chevron{
    width: 80px;
    filter: grayscale(100%) brightness(100) ;
}
.salmonTasmania{
    width:200px;
    filter: grayscale(100%) invert(1);
}
.genomar{
    width:150px;
    filter: grayscale(100%) brightness(100) ;
}
.nissui{
    width: 150px;
    filter: grayscale(100%) brightness(100) ;
}
.petronas{
    width:100px;
    filter: grayscale(100%) brightness(100) ;
}
.sabahports{
    width:250px;
    filter: grayscale(100%) brightness(2.5) ;
}
.sanford{
    width:250px;
    transform: scale(1.3);
    filter: grayscale(100%) brightness(100) ;
}
.shell{
    width:100px;
    filter: grayscale(100%) brightness(2) ;
}
.totalSE{
    width:80px;
    filter: grayscale(100%) brightness(100) ;
}

.tassal{
    width:150px;
    filter: grayscale(100%) brightness(1.5) ;
}
@keyframes infiniteScrollLeft {
    0%{
        transform: translateX(0%);
    
    }
    100%{
        transform: translateX(-50%);
    }
}
.animateScrollLeft{
    animation: infiniteScrollLeft 40s linear infinite;
}
.whatWeOfferText{
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
    margin:50px 0px 10px 30px
}
.servicesText{
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
    margin: 80px 0px 30px 30px;
}
.workedWithText{
    font-size: 3rem;
    color:#fff;
    text-align: center;
    font-weight:bold;
}
.line{
    width: 900px;
    height: 2px;
    background-color: #ddd;
    border-radius: 10px;

}
.threeServiceContainers{
    width: 100vw;
    display: flex;
    gap: 15px;
    margin-top: 0px;
    justify-content: center;
    

}
.servicesSection{
    background-image: url("assets/imgExample.jpg");
    background-size: cover;
    background-position-y: -110px;
    mask-image: linear-gradient(
        to bottom, 
        transparent 0%, 
        black 30%, 
        black 70%, 
        transparent 100%
    );
    z-index: 1;
    padding: 50px 5px;
    opacity: 0.95;
    position: relative;
}
.servicesSection::before{
    content:"";
    position: absolute;
    width:100%;
    height:100%;
    inset:0;
    background-color: rgba(0,0,0,0.5);
    z-index:-1;

}
.containerService{
    width: 330px;
    background-color: #ccc;
    border-radius: 10px;
    background: rgba(1, 55, 68, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    margin-bottom: 30px;
    transition: transform 0.3s;
    padding:10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border:1px solid rgba(255,255,255,0.2);
}
.containerService:hover{
    transform: scale(1.05);
    cursor: pointer;
}
.fontAwesome{
    display: block;
    margin: 30px auto;
    width: fit-content;

    
}
.fa-handshake, .fa-tree, .fa-wave{
    font-size: 4rem;
    color:#0cdd0899;

}
.serviceName{
    font-weight: bold;
    font-size: 2rem;
    display: block;
    margin: 0 auto;
    width: fit-content;
    color:#fff;
    padding-top:20px;
    text-align: center;
}
.serviceDesc{
    padding:10px;
    padding-top: 0px;
    display: block;
    margin: 20px auto;
    width: fit-content;
    color:#fff;
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
}
.lastSection{
    position: relative;  
    background-color: #013744;
    overflow: hidden;
}
.lastSection::before,.workedWithSection::before,.homePageNavBar::before,.footerSection::before,.mobileList::before,.serviceCards::before, .portfolioCards::before,.researchCards::before,.aboutUsSections::before{
    content:'';
    position: absolute;
    inset:0;
    opacity:0.17;
    background-size:cover ;
    -webkit-mask-image:url('assets/image.png');
    mask-image: url('assets/image.png');
    mask-position: center;
    -webkit-mask-mode: luminance;
    mask-mode: luminance;
    background-color: #39FF14;
    background: linear-gradient(#39FF14, #39FF14) content-box;
    pointer-events: none;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    mask-size: 2560px auto; 
    mask-repeat: repeat;
    mask-size: 800px; 
    

    
}

.cardSection{
    width:85vw;
    height:400px;
    margin:20px auto;
    display: flex;
    gap:40px;
    align-items: center;
    padding:10px;
    color:white;
}
.leftSpineOfLastSection {
    flex: 1;                /* Takes up exactly half the space */
}

.rightSpineOfLastSection {
    flex: 1;               
    display: flex;
    justify-content: center; 
}
.buttonLearnMore{
    background: rgba(10, 221, 8, 0.1); 
    border: 1px solid #0ADD08;
    color: #FFF;
    padding: 10px 25px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
    border-radius: 10px;
}
.buttonLearnMore:hover {
    background: #0ADD08;
    color: #013744; /* Flips to brand blue on hover */
    box-shadow: 0 0 15px rgba(10, 221, 8, 0.5); 
    cursor: pointer;
}
.textLastSection{
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 0;
    position: relative;
    flex: 1;
}
.imgResearch{
    height:auto;
    width: 100%;
    max-width: 500px;

    box-shadow: 0 10px 30px rgba(10, 221, 8, 0.2);
    aspect-ratio: 16/9;
    object-fit: cover;
    margin-top: 20px;
    display: block;
}
.textDetailLastSection{
    line-height: 1.6;
    flex: 1;
    font-size: 1.2rem;

}
.textLastSection:before{
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    width: 5px;
    height: 100%;

    background-color: #0ADD08;
}
.teamImage{
    background-image: url("assets/teamImage2-Edit.jpg");
    width:100%;
    height:60vh;
    background-size: cover;
    background-position-y: -150px;
    position: relative;
    mask-image: linear-gradient(
        to top,
        black 30%,
        transparent 100%
    );
}
.teamImage::before{
    content: "";
    position: absolute;
    background: radial-gradient(circle, rgba(0,43,43,0.6) 0%, rgba(0,43,43,0.9) 100%);
    inset:0;
    pointer-events: none;
}
.aboutUsSection{
    position: relative;
    mask-image: linear-gradient(
        to bottom,
        black 70%,
        transparent 100%
    );;
}
.aboutUsDetails{
    position: absolute;
    top:45%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    max-width: 800px;
    text-align: center;
}
.abtUsTitle{
    color: white;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.abtUsText{
    font-size: 1.2rem;
    color: white;
    text-align: center;
    margin: 0px auto;
    width: 80%;
    max-width: 800px;
    display: block;
}
.buttonMeetTeam{
    background: rgba(10, 221, 8, 0.1); 
    border: 1px solid #0ADD08;
    color: #FFF;
    padding: 10px 35px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
    border-radius: 10px;  
    margin-top: 20px;
    display: inline-block;

}
.buttonMeetTeam:hover {
    background: #0ADD08;
    color: #013744; 
    box-shadow: 0 0 15px rgba(10, 221, 8, 0.5); 
    cursor: pointer;
}
.footerDetails{
    height:50vh;
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 8% 0px 8%;
    margin-top: 70px;
}
.footerSection{
    position: relative;
    
}
.addressFooter{
    color: #fff;
    width:300px;
    line-height: 1.6;
    margin-top: 20px;
}
.titleFooter{
    color: #fff;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 0;

}
.adsLogoFooter{
    width: 120px;
    height: 80px;

}
.footerSection1{
    display: flex;
    gap:30px;
    flex:2;
    justify-content: space-around;

}
.serviceFooterHeader,.quickLinksHeader{
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
}
.middleSection,.rightSection{
    display: flex;
    flex-direction: column;
    gap:12px;


}

.leftSection{
    flex:1.5;
    max-width: 400px;
}
a{
    color: #fff;
    text-decoration: none;
    padding: 10px 0px;
    position: relative; 
    display: inline-block;
    z-index: 1; /* Keeps text on top */
    transition: color 0.4s;
}
.headerList{
    color: #fff;
    text-decoration: none;
    padding: 10px 25px;
    position: relative; 
    display: inline-block;
    z-index: 1; /* Keeps text on top */
    transition: color 0.4s;
}

a:hover, .headerList:hover {
    color: #fff; /* Keeps text bright white */
}


.mobileIconList{
    cursor: pointer;
    gap: 5px;
    flex-direction: column;
    display: none;
}
.mobileIconCross{
    width:30px;
    height:3px;
    background-color: white;
    position: relative;
    transform: rotate(45deg);
    display: none;
    margin-right: 20px;
}
.mobileIconCross::before{
    content:"";
    position: absolute;
    width:30px;
    height:3px;
    background-color: white;
    transform: rotate(90deg);
}
.mobileIconList span{
    width:30px;
    height:3px;
    background-color: white;
}
.mobileList{
    position: fixed; 
    top: 100px;
    height: 100vh;
    left: 0  !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    gap: 30px;
    font-size: 1.5rem;   
    z-index: 999;
    background-color: #013744;
    font-weight: 500;
}
.mobileList a{
    text-align: center;
    margin-right: auto;
    width: fit-content;
    display: block;

}
.mobileList.active,.mobileIconCross.active{
    display: flex;
}
.mobileList{
    display: none;
}
.displayNone{
    display: none !important;
}

/*Mobile View*/
@media only screen and (max-width: 768px) {

    .textBlock{
        height:50vh;
        width:90vw;
        display: block;
        margin-left: 20px;
        /*Depending on how long this text is, I might have to move textBlock up*/

    }
    .heroText{
        font-size: 2.5rem;
        width: 50vw;

    }
    .heroTextDetails{
        width: 95%;



    }
    .workedWithText{
        font-size: 3rem;
    }
    .threeServiceContainers{
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        box-sizing: border-box;
        gap: 25px;

    }

    .containerService{
        width: 80vw;
        margin: 0 auto;
    }
    .servicesSection{
        mask-image: linear-gradient(
        to bottom, 
        transparent 0%, 
        black 15%, 
        black 90%, 
        transparent 100%
    );
    }
    .serviceName{
        padding-top:20px;
        font-size: 1.4rem;
        text-align: center;
    }
    .serviceDesc{
        line-height: 1.6;
        text-align: center;
    }
    .cardSection{
        display:flex;
        flex-direction: column;
        margin-bottom: 650px;
        padding: 0 20px;
    }
    .line{
        width: 90vw;
        margin-left:0px;
    }
    .whatWeOfferText{
        margin: 0 10px;
    }
    .textLastSection{
        margin-top: 0;
        margin-bottom: 10px;
    }
    .textDetailLastSection{
        margin-bottom: 20px;
        line-height: 1.6;
        font-size: 1.3rem;
    }
    .imgResearch{
        height:45vh;
        width: 100%;
        margin-bottom: 25px;

    }
    #leftSpine1{order: 2;}
    #rightSpine1{order: 1;}
    #cardSection1{
        margin-top: 100px;
    }
    .buttonLearnMore{
        width: fit-content;
    }
    .aboutUsSection{
        mask-image: linear-gradient(
        to bottom, 
        transparent 0%, 
        black 10%, 
        black 90%, 
        transparent 100%
        )
    }
    .footerDetails,.footerSection1{
        display: flex;
        flex-direction: column;
    }
    /*Contact Us Mobile Page*/
    .contactUsTitle{
        margin-left: 20px !important;
        width: 90vw !important;
    }
    .contactUsMain{
        background-size: cover;

    
    }
    .lineContactUs{
        margin-left: 20px !important;
        width: 70% !important;
    }
    .visitOurExpertsTodayTxt{
        margin-left: 20px !important;
    }
    .fullSpine{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 !important;
    }
    iframe{
        margin: 0 auto !important;
        width: 90%;
        display: block !important;
    }
    .leftSpineOfContactUs, .rightSpineOfContactUs{
        flex: 1;
        max-width: 100% !important;
    }
    .adsHQDetails,.adsKLDetails{
        width: 70% !important;
        margin-left:20px !important;
    }
    .backgroundOfForm{
        width: 75% !important;
        margin-left: 20px !important;
    }
    input, textarea{
        width: 100% !important;
    }
    .formStyle{
        gap: 15px !important;;
    }
    .submitBtn{
        width: 40% !important;
    }
    /*Services Mobile Page*/
    .heroTextServices{
        font-size: 5rem !important;
    }
    .serviceCards{
        width: 80vw !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap:20px !important; 
        padding: 0 !important;

    }
    .line{
        width: 50vw !important;

        margin-right: 0 !important;
    }
    .serviceCard{
        padding: 10px 20px !important;
    }
    .serviceTitle{
        font-size: 1.7rem !important;
    }
    .serviceCardContainer{
        display: flex !important;
        flex-direction: column !important;
        gap:20px !important;
    }
    .imgService{
        width: 100% !important;
        height:100% !important;
        max-width: 100% !important;
    }
    .buttonLearnMore{
        text-align:center !important ;
    }
    .serviceCards .serviceCardContainer:nth-of-type(2n){
        flex-direction: column !important;
    }
    .leftSpineOfServiceCard {
        order: 1 !important;
    }
    
    .rightSpineOfServiceCard {
        order: 2 !important;
    }
    /*Research Mobile Page*/
    .researchCards{
        padding: 10px 20px !important;
    }
    .researchCard{
    flex-direction: column !important;

    }
    .researchCard{
        padding: 15px 20px !important;
 
    }
    .researchImage{
        width: 100% !important;
        max-width: 100% !important;
        height: 30% !important;
        
    }
    .doiLink{
        word-break: break-all !important; 
        display: block !important;
        width: 100% !important;
    }
    .titleResearch{
        font-size: 1.75rem !important;
    }
    .authors{
        line-height: 1.6;
    }
    .inReviewCards,.currentResearchContainer,.currentResearch{
        padding: 10px 20px !important;
        line-height: 1.6 !important;
    }
    .sectionResearchTitle{
        font-size: 1.7rem !important;
    }
    .currentResearch ul li{
        padding-left: 10px;
    }
    /*Portfolio Mobile Page*/
    .portfolioCards{
        padding: 10px 20px !important;
    }
    .portfolioCard{
        padding: 30px !important;
    }
    .imagePortfolio{
        width: 100% !important;
        max-width: 100% !important;
        height: 30% !important;
    }
    .portfolioCard{
        flex-direction: column !important;
    }
    .title{
        line-height: normal;
    }
    .portfolioCard:nth-of-type(2n){
        flex-direction: column;
    }
    .leftSpineOfPortfolioCard {
        order: 1 !important;
    }
    
    .rightSpineOfPortfolioCard {
        order: 2 !important;
    }
    .ctaTitle{
        text-align: center;
    }
    /*About Us Mobile Page*/


    .missionTitle,.experienceTitle,.meetTheTeamTitle{
        font-size: 1.75rem !important;
        padding: 10px 20px !important;
    }
    .missionCard, .experienceCard{
        margin:20px 10px 0px 10px !important ;
        padding: 10px !important;
        text-align: center;
    }
    .meetTheTeamCard{
        display: flex;
        flex-direction: column;
    }
    .profileEmployee{
        width: 100% !important;
        height:100% !important;
        max-width: 100% !important;
    }
    .meetTheTeamCards{
        padding: 10px 20px !important;

    }
    .meetTheTeamCard:nth-of-type(2n){
        display: flex;
        flex-direction: column !important;
    }
    .textDetailLastSection.collapsed {
        -webkit-line-clamp: unset !important;
    }


}


.toggleTextBtn {
    background: none;
    border: none;
    color: #39FF14; /* Using your neon green theme color */
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    margin-bottom: 15px;
    font-size: 1rem;
    display: block;
}
@media only screen and (max-width: 1069px){
    .homePageNavBar{
        margin-left: 0;
        margin-right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 5%;
        
    }
    .mobileList{
        display: none;
    }
    .adsLogo{
        width: 80px;
        height:50px;
        margin-top: 20px;
    }
    .mobileIconList{
        display: flex;
        margin-right: 20px;

    }
    .listNavBar{
        display: none;
    }
    .researchTextWrapper.collapsed {
        display: block; 
        -webkit-line-clamp: unset; 
        overflow: visible;
    }
        
}
.researchTextWrapper.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 4; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}
.researchImageWrapper {
    position: relative;
    display: inline-block;
}

.researchTag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    color: #1a1a1a;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}


/*Contact Us Page Below*/
.contactUsMain{

    color:#fff;

}
.contactUsSection{
    background-image: url("assets/contactUsHeroImage.jpg");
    background-size: cover  ;
    background-position: center;
}


.contactUsTitle{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 3rem;
    width: 30vw;
    font-weight: bold;
    position: relative;
    top:30px;
    margin-left: 90px;

}
.lineContactUs{
    width: 900px;
    height: 2px;
    background-color: #ddd;
    margin-left: 90px;

}
.visitOurExpertsTodayTxt{
    margin-top: 30px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-left: 90px;

}

.fa-envelope,.fa-phone{
    font-size: 1.3rem;
}
.adsHQDetails,.adsKLDetails,.backgroundOfForm{
    width: 600px;
    margin: 40px 0px 40px 0px;
    background-color: #ccc;
    border-radius: 10px;
    background: rgba(1, 55, 68, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: transform 0.3s;
    padding:40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border:1px solid rgba(255,255,255,0.2);
    border-left: 4px solid #0ADD08; 
}
.adsHQTxt,.adsKLTxt{
    text-decoration-line: underline;
    font-size: 1.8rem;
    width: fit-content;
    margin-bottom: 0px;

}
.icnPhoneDetail{
    display: flex;
    align-items: center;
    gap:15px;
}

.adsHQAddress{
    line-height: 1.6;
    font-size: 1.1;
}
.overlayService{
    background: rgba(0, 0, 0, 0.5);
}
textarea{
    resize: none;
    height:200px;
}
input,textarea{
    width:400px;
    box-sizing: border-box;
}
.backgroundOfForm{
    width:500px;
    height:700px;
    margin-top: 0;
}
.fullSpine{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 0 90px;
    margin-top: 30px;
}
.formDetails{
    display: flex;
    flex-direction: column;
    gap:25px;
    margin-top: 40px;
    
}
.formStyle{
    display: flex;
    flex-direction: column;
    gap:10px;
}
.leftSpineOfContactUs,.rightSpineOfContactUs{
    flex:1;
    max-width: 45%;
}
.rightSpineOfContactUs{
    padding-right: 20px;
}
.aptTxt{
    margin-top: 10px;
    margin-bottom:20px ;
    font-style: italic;
    opacity: 0.7;
}
.txtPhone{
    font-size: 1.1rem;
}
.formStyle{
    display: grid;
    gap:5px;
}
label{
    font-size: 1.1rem;
}
input, textarea{
    padding: 15px;
    border-radius: 10px;
    font-size: 15px;
    font-family: inter;

    box-sizing: border-box;

}
.errorLine{
    border: 2px solid #eb1000; /*If this is in error*/
    
}

input:focus, textarea:focus{
    outline: none;
}
.submitBtn{
    margin-top: 20px;
    width: 25%;
    background-color: #0ADD08;
    color: #fff;
    border: 0;
}
.submitBtn:hover{
    cursor: pointer;
}
.errorFormMessage{
    color: #eb1000;
    margin: 0;
    display: none;
}
/*Services Page*/
.heroImageServices{
    background-size: cover;
    background-image: url("assets/Zone1-Channel.jpg");
    background-position: center;
    width: 100%;
    height: 83vh;
    position: relative;
    display: flex;         
    justify-content: center;  
    align-items: center;     
    mask-image: linear-gradient(
        to bottom,
        black 35%,
        transparent 100%
    );

}
.heroImageServices::before{
    content: "";
    position: absolute;
    background-color: rgba(0,0,0,0.5);
    inset: 0;
    z-index: 1;
}
.heroTextServices {
    position: relative; 
    z-index: 2;
    color: #ffffff;
    font-size: 9rem;
    margin: 0 auto;
    width: fit-content;

}

.serviceCards{
    padding-left: 90px;
    padding-right: 90px;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    gap:40px;
    padding-bottom: 20px;
}

.serviceCard{
    background: rgba(1, 55, 68, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(5px);
    padding:50px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    line-height: 1.6;
}
.serviceCardContainer{
    display: flex;
    gap:80px;
    margin-top: 50px;
}
.imgService{
    width: 40vw;
    height: 40vw;
    object-fit: cover; 
    object-position: center;
    border-radius: 10px;
}

.rightSpineOfServiceCard{
    font-size: 1.2rem;
}
/*Portfolio*/
.heroImagePortfolio{
    background-size: cover;
    background-image: url("assets/25022026-10.jpg");
    background-position: center;
    width: 100%;
    height: 83vh;
    position: relative;
    display: flex;         
    justify-content: center;  
    align-items: center;     
    mask-image: linear-gradient(
        to bottom,
        black 35%,
        transparent 100%
    );
}
.heroImagePortfolio::before{
    content: "";
    position: absolute;
    background-color: rgba(0,0,0,0.5);
    inset: 0;
    z-index: 1;
}
.portfolioCard{
    display: flex;
    gap:60px;
    background: rgba(1, 55, 68, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(5px);
    padding:50px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    line-height: 1.6;
}
.rightSpineOfPortfolioCard{
    color: white;
    font-size: 1.2rem;
}
.title{
    font-weight: bold;
    font-size: 1.8rem;
    margin-top: 0;
}
.portfolioCards{
    padding-left: 90px;
    padding-right: 90px;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    gap:40px;
    padding-bottom: 20px;
}
.imagePortfolio{
    object-fit: cover;
    border-radius: 10px;
    width: 40vw;
    height:40vw;
    object-position: center;
}
.portfolioFilters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 30px 50px;
}

.filterBtn {
    padding: 8px 20px;
    border: 2px solid #2a7a5a;
    background: transparent;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.filterBtn:hover,
.filterBtn.active {
    background: #2a7a5a;
    color: white;
}

.serviceTag {
    display: inline-block;
    background: rgba(42, 122, 90, 0.25);
    border: 1px solid rgba(42, 122, 90, 0.6);
    color: #6fd9a6;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.portfolioCard.hidden {
    display: none;
}
.ctaSection{
    background-size: cover;
    background-image: url("assets/portfolioCTA.jpg");
    background-position: center;
    width: 100%;
    height: 83vh;
    position: relative;
    display: flex;         
    flex-direction: column;
    justify-content: center;  
    align-items: center;     
        mask-image: linear-gradient(
        to bottom, 
        transparent 0%, 
        black 10%, 
        black 75%, 
        transparent 100%
        )
    
}
.details{
    font-size: 1rem;
}
.ctaSection::before{
    content: "";
    position: absolute;
    background-color: rgba(0,0,0,0.5);
    inset: 0;
    z-index: 1;
}
.ctaButton{
    background: rgba(10, 221, 8, 0.1); 
    border: 1px solid #0ADD08;
    color: #FFF;
    padding: 10px 35px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
    border-radius: 10px;  
    margin-top: 20px;
    display: inline-block;
    z-index: 10;
}
.ctaButton:hover{
    background: #0ADD08;
    color: #013744; 
    box-shadow: 0 0 15px rgba(10, 221, 8, 0.5); 
    cursor: pointer;
}
.ctaTitle{
    color: #fff;
    z-index: 10;
    margin-bottom: 0;
    font-size: 3rem;
    font-weight: bold;
}
/*Research Page*/
.heroImageResearch{
    background-size: cover;
    background-image: url("assets/IMG_20220114_095300.jpg");
    background-position: center;
    width: 100%;
    height: 83vh;
    position: relative;
    display: flex;         
    justify-content: center;  
    align-items: center;     
    mask-image: linear-gradient(
        to bottom,
        black 35%,
        transparent 100%
    );
}
.heroImageResearch:before{
    content: "";
    position: absolute;
    background-color: rgba(0,0,0,0.5);
    inset: 0;
    z-index: 1;

}
.researchCard{
    display: flex;
    gap:35px;
    color: rgba(255, 255, 255, 0.9);    
    background: rgba(1, 55, 68, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(5px);
    padding:50px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius: 10px;

}
.researchCards{
    padding-left: 90px;
    padding-right: 90px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap:40px;
    padding-bottom: 20px;
}
.titleResearch{
    font-size: 2rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0;
}
.sectionResearchTitle{
    font-size: 3rem; 
    color:white; 
    margin-bottom: 20px;
}
.researchImage{
    width: 20vw;
    height:20vw;
    border-radius: 10px;
    background-size: cover;
}
.researchTexts,.researchTextsExtra{
    line-height: 1.6;

}
.btnDownloadPaper{
    border: 1px solid #0ADD08;
    color: #FFF;
    padding: 10px 35px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
    border-radius: 10px;  
    margin-top: 20px;
    display: inline-block; 
}

.btnViewFullPaper{
    background: #077e05;
    border: 1px solid #0ADD08;
    color: #FFF;
    text-shadow: 0px 0px 8px #000; 
    padding: 10px 35px;
    backdrop-filter: blur(5px);
    border-radius: 10px;  
    margin-top: 20px;
    display: inline-block;  
    transition: 0.3s;

}
.btnViewFullPaper:hover,.btnDownloadPaper:hover{
    cursor: pointer;
    background-color: #0ADD08;
    color: #000;
}
.btnViewFullPaper:hover{
    text-shadow: none;
}
.buttons{
    display: flex;
    gap:20px;
}
.authors{
    color: rgba(255, 255, 255, 0.8);
}
.journalInfo{
    font-style: italic;
    margin-bottom: 0;
}
.doiLink{
    margin-top: 5px;

}
.inReviewCards,.currentResearchContainer{
    color: #fff;
    padding-left: 90px;
    padding-right: 90px;
    display: flex;
    flex-direction: column;
    gap:20px;
}
.statusColor{

}
.status{
    font-size: 1.2rem;

}
.inReviewTitle{
    font-weight: bold;
    font-size: 1.3rem;
}
.inReviewCard{
    background: rgba(1, 55, 68, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(5px);
    padding:20px 30px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
}
.currentResearch{
    background: rgba(1, 55, 68, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(5px);
    padding:20px 30px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    font-size: 1.3rem;

}
/*About Us*/
.heroImageAbout{
    background-size: cover;
    background-image: url("assets/team-real.jpg");
    background-position: center;
    width: 100%;
    height: 83vh;
    position: relative;
    display: flex;         
    justify-content: center;  
    align-items: center;     
    mask-image: linear-gradient(
        to bottom,
        black 35%,
        transparent 100%
    );
}
.heroImageAbout::before{
    content: "";
    position: absolute;
    background-color: rgba(0,0,0,0.5);
    inset: 0;
    z-index: 1;
}
.profileEmployee,
.profileEmployeeInitials,
.profileEmployeeGeneric {
    width: 15vw;
    height: 15vw;
    max-width: 180px;
    max-height: 180px;
    min-width: 100px;
    min-height: 100px;
    border-radius: 10px;
    flex-shrink: 0;
}

.profileEmployee {
    object-fit: cover;
    display: block;
}

.profileEmployeeInitials,
.profileEmployeeGeneric {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 55, 68, 0.45);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
}

.profileEmployeeGeneric span {
    font-size: 3rem;
}

.profileEmployeeTextOnly {
    display: none;
}

.leftSpineOfMeetTeam {
    flex-shrink: 0;
}

.leftSpineOfMeetTeam:has(.profileEmployeeTextOnly) {
    display: none;
}

.rightSpineOfMeetTeam {
    flex: 1;
}

.meetTheTeamCards {
    padding-left: 90px;
    padding-right: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.meetTheTeamCard {
    display: flex;
    gap: 20px;
    color: #fff;
    background: rgba(1, 55, 68, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(5px);
    padding: 20px 30px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
}

.empName {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 0;
}

.empPosition,
.expertiseFocus {
    font-weight: bold;
}

.shortDescriptionOfEmployee {
    font-size: 1.2rem;
}

.meetTheTeamCard:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.aboutUsSections {
    position: relative;
}

.missionCard, 
.experienceCard, 
.meetTheTeamCard {
    color: #fff;
    background: rgba(1, 55, 68, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(5px);
    padding: 20px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.missionTitle, 
.experienceTitle, 
.meetTheTeamTitle {
    padding-left: 90px;
    padding-right: 90px;
    font-size: 3rem; 
    color: white; 
    margin-bottom: 20px;
}

.missionCard,
.experienceCard {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-left: 90px; 
    margin-right: 90px;
}