<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&amp;display=swap');

:root{
    --black: #1B1722;
    --white : #F0F0F0;
    --box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
*{
    font-family: 'Montserrat', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}
html{
    font-size: 62.5%;   
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}
html::-webkit-scrollbar{
    width: .8rem;
}
html::-webkit-scrollbar-track{
    background: transparent;
}
html::-webkit-scrollbar-thumb{
    background-color: var(--white);
    border-radius: 5rem;
}

.header{
    top: 0;right: 0;left: 0;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    padding: 1.4rem 7%;
    z-index: 999;
}
.header .logoContent{
    display: flex;
    align-items: center;
}
.header .logoContent .logo img{
    height: 4rem;
}
.header .logoContent .logoName {
    color: var(--black);
    font-size: 2rem;
    font-weight: bolder;
}

.header .navbar a{
    font-size: 2rem;
    margin-right: 3rem;
    color: var(--black);
    font-weight: bold;
}
.header .navbar a:hover{
    border-bottom: .1rem solid #7213BE;
    padding-bottom: .4rem;
}
.header .icon i{
    font-size: 2rem;
    margin-right: 2rem;
    color: #7213BE;
    cursor: pointer;
}

.header .search{
    display: none;
    top: 100%;
    margin: 1.5rem 7%;
    background-color: transparent;
    width: 50%;
    right: 0;
    height: 5rem;
    position:  absolute;

}
.header .search input{
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    background-color: var(--white);
    color: var(--black);
    margin-right: 7%;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    box-shadow: var(--box-shadow);
}
.header .search.active{
    display: inline-block;
}
#menu-bar{
    display: none;
}


.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(images/theda/header.png) no-repeat;
    background-size: cover;
    background-position: center center;
}

/* Adjust for medium screens (tablets) */
@media (max-width: 768px) {
    .home {
        min-height: 50vh; /* Slightly reduce height for tablets */
        background-size: contain; /* Adjust background to fit the screen */
    }
}

/* Adjust for small screens (mobile devices) */
@media (max-width: 480px) {
    .home {
        min-height: 40vh; /* Further reduce height for mobile */
        background-size: cover; /* Ensure the background still covers the area */
        background-position: top center; /* Adjust background positioning for smaller screens */

    }
}
.home .homeContent{
    width: 50%;
    float: left;
    text-align: center;
    padding: 4rem;
}
.home .homeContent h2{
    font-size: 7rem;
    font-weight: bolder;
    margin-bottom: 2rem;
    line-height: 7rem;
    color: #F0F0F0;
    text-shadow: var(--box-shadow);
}
.home .homeContent .home-btn{
    height: 3rem;
}
.home .homeContent .home-btn button{
    font-size: 1.8rem;
    background-color: var(--black);
    color: var(--white);
    border-radius: .7rem;
    padding: .7rem 2.4rem;
    cursor: pointer;
}
.home .homeContent .home-btn button:hover{
    font-size: 2rem;
}
section{
    padding: 2rem 7%;
}
.heading{
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: var(--black);
}




/* What We Do Section */
#what-we-do {
    padding: 3em 1em;
    text-align: center;
    background-color: #fff;
    color: #000;
}

#what-we-do h2 {
    font-size: 4.5em;
    margin-bottom: 0.5em;
}

#what-we-do .highlight {
    color:  #afa013d0;
}

#what-we-do p {
    margin: 1em 0;
    font-size: 1.9em;
}

#what-we-do .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2em;
}

#what-we-do .row .col-md-2 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 2em;
    text-align: center;
}

@media (min-width: 576px) {
    #what-we-do .row .col-md-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px) {
    #what-we-do .row .col-md-2 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

@media (min-width: 992px) {
    #what-we-do .row .col-md-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/*end what we do section*/


.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 images per row */
    gap: 0px;
    max-width: 2000px;
    margin: 0px auto;
    padding: 0 0px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Hover effect */
.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(80%);
}

/* Make anchor tags cover the entire image */
.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Responsive design: Adjust to 2 images per row on medium screens */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 images per row */
    }
}

