@font-face {
    font-family: GilroyRegular;
    src: url(gilroy-regular.ttf);
}
@font-face {
    font-family: GilroyBold;
    src: url(gilroy-bold.ttf);
}


/* .main_Banner {
    width: 100%; 
    background: linear-gradient(to bottom, rgb(221, 241, 245), rgb(255, 255, 255));
    margin-top: 4rem;
    overflow: hidden;
    position: relative;
}
.banner_img_Container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42rem;
    overflow: hidden;
    transition: transform 0.6s ease; 
}
.slide {
    width: 20vw;
    height: 34rem;
    margin: 0 1.5rem;
    opacity: 0.6;
    transition: transform 0.6s ease, opacity 0.6s ease;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.6s ease; 
}
.slide.active {
    transform: scale(1.15);
    opacity: 1;
}
.banner_Content {
    position: absolute;
    transform: translateX(50%), translateY(50%);
    z-index: 5;
    background-color: white;
} */


.main_Banner {
    width: 100%; 
    background: linear-gradient(to bottom, rgb(100, 102, 102), rgb(255, 255, 255));
    margin-top: 4rem;
    overflow: hidden;
    position: relative;
}
.main_Banner .banner_img_Container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* ✅ IMPORTANT */
    height: 38rem;
    transition: transform 0.8s ease;
    will-change: transform;
}

.main_Banner .banner_img_Container img {
    width: 22vw;
    height: 30rem;
    margin: 0 1.5rem;
    border-radius: 15px;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transform: scale(1);
    opacity: 0.6;
    flex-shrink: 0;
}

.main_Banner .banner_img_Container img.active {
    transform: scale(1.15);
    opacity: 1;
    z-index: 2;
}

.banner_Content {
    font-family: 'GilroyRegular'; 
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 5;
    background-color: white;
    background: linear-gradient(to bottom, rgb(219, 200, 157), rgb(255, 255, 255));
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgb(0,0,0,0.7);
    opacity: 0.9;
}
.banner_Content .text-content {
    font-weight: 700;
    font-size: 2.5rem;
}
.text-content::after {
    content: "|";
    margin-left: 5px;
    animation: blink 1s infinite;
}
@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}
.banner_Content .btn-Section {
    text-align: right;
    margin-top: 2rem;
}
.banner_Content .btn-Section .btn {
    background-color: rgb(207, 172, 95) !important;
    border-radius: 7px !important;
    color: black;
    font-weight: 600; 
}


@media screen and (max-width: 374px) {
}
@media screen and (min-width: 375px) {
}
@media screen and (min-width: 425px) {
}
@media screen and (min-width: 768px) {
}
@media screen and (min-width: 992px) {
}
@media screen and (min-width: 1200px) {
}
@media screen and (min-width: 1300px) {
}


.features_Section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 4rem 2rem;
}
.collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 100px;
    gap: 1.2rem;
    width: 50%;
}

/* Base tile style */
.tile {
    background: linear-gradient(135deg, #f0d9d9, #ffffff);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    overflow: hidden;
}

/* Size variations */
.tile-large {
    grid-column: span 2;
    grid-row: span 2;
}

.tile-medium {
    grid-column: span 2;
}

.tile-small {
    grid-column: span 1;
}

.tile-tall {
    grid-row: span 2;
}

.tile-wide {
    grid-column: span 3;
}

.tile img {
    width: 100%;
    height: 100%;
}