@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

:root {
    --col-primary: #274ba9;
    --col-secondary: #c18bbc;
    --col-accent: #f7f7f7;
    --col-background: #f2f2f2;
    --col-hover: #4567b7;
    --col-text: #333333;
    --col-active: #66d9ef;
    --col-linear-gradient: linear-gradient(to right, #274ba9, #c18bbc);
    --col-linear-gradient-opa: linear-gradient(to right, #274ca9d1, #c18bbcd1);

    --col-primary-light: #587fe5;
    --col-primary-lighter: #789af5;
    --col-contact: #cdc4c4;

    --padding-content: 16px 24px;
    --padding-card: 12px;
    --padding-section: 24px;

    --col-titlebar-bg: linear-gradient(45deg, #8f9bebe3, #7176fff1);
    --col-titlebar-bg-hover: linear-gradient(45deg, #8f9beb9e, #7b0f999e);
    --col-title: white;

    --col-btn-bg: #0078d4;
    --col-btn-text: #ffffff;
    --col-btn-hover-bg: #005a9edd;
    --col-btn-hover-text: #f1f1f1;

    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

a {
    text-decoration: none !important;
    text-align: center;
}

/* General styles */
body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    /* Enables smooth scrolling */
}

body {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    background-color: var(--background-color);
    width: 100%;
    overflow: hidden;
    color: var(--text-color);
    position: relative;
}

/* Use Montserrat for headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

body a {
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

.flex-row-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.flex-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

p.responsive {
    line-height: 1.6;
    margin: 1rem 0;
    font-size: clamp(1.5rem, 1vw + 0.5rem, 1.25rem);
}

a.responsive {
    text-decoration: none;
    transition: color 0.3s, text-decoration 0.3s;
    font-size: clamp(1.5rem, 1vw + 0.5rem, 1.25rem);
}

h1.responsive {
    font-size: clamp(44px, 0.5vw + 0.75rem, 32px);
}
h2.responsive {
    font-size: clamp(32px, 0.5vw + 0.5rem, 24px);
}
h3.responsive {
    font-size: clamp(24px, 0.5vw + 0.25rem, 18px);
}
h4.responsive {
    font-size: clamp(20px, 0.5vw, 16px);
}

a.responsive:hover,
a.responsive:focus {
    text-decoration: underline;
    font-weight: 500;
}

.anim-title {
    animation: fadeInUp 0.6s ease-in-out;
}

.titlebar-title {
    font-size: clamp(22px, 2.6vw, 50px);
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    color: #333;
    white-space: nowrap;
}

.sentence-container {
    position: relative;
    font-size: 18px;
    width: 100%;
    padding: 40px 20px;
}

.word {
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    color: var(--col-primary);
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0; /* Changed from right to left */
    animation: moveWord 12s infinite;
    animation-delay: var(--delay);
    white-space: nowrap;
}

@keyframes moveWord {
    0% {
        transform: translateX(100%); /* Start from the right */
        opacity: 0;
    }
    10% {
        transform: translateX(
            calc((var(--word-index, 0) * 100px))
        ); /* Move to the correct position */
        opacity: 1;
    }
    90% {
        transform: translateX(
            calc((var(--word-index, 0) * 100px))
        ); /* Stay in the correct position */
        opacity: 1;
    }
    100% {
        transform: translateX(100%); /* Move back to the right */
        opacity: 0;
    }
}

/* Define word index */
.word:nth-child(1) {
    --word-index: 0;
}
.word:nth-child(2) {
    --word-index: 1;
}
.word:nth-child(3) {
    --word-index: 2;
}
.word:nth-child(4) {
    --word-index: 3;
}
.word:nth-child(5) {
    --word-index: 4;
}
.word:nth-child(6) {
    --word-index: 5;
}
.word:nth-child(7) {
    --word-index: 6;
}
.word:nth-child(8) {
    --word-index: 7;
}
.word:nth-child(9) {
    --word-index: 8;
}

section {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    color: var(--col-primary);
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1080px) {
    .titlebar-title strong {
        display: block;
    }
}

.section-title span {
    color: var(--col-secondary);
    font-weight: bold;
}

.section-subtitle {
    font-size: clamp(2rem, 1vw + 0.5rem, 1.25rem);
    font-weight: 600;
    color: var(--col-text);
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: var(--padding-content);
}

.background-section {
    background-color: var(--col-background);
    padding: var(--padding-section);
}

.text {
    color: var(--col-text);
}

#scrollUp {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    background: url(../images/top.png) no-repeat scroll 0 0;
    bottom: 48px;
    height: 40px;
    right: 20px;
    width: 50px;
    opacity: 0.4;
    z-index: 1000 !important;
}

.mb-20 {
    margin-bottom: 80px !important;
    padding: 0 44px !important;
}

.card-shadow {
    margin: 20px auto;
    width: 100%;
}

.card-shadow,
.photo {
    max-width: 570px;
    display: inline-block;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-shadow:hover,
.photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-shadow:active,
.photo:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ================= FEATURES SECTION ================= */

.features {
    padding: 80px 20px;
    background: linear-gradient(135deg, #eef2ff, #fdf2f8);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
}

/* GRID */
.features-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.feature-card {
    position: relative;
    padding: 28px 22px;
    border-radius: 18px;
    overflow: hidden; /* ✅ IMPORTANT FIX */

    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;

    border: 1px solid rgba(255,255,255,0.4);
}

/* TOP GLOW BORDER */
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

/* ICON */
.feature-card .icon {
    font-size: 28px;
    margin-bottom: 12px;
}

/* TEXT */
.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #222;
}

.feature-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 18px;
}

/* BADGE */
.badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 1.3rem;
    font-weight: 500;
}

/* HOVER */
.feature-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ================= COLOR THEMES ================= */

/* BLUE */
.feature-card.blue::before {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}
.feature-card.blue .badge {
    background: rgba(59,130,246,0.12);
    color: #2563eb;
}

/* PURPLE */
.feature-card.purple::before {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}
.feature-card.purple .badge {
    background: rgba(124,58,237,0.12);
    color: #7c3aed;
}

/* PINK */
.feature-card.pink::before {
    background: linear-gradient(90deg, #ec4899, #f472b6);
}
.feature-card.pink .badge {
    background: rgba(236,72,153,0.12);
    color: #db2777;
}

/* ORANGE (Kinley aligned 🔥) */
.feature-card.orange::before {
    background: linear-gradient(90deg, #ff8c00, #ffb347);
}
.feature-card.orange .badge {
    background: rgba(255,140,0,0.15);
    color: #ff8c00;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .features-container {
        grid-template-columns: 1fr;
    }

    .feature-card {
        text-align: center;
    }
}
/********************* Theme Buttons **************************************/
.primary-button {
    background-color: #2196f3; /* Blue */
    color: #ffffff; /* White text */
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.primary-button:hover {
    background-color: #1976d2; /* Darker blue on hover */
}

.secondary-button {
    background-color: #ff69b4;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.secondary-button:hover {
    color: #ffffff;
    background-color: #ff3b8f; /* Darker pink on hover */
}
/********************* /Theme Buttons **************************************/

/********************* Header **************************************/

header {
    position: relative;
    width: 100%;
    height: 125px;
    color: var(--col-title);
    z-index: 10001;
}

.top_nav {
    display: block;
    padding: var(--padding-card);
    height: 50px;
    width: 100%;
    background: var(--col-titlebar-bg);
    transition: transform 0.3s ease;
}

.top_nav a {
    font-size: 18px;
    color: white;
}

.top_nav ul {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.top_nav ul li a span {
    color: var(--col-title);
    margin-right: 6px;
}

.nav > li > a:focus,
.nav > li > a:hover {
    background: transparent;
    border-bottom: 2px solid var(--col-hover);
}

.top_nav ul li a:hover {
    color: var(--col-active);
    animation: hoverPulse 0.6s ease-in-out infinite;
}

#navBar {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px var(--col-secondary);
    backdrop-filter: blur(10px);
    background: var(--col-titlebar-bg);
    transform: translateY(50px);
    transition: transform 0.3s ease, box-shadow 0.3s, background 0.3s;
    padding: var(--padding-card);
}

.nav-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo .titlebar-title {
    color: var(--col-secondary);
    text-shadow: 1px 1px 3px #3725d3;
}
.logo .titlebar-title strong {
    text-shadow: 1px 1px 3px white;
    color: var(--col-primary);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav a {
    color: #fff;
    font-weight: 700;
}

.active {
    border-bottom: 2px solid var(--col-active);
}

#navBar.show {
    transform: translateY(0);
}

#navBar:hover {
    box-shadow: 0 2px 12px rgb(0 0 0 / 47%);
    background-color: rgba(176, 171, 238, 0.89);
}

.nav {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 18px;
}

#btnMenu {
    cursor: pointer;
}

#btnMenu .fa,
.social li a {
    color: #264ba3;
    text-shadow: 1px 1px 1px white;
    font-size: 30px;
}

#btnMenu .fa,
.social li a:active {
    outline: none !important;
}

.side-menu {
    display: flex;
    height: 300px;
    width: 250px;
    position: fixed;
    z-index: 10;
    top: 77px;
    box-shadow: -1px 3px 11px #000000ed;
    right: 0;
    background-color: #838bf4;
    transform: translateX(250px);
    transition: transform 0.5s ease-in-out; 
    padding: 0;
    border-bottom-left-radius: 12px;
}

.side-menu.open {
    transform: translateX(0px);
}

.side-menu li {
    width: 100%;
}

.side-menu a:active,
.side-menu a:hover {
    border-bottom: 2px solid var(--col-active);
}
.side-menu a {
    color: var(--col-accent);
    font-size: 16px;
}

@media (max-width: 1000px) {
    .top_nav {
        display: none;
    }

    #navBar {
        transform: translateY(0px);
    }

    header {
        height: 75px;
    }

    body {
        padding-top: 0;
    }

    .gallery-section {
        padding: 0;
    }

    .special-offer {
        margin: 0 0 10px;
        font-size: 28px;
        font-weight: 500;
        background: var(--col-linear-gradient-opa);
        padding: 8px 4px;
    }

    .title {
        margin-bottom: 40px;
    }

    .fade-in {
        transform: translateY(10px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .social {
        padding-left: 0;
    }

    #why-us {
        padding: var(--padding-content);
    }
}

/********************* /Header **************************************/

/********************** Preloader css*********************************/
#loading {
    background-color: var(--col-primary);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    margin-top: 0px;
    top: 0px;
    z-index: 20000;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 30%;
    width: 450px;
    margin-top: -25px;
    margin-left: -75px;
}

