* {
    margin: 0;
    padding: 0;
    font-family: 'Cormorant Garamond', sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}

body {
    background: #080808;
    color: aliceblue;
}

#header {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(images/bg.png);
    background-size: cover;
    background-position: center;
}

.container {
    position: absolute;
    width: 100%;
    padding: 10px 10%;
    box-sizing: border-box;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    width: 300px;
    margin-top: 20px;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a {
    color: #080808;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position:absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}

.header-text {
    margin-top: 20%;
    font-size: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.header-text p {
    color: yellow; /* Set the color of the SAHYADRI STONES text to yellow */
}
.header-text h1 {
    font-size: 60px;
    margin-top: 20px;
    color: white;
}

#about {
    padding: 120px 0 40px;
    color: #ababab;
}

.row {
    display: flex;
    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{
    flex-basis: 60%;
}
.sub-title{
    font-size: 60px;
    color: #fff;
}
#Products {
    margin-top: 725px; /* Adjust the value as needed */
    padding: 50px 0;
}
.sub-title {
    font-size: 60px;
    color: #fff;
    text-align: center; /* Center the text */
    margin-bottom: 40px; /* Add some margin for better spacing */
}
.worklist {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(25% - 40px), 1fr)); /* Adjust the percentage as needed */
    grid-gap: 40px;
    margin-top: 50px;
}

.work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.work img {
    width: 100%;
    height: 250px; /* Adjust the height as needed */
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
}


.info{
    width: 100%;
    height: 0%;
    background: linear-gradient(rgba(0,0,0,0.1),#080808);
    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: 14px;
    transition: height 0.5s;
}
.info h2{
    font-weight: 500;
    margin-bottom: 20px;
}
#.work:hover img{
    transition: scale(2.1);
}
.work:hover .info{
    height: 100%;
}
.btn{
    display: block;
    margin: 75px auto;
    width: fit-content;
    border: 25px #ff004f;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    transition: background 0.5s;
}
.btn:hover{
    background: #ff004f;
}
#contact {
    padding: 50px 0;
    margin-top: 1400px;
}
.contact-left{
   flex-basis: 35%;   
}
.contact-rigth{
    flex-basis: 60%;   
 }
 .contact-left p{
    margin-top: 30px;
 }
.contact-left p i{
    color: #fff;
    margin-right: 15px;
    font-size: 25px;
}
.social-icons{
    margin-top: 30px;
}
.social-icons a{
    text-decoration: none ;
    font-size: 30px;
    margin-right: 15px;
    color: #fff;
    display: inline-block;
    transition: transform 0.5s;
}
.social-icons a:hover{
     color: #ff004f; 
     transform: translateY(-5px); 
}
.btn.btn2 {
    display: inline-block;
    background: #ff004f;
    border-radius: 8px; /* Adjust this value for a more square shape */
    padding: 15px 20px; /* Adjust these values for more padding, making it bigger */
    font-size: 18px; /* Adjust this value for a larger font size */
}
.contact-rigth form{
    width: 100%;  
}
form input, form textarea{
    width: 100% ;
    border: 0;
    outline: none;
    background: #262626;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
   
}
form .btn2{
    padding: 20px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    display: block;
    display: inline-block;
}



