html {
    scroll-behavior: smooth;
}

body {
    background-color: #f0f0f0;
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 5px 0px;

}

.heading1 {
    margin: 20px auto 10px auto;
}

.sub-heading1 {
    font-size: 60px;
    margin: 20px auto;
}



.nav {
    /* background-color: #343a40; */
    background-color: #f8f9fa;
    color: #343a40;
    /* opacity: 0%; */
    padding: 0px 30px;
    display: flex;
    position: sticky;
    top: 0;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}

.nav-logo {
    float: left;
     display: none;
     justify-content: center;
     align-items:center;
    
}

.nav-logo-ctx {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.nav-logo-ctx h1 {
    margin: 5px auto;
}
.nav-logo-ctx p {
    margin: 0px auto;
}

.nav-logo img {
    /* float: left; */
    /* display: flex; */
    margin: 0px 20px;
height: 80px;
}


.nav ul {
    list-style-type: none; 
    padding: 0; 
    float: right;
    margin: 0 20px;
}

.nav ul li {
    display: inline; 
    margin-right: 20px;
}

.nav ul li a {
    color: #343a40;
     text-decoration: none;
     transition: color 0.5s ease, border-bottom 0.5s ease, transform 1s ease-in-out 2s;
} 
.nav ul li a:hover {
    color: #D980FA;
    /* text-decoration: underline; */
    border-bottom: 2px solid #D980FA;
    /* border-left: 2px solid #D980FA; */
    transform: scale(2);
   
}

.hero-sec {
    background-image: url('./images/backgrounds/bg2.jpg');
    padding: 40px;
    margin: 0px;
    height: 380px;
}

.hero-title {
    font-size:80px;
    margin-left: 10%;
}

.hero-ctx {
    text-align: center;
}

.hero-text {
    text-align: center;
    margin: 50px auto;
}

.hero-btn {
    background-color: #f0f0f0;
    border: 0.75px solid #a1a1a1;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #7e7d7d;
    margin: auto;
}

.hero-btn:hover {
    border: 1px solid #D980FA;
    color: #D980FA;
    cursor: pointer;
    background-color: #f7f7f7;
}

.gallery-sec{
    display: block;
    min-height: 500px;
    padding: 20px;
    background-color: #6F1E51;
    color: #f7f7f7;
}

.gallery-table {
    width: 800px;
    margin: auto;
}

.gallery-table {
    border: none;
    background-color: #f7f7f7;
    padding: 10px;
}

.gallery-table-body {
    /* padding: 10px; */
}

.gallery-table-body tr {
    padding: 20px;
}

.gallery-table-body tr td img {
    width: 250px;
    transition: width 2s ease, transform 2s ease-in;


}

.gallery-table-body tr td img:hover {
    width: 600px;
    transform: translate(1);
}

.gallery-sec a {
    display: block;
    margin: auto;
    text-align: center;
}

 .offer-cta {
    margin: 20px auto;
    width: 200px;
    opacity: 50%;
    cursor: pointer;
    background-color: #f0f0f0;
    border: 1px solid #D980FA;
    color: #D980FA;
    transition: opacity 0.5s ease-in, color 0.5s ease-in, background-color 0.5s ease-in ;
}

.offer-cta:hover {
    opacity: 100%;
    cursor: pointer;
    width: 50%;
    background-color: #1B1464;
    color: #FDA7DF;
}

.services-artc {
    display: block;
    min-height: 500px;
    padding: 20px;
}
.services-artc details {
    background-color: #dddddd;
    opacity: 40%;
    padding: 10px;
}

.services-artc details:hover {
    background-color: #f0f0f0;
    opacity: 100%;


}

.services-artc details summary {
    text-decoration: none;
    list-style: none;
    padding: 10px;
    /* color: #7e7d7d; */
    font-size: 20px;
    margin:10px auto;
    display: block;
    text-align: center;
    
}

.services-artc details summary:hover {
    color: #D980FA;
    cursor: pointer;
    border-left: 3px solid #D980FA;
    border-bottom: 2px solid #dddddd;
}

.services-artc details summary dl dt {
    /* color: #D980FA !important; */


}

.services-artc details summary dl dd {
    color: #7e7d7d !important;
    margin:10px auto;
}

.collage {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    justify-content: space-evenly;
}

.collage img {
    height: 480px;
    transition: transform 0.7s ease-in-out;
}
.collage img:hover {
    height: 480px;
    transform: scale(1.2);
}
