:root {

    --large-font: 'General Sans';
    --body-font: Inter, sans-serif;

    --accent-color: #22D3EE;
    --primary-colour: #2563EB;
    --grey-70-color: #AEAFB2;
    --slanted-gradient: linear-gradient(45deg,#2563EB,#22D3EE);
    --slanted-gradient-inv: linear-gradient(135deg,#2563EB,#22D3EE);
    --glass: linear-gradient(#22222225,#14141441);
    --shade-grey: #3838382c;
    --card-color: #2564eb0c;
    --blue-gradient: linear-gradient(#2564eb72,#2564eb3a);

    --my-flex-flow: row;

    --phone-width: 450px;
}

*,::after,::before {
    box-sizing: border-box;
}

/* General Utility classes starts*/
.see {
    border: rgba(255, 255, 255, 0.782) 1px solid;
}

.underline {
    text-decoration: underline;
}

.stay {
    flex-shrink:0;
}
body {
    margin: 0;
    background-image: linear-gradient(#0B0F19,#0B0F19);
    color:white;
    min-height: 100svh;
    flex-direction: column;
    align-items: center;
    
    & > div {
        width:100%;
        display: flex;
        justify-content: center;
        padding: 8rem 0;
        /* margin: 3rem 0; */
        /* border: white 1px solid; */
    }
    h2,h3,h4,h5,h6 {
        font-family: var(--large-font);
    }

    p {
        font-family: var(--body-font);
    }

    &:has(dialog[open]) {
      overflow: hidden;
    }

}


.flex {
    display: flex;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    outline: none;
    box-shadow: none;
}

button {
    border: none;
}

.sl-gradient {
    background-image: var(--slanted-gradient);
}

.sl-gradient-inv {
    background-image: var(--slanted-gradient-inv);
}

.darkgrey-shade {
    background-color: var(--shade-grey);
}

.content{
    width: 80%;
    max-width: 1200px;
}

.spacer{
    height: 80px;
    width: 100%;
}

.mini-sq {
    flex-shrink: 0;
    width: 1.2rem;
}

.center {
    align-self: center;
}

.pop {
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);

    &:hover {
        transform: scale(1.02);
    }
}

.pop-button {
   transition: transform 0.2s ease, box-shadow 0.2s ease; }

.pop-button:hover {
    transform: translateY(-2px);
  /* box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4); */
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4),
              0 10px 40px rgba(37, 99, 235, 0.2); 
}

.no-phone {
    @media (max-width: 450px ){
        display: none;
    }
}

/* General Utility classes End */

.hero {
    background-image: radial-gradient(circle at 15% 10%,#2564eb36,#2564eb20,#2564eb0e,#2564eb00,#2564eb00,#2564eb00,#2564eb00);
    background-size: 40%;
    background-repeat: no-repeat;
    padding-top: 5.5rem;
     .method {
        border: 1px solid #2563EB;
        border-radius: 1rem;
            
        .method-child {
            padding: 0.8rem;

            .method-text {
                font-size: 0.8rem;
                color: var(--grey-70-color);
            }
        }
        .method-child:nth-child(2) {
            border-left: 1px solid rgba(128, 128, 128, 0.142);
            border-right: 1px solid rgba(128, 128, 128, 0.142);
        }
    }

    .hero-cta {
        font-weight: 800;
        color: white;
        padding: 0.8rem 1.5rem;
    }

    & > div {
        margin-top: 12rem;
        gap: 2rem;
    }
}

/* p.hero-text {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.8rem);
    overflow-wrap: break-word;
    word-break: break-word; 
    font-family: var(--large-font);
    font-weight: bold;
    line-height: 1.15;
    margin-bottom: 1.2rem;
} */

p.sub-text {
    width: 65%;
    font-family: var(--body-font);
    text-align: center;
    @media (max-width:650px) {
        font-size: 0.8rem;
    }
}

.hero-actions, .contact-actions {
    gap: 2rem;
    margin: 1rem 0 3rem;

    .cta {
        /* padding:0.8rem; */
        border-radius: 1.6rem;
        cursor: pointer;
        color: white;
        font-weight: 800;
        padding: 0.8rem 1.5rem;
    }
}

.method {
    margin-top: 3rem;

    .method-child {
        flex: 1 0 0;
    }
}

.align-center {
    align-items: center;
}

nav {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: fixed;
    background-image: var(--glass);
    backdrop-filter: blur(2rem);
    z-index: 999;

    .nav-center {
        gap: 2.5rem;
        align-items: center;
        font-family: var(--body-font);
        color: var(--grey-70-color);
        font-variant: small-caps;
        font-weight: 800;
    }

    .logo {
        width: 2rem;
        height: 2rem;
        flex-shrink: 0;
        overflow: hidden;
        position: relative;
        bottom: 2px;
    }

    .logo-text {
        font-weight: 900;
        padding: 0 0.5rem;
    }

    .contact-btn {
        border-radius: 1rem;
        border: 1px solid var(--accent-color);
        font-weight: bold;
        padding: 0.5rem 0.8rem;
        background-color: #2564eb32;
        color: white;
    }
}




.high-heading {
    color: var(--accent-color);
    font-variant: small-caps;
}

.main-sub-text {
    font-weight: bold;
    font-size: 2.5rem;
    text-align: center;
}

.card-holder {
    gap: 0.8rem;
    /* flex-wrap: wrap; */
}

/* .adj-holder {
    position: relative;
}

.card-wrapper {
    position: absolute;
    bottom: 1rem;
} */

.card {
    /* border: 1px solid rgba(128, 128, 128, 0.579); */
    border: 1px solid var(--primary-colour);
    border-radius: 1.5rem;
    padding: 1rem;
    gap: 0.8rem;
    background-color: var(--card-color);
    > * {
        margin: 0px;
    }

    ul {
        font-family: var(--body-font);
        padding:1rem;
        color: rgba(255, 255, 255, 0.842);
        font-size: 0.8rem;
    }
}


.proof-card-hero {
    font-size: 3rem;
}

.proof {
    gap: 1.5rem;
}

.clients {
    margin: 1.5rem 0;
}

.gallery-intro {
    color: var(--grey-70-color);
}

.card-details {
    font-size: 0.8rem;
    color: var(--grey-70-color);
}

.card-icon {
    height: 200px;
    width: 200px;
    border-radius: 1.2rem;
    flex-shrink: 0;
    overflow: hidden;
    align-self: center;
}

.card-img {
    height: 120px;
    width: 120px;
    border-radius: 60px;
    flex-shrink: 0;
    overflow: hidden;
    /* align-self: center; */
}


.bio {
    .card-hero {
        margin-bottom:0;
    }

    .role {
        margin: 0.5rem 0;
        color: var(--accent-color); 
    }
}

.team .card {
    flex: 1 0 0;
}

.contact-section-text {
    flex: 2;

    > * {
        margin-bottom:0;
    }

    h2.main-sub-text {
        text-align: left;
        max-width: 17ch;
        line-height: 1.1;
    }

    .section-summary {
        color: var(--grey-70-color);
    }
}

.contact-section-details {
    flex: 1;
    justify-content: center;
    gap: 0.5rem;
    
}

.contact-card {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
    gap: 1.5rem
    /* flex-wrap: wrap; */
}

footer {
    width: 100%;
    justify-content: center;
    
    > .content {
    justify-content: space-between;
    }
} 


div.proof, div.team {
    /* background-image: radial-gradient(circle at 100% 0%,#2564eb00,#2564eb00,#2564eb00,#2564eb00,#2564eb0e,#2564eb20,#2564eb36); */
    background-image: radial-gradient(circle at 85% 100%,#2564eb36,#2564eb20,#2564eb0e,#2564eb00,#2564eb00,#2564eb00,#2564eb00);
    
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: right bottom;
}

div.process, div.contact {
    background-image: radial-gradient(circle at 85% 0%,#2564eb36,#2564eb20,#2564eb0e,#2564eb00,#2564eb00,#2564eb00,#2564eb00);
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: right;
}

div.team {
    /* background-image: radial-gradient(circle at 100% 0%,#2564eb00,#2564eb00,#2564eb00,#2564eb00,#2564eb0e,#2564eb20,#2564eb36); */
    background-image: radial-gradient(circle at 25% 100%,#2564eb36,#2564eb20,#2564eb0e,#2564eb00,#2564eb00,#2564eb00,#2564eb00);
    
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: left bottom;
}

div.contact {
    background-image: radial-gradient(circle at 25% 0%,#2564eb36,#2564eb20,#2564eb0e,#2564eb00,#2564eb00,#2564eb00,#2564eb00);
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: left;
}


.showcase-holder {
    width: 100%;    

    & > * {
        width:100%;
    }

    .contact-actions {
        justify-content: center;
    }

}
.map {
    /* aspect-ratio: ; */
    margin-bottom: 1rem;

}

.showcase {
    height:400px;
    gap: 0.5rem;
    
    .show-card {
        transition: flex 1s ease, background-color 0.3s ease;
        border-radius: 1rem;
        background-color: var(--card-color);
        border: 1px solid #2563EB;
    }

    .showcase-01 {
        flex:4;
        background-image: var(--blue-gradient);
    }

    .showcase-02 {
        flex:1;
    }

    .showcase-03 {
        flex:1;
    }

    .show-card:hover {
        flex:4;
        background-image: var(--blue-gradient);
    }

    &:hover .active {
        flex:1;
        background-image: linear-gradient(var(--card-color),var(--card-color));
    }

    .active:hover {
        flex:4;
        background-image: var(--blue-gradient);
    }
}

.showcase-content {
    max-width: 100%;
    max-height: 94%;
    overflow: hidden hidden;
    margin:auto;
    padding-inline:0.5rem;
}

.calendar,.carousel {
    height: 80svh;
    max-width: 1200px;
    padding: 1rem;
}

dialog::backdrop {
      background-color: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
    }

.embedded-booking {
    
    width: 1200px;

}

.gallery-open-modal {
    text-decoration: underline;
}

#gallery-modal {
    background-color: #0000006d;
    border:none;
}

.gallery-dialog-header {
    color: white;
    justify-content: space-between;


    .close-btn {
        color: white;
        cursor: pointer;
        vertical-align: middle;
        padding-top: 1.4rem;
        font-size: 1.5rem;
    }
}

.gallery-sample {
    gap: 1rem;
    .image {
        height: 10rem;
        width: 10rem;
        flex: 1 0 0;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
    }
}



/* Start of Media Queries */
@media (max-width: 450px){
        
    .showcase {
    flex-direction: column;
    height: auto;

        .showcase-content {
            height: auto;
            overflow: auto;
            max-height: fit-content;
        }

        &:hover .active {
        flex:1;
        background-image: linear-gradient(var(--card-color),var(--card-color));
        }
    }

    .services .card-holder, 
    .team .card-holder,
    .contact .contact-card
     {
        flex-direction: column;
    }

    .embedded-booking {
    width: 96svw;
    min-width: 380px;
    }

    div.hero, div.proof, div.team, div.process, div.contact{
        background-size: auto;
    }

    .gallery-sample .image{
            height: 6rem;
            width: 6rem;
    }

    .carousel {
        max-height: 50svh;
    }
}


/* End of Phone Media Query */
    