/* Common CSS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Syne:wght@400..800&display=swap');
:root {
    --primary-font: "Poppins", serif;
    --heading-font: "Syne", serif;
    --body-font: "Poppins", serif;
}
/* font-family: var(--heading-font); */
/* font-family: var(--primary-font); */

:root {
    --primary-color: #252525;
    --accent-color: #cb276e;
    --text-color: #ffffff;
    --background-color: linear-gradient(to right, #ef2639 0%, #cb276e 51%, #ad1f67 100%);
    --secondary-color: #ffffff36;
}
/* color: var(--primary-color);     */


.row {
    margin: 0;
}
li, button{
    font-family: var(--primary-font);
}
p{
    font-family: var(--primary-font);
    color: #fff;
    font-size: 18px;
}
h2 {
    font-family: var(--heading-font);
    font-size: 35px;
    color: #fff;
    }
h3 {
    font-family: var(--primary-font);
    color: #fff;
    font-size: 18px;
}    
.border-top {
    border-color: var(--primary-color) !important;
}
nav.navbar.navbar-expand-lg {
    background: var(--primary-color);
}
/* Hero Area */
.card-container {
    display: flex;
    gap: 10px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}
.card {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.4s ease-in-out;
    position: relative;
    background-size: cover;
    background-position: center;
}
.card:hover {
    flex: 3;
}
.card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--text-color);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.card.active .card-content {
    opacity: 1;
}
.card.section {
    height: 85vh;
    border: 3px solid var(--primary-color);
}
.card.section.active {
    border: 3px solid var(--text-color);
}
.section[data-section="1"] {
    background-image: url('../images/home/home-img1.jpg');
}
.section[data-section="2"] {
    background-image: url('../images/home/home-img2.jpg');
}
.section[data-section="3"] {
    background-image: url('../images/home/home-img3.jpg');
}
.section[data-section="4"] {
    background-image: url('../images/home/home-img4.jpg');
}
.card.active, .section:hover {
    flex: 2;
    opacity: 1;
}
.card.section .abdlut-text h3 {
    position: absolute;
    left: 50%;
    margin: 0 !important;
    font-weight: 700;
    padding: 0;
    transform: translateX(-50%);
    top: 50px;
    writing-mode: vertical-rl;
    transition: all 0.35sease-in-out;
    font-size: 22px;
}

.card.section.active .abdlut-text {
    display: none;
}
.card.section .abdlut-text span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 900;
    font-size: 80px;
    color: transparent;
    transition: all 0.35sease-in-out;
    bottom: 20px;
    visibility: visible;
    transition-duration: 0.10s;
    -webkit-text-stroke: 2px var(--text-color);;
    background: transparent;
}
.card.section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--background-color);
    opacity: 0.5;
}

.card.section.active::before {
    display: none;
}
.homeArea nav.navbar {
    height: 10vh;
    padding: 0;
    background: var(--backgroundT-color);
}

footer.footer-custom {
    height: 5vh;
}
.heroArea {
    height: 85vh;
}
.homeArea {
    background: url(../images/home/homebg.jpg) no-repeat center center;
    background-size: cover;
}
.navbar li.nav-item a {
    color: var(--text-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
}

.navbar li.nav-item ul.dropdown-menu a {
    color: var(--primary-color);;
}
.footer-custom p {
    margin: 0;
    padding: 15px 0 0;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--text-color);;
}
.card .card-content a {
    color: var(--text-color);;
}

.card .card-content a i {
    transform: rotate(-25deg);
    border: 2px solid var(--text-color);;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    font-size: 27px;
    transition: 0.5s;
}

.card .card-content a:hover i {
    transform: rotate(0);
}

.card-content h5 {
    font-family: var(--heading-font);
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 800;
}

/* PortFolio Area */
.portfolio-item {
    display: none; /* Hide all items by default */
}
.portfolio-item.show {
    display: block; /* Show items with the 'show' class */
}