/* Adjust to 1 image per row on smaller screens */
@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr; /* 1 image per row */
    }
}


/* media queries for web responsive */

@media (max-width:991px){
    html{
        font-size: 55%;
    }
    .header{
        padding: 1.3rem 3rem;
    }
    .home .homeContent{
        margin-left: 0;
        width: 80%;
    }
}

@media (max-width:768px) {
    #menu-bar{
        display: inline-block;
    }
    .header .navbar{
        position: absolute;
        top: 100%;
        right: -100%;
        width: 25rem;
        background-color: rgba(255, 255, 255, 0.15);
        height: 18vh;
        backdrop-filter: blur(12px);
        box-shadow: -10px 0 10px rgba(173, 83, 224, 0.911);
   
    }
    .header .navbar.active{
        right: 0;
    }
    .header .navbar a{
        display: block;
        font-size: 2rem;
        color: rgb(255, 255, 255);
        margin: 1.5rem;
    }

    .home .homeContent{
        margin-left: 0;
        width: 90%;
    }
}

@media (max-width:600px){
    html{
        font-size: 50%;
    }
}



/*gallery2*/

/* Gallery */

.gallery2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 images per row */
    gap: 0px;
    max-width: 2000px;
    margin: 0px auto;
    padding: 0 0px;
}

.gallery-item2 {
    overflow: hidden;
    position: relative;
}

.gallery-item2 img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Hover effect */
.gallery-item2:hover img {
    transform: scale(1.1);
    filter: brightness(80%);
}

/* Responsive design: Adjust to 1 image per row on smaller screens */
@media (max-width: 768px) {
    .gallery2 {
        grid-template-columns: 1fr; /* 1 image per row on small screens */
    }
}



/*newsletter*/
.newsletter{
    background: url(images/theda/bg.png) no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    height: 500px;
}

/*gallery 3*/
.gallery3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 images per row */
    gap: 0px;
    max-width: 2000px;
    margin: 0px auto;
    padding: 0 0px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Hover effect */
.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(80%);
}

/* Make anchor tags cover the entire image */
.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Responsive design: Adjust to 2 images per row on medium screens */
@media (max-width: 768px) {
    .gallery3 {
        grid-template-columns: repeat(2, 1fr); /* 2 images per row */
    }
}

/* Adjust to 1 image per row on smaller screens */
@media (max-width: 480px) {
    .gallery3 {
        grid-template-columns: 1fr; /* 1 image per row */
    }
}

/**/

.footer {
    background-color: #F0F0F0;
    background-size: cover;
    background-position: center center;
}
.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
    padding: 2rem 1rem;
}
.footer .box-container .mainBox .content{
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
.footer .box-container .mainBox .content h1{
    font-size: 2rem;
    color: #7213BE;
}
.footer .box-container .mainBox p{
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #7213BE;
}
.footer .box-container .box h3{
    font-size: 2.2rem;
    color: #7213BE;
    padding: 1rem 0;
}
.footer .box-container .box a{
    display: block;
    font-size: 1.6rem;
    color: #7213BE;
    padding: 1rem 0;
}
.footer .box-container .box a i{
    padding-right: .5rem;
    color: #7213BE;
}
.footer .box-container .box a:hover i{
    padding-right: 2rem;
}

.footer .share{
    padding: 1rem 0;
    text-align: center;
}
.footer .share a{
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    font-size: 2rem;
    color: #7213BE;
    background: var(--white);
    margin: 0 .3rem;
    border-radius: 50%;

}
.footer .share a:hover{
    background: #7213BE;
    color: var(--white);
}
.footer .credit{
    font-size: 2rem;
    margin-top: 2rem;
    padding-bottom: 2rem;
    color: var(--white);;
    text-align: center;
    
}
</pre></body></html>