*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
	background: #000;
    color: #fff;
}

a {
    text-decoration: none;
    color: #fff;
}

#header{
    background-attachment: fixed;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: -30px;
}
.container{
    padding: 30px;
    min-height: calc(102vh - 60px); /* adjust to your footer height */
    padding-bottom: 200px; /* adjust to your footer height */
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: #311946;    
}

.logo{
    width: 250px;
    margin-left: -25px;
    

}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 10px;
}
nav ul li a{
    color: #fff;
    background: linear-gradient(to right, #000, #000);
    box-sizing: border-box;
    background: linear-gradient(to right, #000, #000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke: 4px transparent;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #20e500;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;
}
.header-text{
    margin-top: 50%;
    font-size: 25px;
}
.header-text h1{
    font-size: 40px;
    margin-top: 30px;
}
.header-text h1 span{
    box-sizing: border-box;
    background: linear-gradient(to right, #5804c3, #5804c3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke: 6px transparent;
    color: #20e500;
    
}
/*------ proceed with content verify ---------*/

#proceed-to-content-verify {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    transition: 500ms;
}



/*------------about--------------*/
#about{
    padding: 80px 0;
    color: #ababab;
    margin: 50px auto;

}
.row{
    display: flex;
    padding: 20px 0;
    
    
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-col-1{
    flex-basis: 35%;    
}
.about-col-1 img{
    width: 100%;
    border-radius: 15px;
}
.about-col-2{
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    flex-basis: 60%;
    font-size: 14px;
    text-align: justify;
    margin: 0;
    padding: 0;
}
.about-col-2 .full-width-button{
    width: 100%;
    display: block;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
    margin: 0; /* Ensure no margin affecting the layout */
    padding: 10px; /* Optional: Add padding for better appearance */
    text-align: left; /* Align text to the left */
    /*border: none;  Remove default border */
}

/* Ensure the container fills the full width */
.col-2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    flex-basis: 60%;
    font-size: 14px;
    text-align: justify;
    margin: 0;
    padding: 0;
}

/* Ensure button takes full width */
.full-width-button {
    width: 100%;
    display: block;
    box-sizing: border-box;
    margin: 0;
    padding: 14px;
    text-align: left;
    background-color: black;
    color: #fff;
    font-size: 18px;
    border: 1px solid #17a200;
    border-radius: 6px;
    transition: background 0.5s;
    cursor: pointer;
}

/* Change background color on hover */
.full-width-button:hover {
    background: #17a200;
}

/* Customizing the default details element */
.collapsible-container {
    width: 100%;
}

/* Styling the collapsible content */
.content {
    padding: 10px;
    background-color: #000;
    border: 1px solid #17a200;
    border-top: none; /* Remove top border for seamless look */
    color: white;
}

/* Add plus (+) and minus (-) indicators using ::after */
summary::after {
    content: " +";
    float: right;
}

/* When expanded, change the indicator */
details[open] summary::after {
    content: " −";
}


.sub-title{
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}
.tab-titles{
    display: flex;
    margin: 20px 0 40px;
}
.tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: #20e500;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}
.tab-links.active-link::after{
    width: 50%;
}
.tab-contents ul li{
    list-style: none;
    margin: 10px 0;
}
.tab-contents ul li span{
    color: #17a200;
    font-size: 12px;
}
.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;
}

/*-------- fine-art -------*/

.fa-container{
    padding: 100px;
    padding-top: 0;
}
.fa-col-1{
    flex-basis: 35%;    
}
.fa-col-2{
    display: block;
    flex-basis: 60%;
    font-size: 14px;
    text-align: justify;
}

/*-------- gallery -------*/

.gallery-text{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.gallery-container{
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding: 25px 8%;
    
    padding-bottom: 200px; /* adjust to your footer height */
    
}
.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 30px;
}
.gallery img{
    width: 100%;
}


/*------ portfolio ------*/

.layer{
    width: 100%;
    height: 0%;
    background: linear-gradient(rgba(0,0,0,0.6), #5804c3);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 18px;
    transition: height 0.5s;
}


.green-background {
        background-color: #c6e2b5;
    }    

.portfolio{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 100px;
    
}
.portfolio-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  position: relative; /* for absolute positioning of indicators */
}



.portfolio-row img {
  transition: opacity 0.3s ease; /* fade-in/fade-out effect */
}

.portfolio-row img:hover {
  opacity: 0.7; /* reduce opacity on hover */
}

.portfolio-row .indicator {
  position: absolute; /* position indicator absolutely */
  top: 10px; right: 10px; /* adjust position as needed */
  background-color: #ffb4a2; /* desired indicator color */
  border-radius: 50%; /* circular indicator */
  width: 20px; height: 20px; /* adjust size as needed */
  opacity: 0; /* initially invisible */
  transition: opacity 0.3s ease; /* fade-in/fade-out effect */
}

.portfolio-row img:hover + .indicator {
  opacity: 1; /* show indicator on hover */
}

h1{
    font-size: 36px;
    font-weight: 600;
}

p{
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}




.portfolio-col{
    box-sizing: border-box;
    padding: 20px;
    display: block;
    text-decoration: none;
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden; 
}
.portfolio-col img{
    width: 100%;
    border-radius: 5px;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;   
}


.portfolio-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/*---------- scroll to top --------------*/

.scrollToTop{
    padding: 1em;
    color: #444;
    position: fixed;
    right: 0;
    bottom: 0;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    -ms-transition: -ms-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    z-index: 1;
}

.scrollToTop:hover{
    -webkit-transform:rotate(360deg);
    -moz-transform:rotate(360deg);
    -o-transform:rotate(360deg);
}


/*--------footer---------*/

.footer{
    position: fixed; /* or absolute with bottom: 0 */
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    
    text-align: center;
    padding: 25px 0;
    background: #311946;
    font-size: 12px;
}
.footer a{
    text-decoration: none;
    color: #fff
}
.footer h1{
    text-align: center;
    font-weight: 400;   
}

.footer h4{
    margin-bottom: 25px;
    margin-top: 1px;
    font-weight: 600;
}
.icons .fa{
    color: #8ed066;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}



/*------------css for small screens---------*/

nav .fa-solid{
    display: none;
    
}

@media only screen and (max-width: 600px){

.logo{
    width: 250px;
    padding-left: 10px;
}
.header-text{
    margin-top: 100%;
    font-size: 20px;
}
.header-text h1{
    font-size: 30px;
}
nav .fa-solid{
    display: block;
    font-size: 25px;
}
nav ul{
    background: #17a200;
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: 100vh;
    padding-top: 50px;
    z-index: 2;
    transition: right 0.5s;
}
nav ul li{
    display: block;
    margin: 25px;
}
nav ul li a{
    font-size: 24px;
}
nav ul .fa-solid{
    position: absolute;
    top: 25px;
    left: 25px;
    cursor: pointer;
}
.sub-title{
    font-size: 40px;
}
.about-col-1, .about-col-2{
    flex-basis: 100%;
}
.about-col-1{
    margin-bottom: 30px;
}
.about-col-2{
    font-size: 18px
}
.tab-links{
    font-size: 18px;
    margin-right: 20px;
}
.contact-left, .contact-right{
    flex-basis: 100%;
}
.footer{
    font-size: 14px;
}
    
}



