:root {
    --bg:        #180e23;
    --surface:   #221535;
    --purple:    #7E6AC8;
    --blue:      #1e90ff;
    --yellow:    #FFD600;
    --white:     #f0f4ff;
    --muted:     rgba(240, 244, 255, 0.55);
    --radius:    14px;
    --max:       1100px;
    --shadow:    0 8px 32px rgba(0, 0, 0, 0.45);
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--white);
    line-height: 1.65;
}
h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1.1;
    letter-spacing: 0.03em;
}

h2 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    background: linear-gradient(120deg, var(--white) 70%, var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 12px rgba(126, 106, 200, 0.35));
}
header{
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--bg);
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
    box-shadow: 0 2px 0 rgba(126, 106, 200, 0.25);
}
header img {
    width: clamp(70px, 10vw, 100px);
    display: block;
}

nav{
    padding-right: 2rem;
    margin: 1.5rem;
    float: right;
    font-size: medium;
}
nav ul {
    list-style: none;
    display: flex;
    gap: clamp(1rem, 3vw, 2.2rem);
}
nav a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 3px;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.25s ease;
}
nav a:hover::after { width: 100%; }
nav a:hover { color: var(--yellow); }

#greeting{
    padding: 0rem;
}
.greeting-section{
    position: relative;
    height: clamp(550px, 60vh, 600px);
    overflow: hidden;
}
.background-video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.overlay-text{
    position:absolute;
    top: 50%;
    left: 50%;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    transform: translate(-50%, -50%);
    font-weight: bold;

    padding: 5px;
    z-index: 1;

    --duration: 2s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
}
.text-wrapper {
    position: relative;
    display: block;
    white-space: nowrap;
    
}
.fancy-text{
    color: white;
    display: block;
    animation: text-in var(--duration) 1 forwards;
    mask: linear-gradient(to right, white, black 30%, black);
    mask-composite: exclude;
    mask-mode: alpha;
    mask-size: 100% 100%;
    mask-position: 0 0px;
}
.wipe-in {
    position: absolute;
    left: 3;
    display: block;
    background-image: linear-gradient(
        90deg,
        #fff89a,
        #cdf2ca,
        #a2cdcd,
        #d1e8e4,
        #cab8ff,
        #ff7878,
        #ffc898
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: wipe-in var(--duration) 1 forwards;
    mask: linear-gradient(to right, black, white);
    mask-composite: exclude;
    mask-mode: alpha;
    mask-size: 50% 100%;
    mask-position: 0px 0px;
}
@keyframes text-in {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    50% {
        clip-path: polygon(50% 0, 0 0, 0 100%, 50% 100%);
    }
    100% {
        clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
        mask-size: 1000% 100%;
    }
}
@keyframes wipe-in {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        filter: blur(5px);
    }
    70% {
        clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
        filter: blur(5px);
        mask-position: 100% 100%;
    }
    100% {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
        filter: blur(0);
        mask-position: 100% 100%;
    }
}
 @media screen and (max-width: 500px) {
    .overlay-text {
    font-size: 3rem;
}
}
 @media screen and (max-width: 375px) {
    .overlay-text {
    font-size: 3rem;
}
}


/* Services Section ---------------------------------------------------*/
#services{
    padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 6vw, 5rem);
}
.service-inner{
    display: flex;
    align-items: flex-start;
    gap: clamp(1.5rem, 4vw, 3rem);
    max-width: var(--max);
    margin: 0 auto;
}
.service-header{
    position: sticky;
    top: 150px;
    flex: 0 0 32%;
}
.service-header p {
    margin-top: 1rem;
    color: var(--purple);
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    max-width: 280px;
}
.service-list{
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-item{
    position: sticky;
    top: 150px;
    height: clamp(220px, 28vw, 320px);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.18);
}
.service-item:hover {
    transform: scale(1.012);
    box-shadow: 0 12px 20px rgba(126, 106, 200, 0.35);
}
.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.5);
}
.service-item:hover img { filter: brightness(0.3);}

.service-text-overlay{
    position: absolute;
    bottom: 1.2rem;
    left: 1.4rem;
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    letter-spacing: 0.08em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    pointer-events: none;
    
}

/* About Us Section ---------------------------------------------------*/
#about-us{
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 8vw, 10rem);
    text-align: center;
    max-width: var(--max);
    margin: 0 auto;
}
.about-text{
    padding-top: 3rem;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
}
@media (max-width: 767px) {
    .service-inner {
        flex-direction: column;
        align-items: center;
    }
    .service-header {
        position: relative;
        top: auto;
        flex: none;
        text-align: center;
    }
    .service-item {
        position: relative;
        top: auto;
        margin-bottom: 16px;
        height: clamp(180px, 50vw, 260px);
    }
}


/* Contact Us Section ---------------------------------------------------*/
#contact-us{
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 6vw, 4rem);
    text-align: center;
    background-color: var(--white);
    color: var(--bg)
}
#contact-us h2 {
    background: linear-gradient(120deg, var(--bg) 30%, var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(126, 106, 200, 0.2));
}
.info-box {
    display: flex;
    justify-content: center;
    max-width: 560px;
    margin: 2.5rem auto 0;
}
.send-info-section{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding-bottom: 2rem;
}
.input-style {
    padding: 10px 14px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--bg);
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
}

.input-style:focus { border-color: var(--purple); }

.message-style {
    flex: 1;
    min-height: 120px;
    resize: vertical;
}
.submit-button {
    margin-top: 6px;
    background-color: var(--purple);
    color: white;
    padding: 12px 32px;
    border: none;
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.04em;
    border-radius: .5rem;
    will-change: box-shadow,transform;
    text-shadow: 0 1px 0 rgb(0 0 0 / 40%);
    transition: box-shadow 0.15s ease, transform 0.15s ease;

}

.submit-button:hover {
    background-color: #6f42c1;
    box-shadow: 0px 0.1em 0.2em rgba(22, 17, 33, 0.4), 0px 0.4em 0.7em -0.1em rgb(45 35 66 / 30%), inset 0px -0.1em 0px #371856;
    transform: translateY(-0.1em);
}
.button:hover .text {
  transform: scale(0.9);
}
.button:active .text {
  transform: scale(0.8);
}
/* Reviews Section ---------------------------------------------------*/
#reviews{
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 6vw, 4rem);
    text-align: center;
    overflow: hidden;
    position: relative;
}
.review-text{
    padding-bottom: 2rem;font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
    background: linear-gradient(120deg, var(--white) 50%, var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.reviews-sec{
    display: flex;
    flex: 1;
    gap: 32px;
    overflow: hidden;
    white-space: nowrap;
    scroll-behavior:auto;
    border-radius: 12px;
}
.reviews-sec::-webkit-scrollbar { display: none; }

.review-item{
    display: grid;
    grid-template-rows: 1fr;
    color: #FFD600;
    background-color: #7E6AC8;
    padding: 24px;
    border-radius: 12px;
    min-width: 350px;
    min-height: 350px;
    white-space: normal;
}
.reviewer{
    
}
.review{
   
}
/* Footer Section ---------------------------------------------------*/
#media-link{
    padding: 1rem;
}
.media-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    padding: 2.5rem 0 1rem;
}
.media-boxbox{
    position: relative;
}
.media-box img{
    width: 50px;
    height: auto;
    overflow: hidden;
}
.media-box a:hover img {
    opacity: 1;
    transform: translateY(-3px);
}
footer{
    text-align: center;
    padding: 1rem;
    font-size: 0.85rem;
    color: var(--muted);
    border-top: 1px solid rgba(126, 106, 200, 0.15);
}