.object {
    width: 16px;
    height: 30%;
    margin-right: 5px;
    background-color: #fff;
    -webkit-animation: animate 1s infinite;
    animation: animate 1s infinite;
    float: left;
}

.object:last-child {
    margin-right: 0px;
}

.object:nth-child(10) {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.object:nth-child(9) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.object:nth-child(8) {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.object:nth-child(7) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.object:nth-child(6) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.object:nth-child(5) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.object:nth-child(4) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.object:nth-child(3) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.object:nth-child(2) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

@-webkit-keyframes animate {
    50% {
        -ms-transform: translateX(-25px) scaleY(0.5);
        -webkit-transform: translateX(-25px) scaleY(0.5);
        transform: translateX(-25px) scaleY(0.5);
    }
}

@keyframes animate {
    50% {
        -ms-transform: translateX(-25px) scaleY(0.5);
        -webkit-transform: translateX(-25px) scaleY(0.5);
        transform: translateX(-25px) scaleY(0.5);
    }
}

/**************************End off Preloader ********************************/

/************************** hero ********************************/

.hero-grid-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-grid-container {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 1fr 1fr;
}

@media (min-width: 768px) and (max-width: 1399px) {
    .hero-grid-container {
        grid-template-columns: 33% 33% 33%;
        grid-template-rows: 1fr;
    }

    .hide-item-md {
        display: none;
    }
}

@media (min-width: 1400px) {
    .hero-grid-container {
        grid-template-columns: 25% 25% 25% 25%;
        grid-template-rows: 1fr;
    }
}

.hero-grid-item {
    transition: transform 1s;
    position: relative;
    padding: 4%;
}

.blind-effect {
    animation: blind-open 20s;
}

@keyframes blind-open {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes blind-close {
    0% {
        clip-path: inset(0 0 0 0);
    }
    100% {
        clip-path: inset(0 100% 0 0);
    }
}

@keyframes venetian {
    0% {
        transform: rotateX(90deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}

@keyframes roller {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes vertical {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

@keyframes horizontal {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes fold {
    0% {
        transform: perspective(400px) rotateY(90deg);
    }
    100% {
        transform: perspective(400px) rotateY(0deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.cta {
    margin: 40px auto;
}

.images-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

a .fa {
    font-size: 24px;
}

.gallery-image-hero,
.gallery-image-hero-sm {
    width: 100%;
    height: auto;
    transition: opacity 0.5s ease-in-out;
    border-radius: var(--border-radius);
    box-shadow: 2px 2px 8px #c18bbc;
}

.hidden {
    display: none;
}

.section-2 .images-container img,
.section-4 .images-container img {
    animation: moveRight 1s forwards;
}

.section-1 .images-container img,
.section-3 .images-container img {
    animation: moveLeft 1s forwards;
}

@keyframes moveRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes moveLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Ensure smooth transitions */
.section-1 {
    opacity: 1;
}

/******************** Animation *********************/
.fade-out {
    transform: scale(0.5);
    transition: imageChange 1.3s;
}

@keyframes imageChange {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    45% {
        opacity: 0.6;
        transform: scale(0.6);
    }

    55% {
        opacity: 0.4;
        transform: scale(0.4);
    }

    100% {
        opacity: 0.2;
        transform: scale(0.2);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fade-in {
    will-change: opacity, transform;
}

/* ================= CALL TO ACTION =================== */
.cta > a {
    background: var(--col-btn-bg);
    padding: var(--padding-card);
    border-radius: var(--border-radius);
    color: var(--col-btn-text);
    font-weight: 800;
    animation: hoverPulse 0.6s ease-in-out infinite;
}

.cta > a:hover {
    color: #fff;
}

.cta > a:active {
    border: 2px solid var(--col-primary-lighter);
}

.call-to-action {
    background: linear-gradient(180deg, #ffffff, #c18bbc);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.call-to-action h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.call-to-action button {
    width: 200px;
    background-color: #fff;
    color: #ff8c00;
    border: none;
    padding: 15px 30px;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.call-to-action button:hover {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}
.call-to-action button:active {
    background-color: #fff;
    color: #2e6da4;
}

/********************** /Call to Action ***********************/

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--col-linear-gradient-opa);
}

@keyframes hoverPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }

    100% {
        transform: scale(1);
    }
}

.card-back i,
.card-back .glyphicon {
    font-size: 60px;
    margin: 20px;
    color: #fff;
}


/************************** Portfolio ********************************/

/* Portfolio Section */
#portfolio {
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.portfolio-area {
    text-align: center;
}

.portfolio-area .grid {
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.portfolio-area .grid-item {
    position: relative;
    width: clamp(250px, 15vw, 400px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-area .grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Image Styling */
.image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    /* Ensures full coverage */
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.5s ease-in-out;
}

.image.before {
    opacity: 1;
    z-index: 1;
}

.image.after {
    opacity: 0;
    z-index: 2;
}

/* Hover Effect */
.portfolio-area .grid-item:hover .image.before {
    opacity: 0;
}

.portfolio-area .grid-item:hover .image.after {
    opacity: 1;
}

/* Caption Styling */
.caption {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 5px;
    transition: opacity 0.5s, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Make caption visible on hover */
.portfolio-area .grid-item:hover .caption {
    opacity: 1;
}

/* ================== ABOUT (MODERN UPGRADE) ====================== */

.about-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
}

/* LAYOUT */
.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXT SIDE */
.about-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #111;
}

.about-subtext {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
    max-width: 500px;
}

/* FEATURES (CHIPS STYLE) */
.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 35px;
}

/* FEATURE CARD */
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;

    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);

    font-size: 1.05rem;
    font-weight: 500;
    color: #222;

    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* ICON */
.feature-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 26px;
    height: 26px;
    border-radius: 50%;

    background: rgba(255, 140, 0, 0.12);
    color: #ff8c00;

    font-size: 0.9rem;
    font-weight: bold;
}

/* HOVER EFFECT */
.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    border-color: rgba(255, 140, 0, 0.3);
}

/* OPTIONAL: subtle glow on hover */
.feature-item:hover .icon {
    background: #ff8c00;
    color: #fff;
}

/* IMAGE SIDE */
.about-image {
    width: 100%;
    height: 450px;
    background: url("../images/about/stylishShowRoom.jpg") center/cover no-repeat;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

/* MOBILE */
@media (max-width: 768px) {
    .about-section {
        padding: 70px 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-subtext {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .about-features {
        justify-content: center;
    }

    .about-image {
        height: 300px;
    }
}

/* ================= ANIMATIONS ================= */
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fa:hover {
    animation: bounce 0.5s ease-in-out;
    color: #ffd700;
}

@keyframes bgMove {
    0% {
        background-position: center;
    }

    25% {
        background-position: 100% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    75% {
        background-position: 0% 100%;
    }

    100% {
        background-position: center;
    }
}

/* ================= SERVICES ================= */
.service_item {
    max-width: 570px;
    margin: 80px auto;
    padding: var(--padding-card);
    background-color: rgba(250, 250, 250, 0.1);
    transition: all 0.5s;
    height: 450px;
    text-align: center;
}

.service_item > h3 {
    margin: 25px 0 15px;
    text-align: center;
    font-weight: 600;
}

.service_item img {
    border-radius: var(--border-radius);
    width: 100%;
}

.modalk-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100001;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modalk-overlay.show {
    display: flex !important;
    opacity: 1;
}

.modalk {
    background-color: #fff;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.modalk.show {
    transform: scale(1);
    opacity: 1;
}

.modalk-header {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    background: var(--col-titlebar-bg);
    color: white;
    padding: var(--padding-content);
    width: 100%;
}

.modalk-body {
    padding: var(--padding-content);
}

.modalk-body ul li {
    list-style: inside;
}

.close-btn {
    position: absolute;
    top: 0;
    right: -20px;
    background: none !important;
    border: none;
    width: 80px !important;
    cursor: pointer;
    color: var(--col-accent);
}

.close-btn:hover {
    color: #333;
}

.modalk button {
    padding: 10px 20px;
    min-width: 130px;
    border: none;
    background-color: var(--col-btn-bg);
    color: white;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
}

.modalk button:hover {
    background-color: var(--col-hover);
}

.modalk-footer {
    padding: var(--padding-content);
}


/* ================= FOOTER ================= */
footer {
    background: url(../images/footer.png) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: left;
    padding-top: 45px;
    position: relative;
}

/* Footer Styling */
footer::after {
    background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.footer_top,
.footer_bottom {
    position: relative;
    z-index: 1;
    color: #fff;
}

.footer_item {
    margin: 60px 0;
}

.footer_item > h4 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 34px;
}

.footer_item .list-unstyled > li a {
    color: #fff;
}

/* Footer About */
.footer_item .logo {
    margin-bottom: 15px;
    width: 200px;
}

.footer_menu .fa {
    font-size: 10px;
    font-weight: 600;
    margin-right: 12px;
}

.list-unstyled.footer_menu > li {
    padding: 4px 0;
}

.footer-contact li a:hover,
.footer-contact li a:focus {
    color: var(--col-active);
}

.list-unstyled.post > li,
.list-unstyled.footer-contact > li {
    padding: 12px 0;
    overflow: hidden;
}

/* Footer Contact */
.footer-contact .fa {
    margin-right: 25px;
    text-align: center;
    width: 15px;
    float: left;
    font-size: 24px;
}

.list-unstyled.footer-contact p {
    overflow: hidden;
}

.footer_bottom {
    background: #1a1c27bd none repeat scroll 0 0;
    padding: 28px 0 18px;
}

.footer_bottom a {
    color: var(--primary-color);
}

.footer_bottom a:hover,
.footer_bottom a:focus {
    color: #d7a300;
}



