/**********************************/
/********** General CSS ***********/
/**********************************/
body {
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;

    /* Background image */
    background: url("../img/demoHotelGallery1.png") center center / cover no-repeat fixed;
    position: relative;
}

/* Dark overlay so text is readable */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}



/**********************************/
/****** Layout with Sidebar *******/
/**********************************/
.wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1140px;
}

.wrapper .sidebar {
    position: relative;
    width: 100%;
    float: left;
    background: #222222;
}

.wrapper .content {
    position: relative;
    width: 100%;
    padding: 15px;
    float: left;
    background: #5A3A22;
}

.wrapper .sidebar-header,
.wrapper .sidebar-footer {
    display: none;
}

.navbar {
    padding: 15px;
    background: #222222 !important;
}

.navbar-expand-md .navbar-nav .nav-item {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.navbar-expand-md .navbar-nav .nav-item:first-child {
    border-top: none;
}

.navbar-expand-md .navbar-nav .nav-link {
    color: #41FF01;
    padding: 5px 15px 7px 15px;
    transition: all .3s;
}

.navbar-expand-md .navbar-nav .nav-link i {
    color: #F5F5DC;
    float: right;
    padding-top: 5px;
    transition: all .3s;
}

.navbar-expand-md .navbar-nav .nav-link:hover,
.navbar-expand-md .navbar-nav .nav-link.active {
    color: #F5F5DC;
}

.navbar-expand-md .navbar-nav .nav-link:hover i,
.navbar-expand-md .navbar-nav .nav-link.active i {
    color: #41FF01;
}

.wrapper .sidebar,
.wrapper .content {
    -webkit-transition: margin 200ms ease-out;
    -moz-transition: margin 200ms ease-out;
    -o-transition: margin 200ms ease-out;
    transition: margin 200ms ease-out;
}

@media (min-width: 768px) {
    .wrapper .content {
        padding: 30px 0px 30px 30px;
    }

    .wrapper .content::before,
    .wrapper .content::after {
        position: fixed;
        content: "";
        width: 100%;
        height: 30px;
        background: #5A3A22;
        z-index: 1;
    }

    .wrapper .content::before {
        top: 0;
    }

    .wrapper .content::after {
        bottom: 0;
    }

    .wrapper .sidebar {
        position: fixed;
        width: 300px;
        height: 100%;
        margin-left: -250px;
        float: left;
        overflow: auto;
        scrollbar-width: thin;
        scrollbar-color: gray;
        z-index: 2;
    }

    .wrapper .sidebar:hover {
        margin-left: 0px;
    }

    .wrapper .content {
        position: relative;
        width: calc(100% - 50px);
        margin-left: 50px;
        float: right;
    }

    .wrapper .sidebar:hover .sidebar-header {
        position: relative;
        display: block;
        width: 100%;
    }

    .wrapper .sidebar .sidebar-header img {
    width: 270px;
    height: 270px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 20px auto;
    border: 4px solid rgba(245, 245, 220, 0.85); /* beige border */
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    background: #ffffff; /* avoids transparent edges */
}


    .navbar-brand {
        display: none;
    }

    .navbar {
        padding: 15px 0;
        flex-direction: column;
    }

    .wrapper .sidebar:hover .navbar-expand-md .navbar-nav .nav-link {
        padding: 5px 30px 7px 30px;
    }

    .wrapper .sidebar::-webkit-scrollbar {
        width: 7px;
    }

    .wrapper .sidebar::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
    }

    .wrapper .sidebar::-webkit-scrollbar-thumb {
        background-color: darkgrey;
        outline: 1px solid slategrey;
        border-radius: 7px
    }

    .navbar-brand {
        display: none;
    }

    .sidebar .sidebar-footer {
        width: 300px;
        position: fixed;
        bottom: 0;
        padding: 15px;
        font-size: 0;
        text-align: center;
        background: #222222;
    }

    .sidebar .sidebar-footer a {
        display: inline-block;
        width: 40px;
        height: 40px;
        padding: 5px 0;
        margin: 0 15px 15px 0;
        text-align: center;
        font-size: 18px;
        color: #222222;
        background: #F5F5DC;
    }

    .sidebar .sidebar-footer a:last-child {
        margin-right: 0;
    }

    .sidebar .sidebar-footer a:hover {
        color: #F5F5DC;
        background: #41FF01;
    }

    .sidebar:hover .sidebar-footer {
        display: block;
    }
}

@media (min-width: 992px) {
    .wrapper .sidebar {
        margin: 0;
    }

    .wrapper .content {
        width: calc(100% - 300px);
        margin-left: 300px;
    }

    .sidebar .sidebar-header {
        position: relative;
        display: block;
        width: 100%;
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding: 5px 30px 7px 30px;
    }

    .sidebar .sidebar-footer {
        display: block;
    }
}

@media (max-width: 1140px) {
    .wrapper .content {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .wrapper .content {
        padding: 15px;
    }
}


/**********************************/
/******** Back to Top CSS *********/
/**********************************/
.back-to-top {
    position: fixed;
    display: none;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 1;
    font-size: 30px;
    right: 30px;
    bottom: 30px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    color: #222222;
}

.back-to-top i:hover {
    color: #F5F5DC
}

.back-to-top {
    -webkit-animation: action 1s infinite alternate;
    animation: action 1s infinite alternate;
}

@-webkit-keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

@keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}


/**********************************/
/*********** Header CSS ***********/
/**********************************/
.header {
    position: relative;
    background: rgba(65, 255, 1, 0.70);
}

.header .content-inner {
    padding: 100px 30px;
    background: url(../img/mark2-removebg-preview2.png) right bottom no-repeat;
    background-size: contain;
}

.header p {
    color: #F5F5DC;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.header h1 {
    color: #222222;
    font-size: 50px;
    font-weight: 700;
}

.header h2 {
    display: inline-block;
    margin: 0;
    height: 25px;
    font-size: 25px;
}

.header .typed-text {
    display: none;
}

/* ✅ Header Intro Card (3D style like the others) */
.header-intro-card {
    position: relative;
    padding: 18px 30px;
    overflow: hidden;

    /* 3D green base (same vibe as other 3D panels) */
    background:
        linear-gradient(145deg, rgba(255,255,255,.18), rgba(0,0,0,.18)),
        #2fc100;

    /* 3D depth + bevel */
    box-shadow:
        0 28px 60px rgba(0,0,0,.55),
        0 0 0 1px rgba(0,0,0,.25),
        inset 3px 3px 0 rgba(255,255,255,.22),
        inset -5px -5px 0 rgba(0,0,0,.22);

    /* keep layout clean */
    border-radius: 35px; /* change to 14px if you want rounded like cards */
}

/* Shine layer */
.header-intro-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 10%,
        rgba(255,255,255,.35),
        rgba(255,255,255,0) 55%);
    opacity: .45;
}

/* Text above shine */
.header-intro-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #F5F5DC;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
}

/* Mobile padding */
@media (max-width: 576px) {
    .header-intro-card {
        padding: 16px 15px;
    }
}

.header .typed-cursor {
    font-size: 25px;
    font-weight: 300;
    color: #222222;
}

.large-btn .content-inner {
    font-size: 0;
    border-bottom: 30px solid #5A3A22;
}

.large-btn .btn {
    position: relative;
    width: 50%;
    padding: 15px 0;
    color: #F5F5DC;
    font-size: 20px;
    background: #222222;
    border-radius: 0;
}

.large-btn .btn:last-child {
    color: #F5F5DC;
    background: #8B5E3C;
}

.large-btn .btn i {
    margin-right: 8px;
}

.large-btn .btn::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    transition: all .3s;
}

.large-btn .btn:hover::after {
    width: 100%;
    background: rgba(255, 255, 255, .1);
}


/**********************************/
/******* Content Header CSS *******/
/**********************************/
.content-header {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.content-header h2 {
    color: #222222;
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
}

.content-header::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: #8B5E3C;
}


/**********************************/
/*********** About CSS ************/
/**********************************/
.about {
    position: relative;
    padding: 60px 30px;
    background: rgba(65, 255, 1, 0.70);
    border-bottom: 30px solid #5A3A22;
}

.about img {
    width: 100%;
    height: auto;
}

@media(max-width: 767.98px) {
    .about img {
        margin-bottom: 15px;
    }
}

.about .btn {
    border-radius: 0;
    color: #F5F5DC;
    background: #8B5E3C;
    transition: all .3s;
}

.about .btn:hover {
    color: #00c853;
    background: #222222;
}

.about .skills {
    padding-top: 15px;
}

.about .skill-name {
    margin-top: 15px;
}

.about .skill-name p {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

.about .skill-name p:last-child {
    float: right;
}

.about .progress {
    height: 5px;
    border: 1px solid #8B5E3C;
    border-radius: 0;
    background: #00c853;
}

.about .progress .progress-bar {
    width: 1px;
    background: #8B5E3C;
    border-radius: 0;
    transition: 1s;
}


/**********************************/
/********* Education CSS **********/
/**********************************/
.education {
    position: relative;
    padding: 60px 30px;
    background: rgba(65, 255, 1, 0.70);
    border-bottom: 30px solid #5A3A22;
}

.education .edu-col {
    position: relative;
    width: 100%;
    padding: 20px 0 20px 20px;
    border-left: 1px solid #8B5E3C;
    border-bottom: 1px solid #8B5E3C;
}

.education .col-md-6:first-child .edu-col {
    padding-top: 0;
}

.education .col-md-6:last-child .edu-col {
    border-bottom: none;
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .education .col-md-6:nth-child(-n+2) .edu-col {
        padding-top: 0;
    }

    .education .col-md-6:last-child .edu-col,
    .education .col-md-6:nth-last-child(2) .edu-col {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.education .edu-col span {
    position: relative;
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.education .edu-col span::before {
    position: absolute;
    content: "";
    width: 11px;
    height: 11px;
    background: #8B5E3C;
    top: 5px;
    left: -26px;
    border-radius: 5px;
}

.education .edu-col span i {
    color: #8B5E3C;
}

.education .edu-col h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.education .edu-col p {
    margin: 0;
}


/**********************************/
/********* Experience CSS *********/
/**********************************/
.experience {
    position: relative;
    padding: 60px 30px;
    background: rgba(65, 255, 1, 0.70);
    border-bottom: 30px solid #5A3A22;
}

.experience .exp-col {
    position: relative;
    width: 100%;
    padding: 20px 0 20px 20px;
    border-left: 1px solid #8B5E3C;
    border-bottom: 1px solid #8B5E3C;
}

.experience .col-md-6:first-child .exp-col {
    padding-top: 0;
}

.experience .col-md-6:last-child .exp-col {
    border-bottom: none;
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .experience .col-md-6:nth-child(-n+2) .exp-col {
        padding-top: 0;
    }

    .experience .col-md-6:last-child .exp-col,
    .experience .col-md-6:nth-last-child(2) .exp-col {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.experience .exp-col span {
    position: relative;
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.experience .exp-col span::before {
    position: absolute;
    content: "";
    width: 11px;
    height: 11px;
    background: #8B5E3C;
    top: 5px;
    left: -26px;
    border-radius: 5px;
}

.experience .exp-col span i {
    color: #8B5E3C;
}

.experience .exp-col h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.experience .exp-col h4 {
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 5px;
}

.experience .exp-col h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.experience .exp-col p {
    margin: 0;
}


/**********************************/
/*********** Service CSS **********/
/**********************************/
.service {
    position: relative;
    padding: 60px 30px 30px 30px;
    background: rgba(65, 255, 1, 0.70);
    border-bottom: 30px solid #5A3A22;
}

/* ✅ Make Service lines like Experience (left line + bottom line) */
.service .srv-col {
    position: relative;
    width: 100%;
    padding: 20px 0 20px 20px;
    border-left: 1px solid #8B5E3C;
    border-bottom: 1px solid #8B5E3C;
    margin-bottom: 0;
}

/* same logic as Experience */
.service .col-md-6:first-child .srv-col {
    padding-top: 0;
}

.service .col-md-6:last-child .srv-col {
    border-bottom: none;
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .service .col-md-6:nth-child(-n+2) .srv-col {
        padding-top: 0;
    }

    .service .col-md-6:last-child .srv-col,
    .service .col-md-6:nth-last-child(2) .srv-col {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.service .srv-col i {
    font-size: 30px;
    color: #8B5E3C;
    margin-bottom: 15px;
}

.service .srv-col h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}


/**********************************/
/********** Portfolio CSS *********/
/**********************************/
.portfolio {
    position: relative;
    padding: 60px 30px 30px 30px;
    background: rgba(65, 255, 1, 0.70);
    border-bottom: 30px solid #5A3A22;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 30px 0;
    list-style: none;
    font-size: 0;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    margin: 15px -1px 0 0;
    display: inline-block;
    height: 35px;
    padding: 10px;
    color: #666666;
    font-size: 13px;
    line-height: 15px;
    text-transform: uppercase;
    border: 1px solid #8B5E3C;
    background: rgba(65, 255, 1, 1);
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #8B5E3C;
    color: #222222;
}

.portfolio .portfolio-item {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio .portfolio-item figure {
    background: rgba(65, 255, 1, 0.70);
    overflow: hidden;
    height: 220px;
    position: relative;
    border-radius: 0;
    margin: 0;
}

.portfolio .portfolio-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio .portfolio-item figure:hover img {
    opacity: 0.3;
    transition: 0.3s;
}

.portfolio .portfolio-item figure .link-preview,
.portfolio .portfolio-item figure .link-details,
.portfolio .portfolio-item figure .portfolio-title {
    position: absolute;
    display: inline-block;
    opacity: 0;
    line-height: 1;
    text-align: center;
    width: 45px;
    height: 35px;
    background: #8B5E3C;
    transition: 0.2s linear;
}

.portfolio .portfolio-item figure .link-preview i,
.portfolio .portfolio-item figure .link-details i {
    color: #222222;
    padding-top: 10px;
    font-size: 16px;
}

.portfolio .portfolio-item figure .link-preview:hover,
.portfolio .portfolio-item figure .link-details:hover {
    background: #222222;
}

.portfolio .portfolio-item figure .link-preview:hover i,
.portfolio .portfolio-item figure .link-details:hover i {
    color: #8B5E3C;
}

.portfolio .portfolio-item figure .link-preview {
    left: 50%;
    top: calc(25% - 18px);
}

.portfolio .portfolio-item figure .link-details {
    right: 50%;
    top: calc(25% - 18px);
}

.portfolio .portfolio-item figure .portfolio-title {
    margin: 0;
    width: 100%;
    height: 50%;
    left: 0;
    right: 0;
    top: 100%;
    padding: 30px 10px;
    color: #222222;
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 111, 97, .5);
    border-radius: 0;
}

.portfolio .portfolio-item figure .portfolio-title:hover {
    text-decoration: none;
}

.portfolio .portfolio-item figure .portfolio-title span {
    display: block;
    margin-top: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
}

.portfolio .portfolio-item figure:hover .link-preview {
    opacity: 1;
    left: calc(50% - 61px);
}

.portfolio .portfolio-item figure:hover .link-details {
    opacity: 1;
    right: calc(50% - 61px);
}

.portfolio .portfolio-item figure:hover .portfolio-title {
    opacity: 1;
    top: 50%;
}


/**********************************/
/*********** Review CSS ***********/
/**********************************/
.review {
    position: relative;
    background: rgba(65, 255, 1, 0.70);
    border-bottom: 30px solid #5A3A22;
}

.review .content-inner {
    position: relative;
    padding: 60px 30px;
    background: url(../img/quote.png) right bottom no-repeat;
}

.review .review-text p {
    font-size: 18px;
    font-style: italic;
}

.review .review-img {
    display: flex;
    align-items: center;
}

.review .review-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
}

.review .review-name h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.review .review-name p {
    font-size: 14px;
    margin-bottom: 0;
}

.review .review-text .ratting {
    margin-bottom: 5px;
}

.review .review-text .ratting i {
    color: #8B5E3C;
    font-size: 14px;
}

.review .slick-slider:hover .slick-prev {
    left: 30px;
}

.review .slick-slider:hover .slick-next {
    right: 30px;
}

.review-slider .slick-prev,
.review-slider .slick-next {
    width: 35px;
    height: 35px;
    z-index: 1;
    opacity: 0;
    transition: .5s;
    background: rgba(255, 111, 97, .7);
}

.review-slider .slick-prev {
    left: 55px;
}

.review-slider .slick-next {
    right: 55px;
}

.review-slider.slick-slider:hover .slick-prev {
    left: 15px;
    opacity: 1;
}

.review-slider.slick-slider:hover .slick-next {
    right: 15px;
    opacity: 1;
}

.review-slider .slick-prev:hover,
.review-slider .slick-prev:focus,
.review-slider .slick-next:hover,
.review-slider .slick-next:focus {
    background: rgba(0, 0, 0, .7);
}

.review-slider .slick-prev:hover::before,
.review-slider .slick-prev:focus::before,
.review-slider .slick-next:hover::before,
.review-slider .slick-next:focus::before {
    color: #8B5E3C;
}

.review-slider .slick-prev::before,
.review-slider .slick-next::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    color: #00c853;
}

.review-slider .slick-prev::before {
    content: "\f104";
}

.review-slider .slick-next::before {
    content: "\f105";
}

.review-slider .slick-dots {
    bottom: 15px;
}

.review-slider .slick-dots li button:before {
    color: #00c853;
    font-size: 15px;
}

.review-slider .slick-dots li.slick-active button:before {
    color: #8B5E3C;
}

.review-slider.slick-slider {
    margin-bottom: 0;
}


/**********************************/
/*********** Contact CSS ***********/
/**********************************/
.contact {
    position: relative;
    padding: 60px 30px 30px 30px;
    background: rgba(65, 255, 1, 0.70);
}

.contact .contact-info {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.contact .contact-info p {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact .contact-info p i {
    width: 25px;
    color: #8B5E3C;
}

.contact .contact-info p a {
    color: #666666;
}

.contact .contact-info p a:hover {
    color: #8B5E3C;
    text-decoration: none;
}

.contact .social {
    font-size: 0;
}

.contact .social a {
    width: 35px;
    height: 35px;
    padding: 5px 0;
    color: #222222;
    background: #8B5E3C;
    border-radius: 0;
    margin-top: 15px;
    margin-right: 15px;
    transition: all .3s;
}

.contact .social a:last-child {
    margin-right: 0;
}

.contact .social a:hover {
    color: #8B5E3C;
    background: #222222;
}

.contact .form {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.contact .form .form-control {
    border-radius: 0;
}

.contact .form .form-control:focus {
    box-shadow: none;
    border-color: #8B5E3C;
}

.contact .form .btn {
    color: #222222;
    background: #8B5E3C;
    border-radius: 0;
    transition: all .3s;
}

.contact .form .btn:hover {
    color: #8B5E3C;
    background: #222222;
}


/**********************************/
/*********** Footer CSS ***********/
/**********************************/
.footer {
    position: relative;
    width: 100%;
    padding: 30px 30px 0 30px;
    background: #5A3A22;
}

.footer .col-md-6:last-child {
    text-align: right;
}

@media(max-width: 767.98px) {
    .footer .col-md-6,
    .footer .col-md-6:last-child {
        text-align: center;
    }
}

.footer p {
    color: #ffffff;
    margin: 0;
}

.footer a {
    color: #8B5E3C;
    font-weight: 600;
}

.footer a:hover {
    color: #41FF01;
}

/* ===== Compact Pro Collage Gallery (not too long) ===== */
.gallery-collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, 55px);
    gap: 12px;
}

.gallery-collage .g {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(0,0,0,.18);
    position: relative;
}

.gallery-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
}

.gallery-collage .g::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.18);
    opacity: 0;
    transition: opacity .2s ease;
}

.gallery-collage .g:hover::after {
    opacity: 1;
}

.gallery-collage .g1 { grid-column: 1 / 8;  grid-row: 1 / 6; }
.gallery-collage .g2 { grid-column: 8 / 13; grid-row: 1 / 4; }
.gallery-collage .g3 { grid-column: 8 / 13; grid-row: 4 / 6; }
.gallery-collage .g4 { grid-column: 1 / 5;  grid-row: 6 / 9; }
.gallery-collage .g5 { grid-column: 5 / 9;  grid-row: 6 / 9; }
.gallery-collage .g6 { grid-column: 9 / 13; grid-row: 6 / 9; }

@media (max-width: 991px) {
    .gallery-collage {
        grid-template-rows: repeat(10, 50px);
    }

    .gallery-collage .g1 { grid-column: 1 / 13; grid-row: 1 / 6; }
    .gallery-collage .g2 { grid-column: 1 / 7;  grid-row: 6 / 9; }
    .gallery-collage .g3 { grid-column: 7 / 13; grid-row: 6 / 9; }
    .gallery-collage .g4 { grid-column: 1 / 7;  grid-row: 9 / 11; }
    .gallery-collage .g5 { grid-column: 7 / 13; grid-row: 9 / 11; }
    .gallery-collage .g6 { display: none; }
}

@media (max-width: 575px) {
    .gallery-collage {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .gallery-collage .g1,
    .gallery-collage .g2,
    .gallery-collage .g3,
    .gallery-collage .g4,
    .gallery-collage .g5 {
        grid-column: auto;
        grid-row: auto;
        height: 220px;
    }
}

/* ===== 3D GREEN PANEL (ENTIRE SECTION BOX) ===== */
.about .content-inner,
.education .content-inner,
.experience .content-inner,
.service .content-inner,
.portfolio .content-inner,
.review .content-inner,
.contact .content-inner {
    position: relative;
    border-radius: 18px;
    padding: 34px 28px;

    background:
        linear-gradient(145deg, rgba(255,255,255,.18), rgba(0,0,0,.18)),
        #2fc100;

    box-shadow:
        0 28px 60px rgba(0,0,0,.55),
        0 0 0 1px rgba(0,0,0,.25),
        inset 3px 3px 0 rgba(255,255,255,.22),
        inset -5px -5px 0 rgba(0,0,0,.22);

    overflow: hidden;
}

.about .content-inner::before,
.education .content-inner::before,
.experience .content-inner::before,
.service .content-inner::before,
.portfolio .content-inner::before,
.review .content-inner::before,
.contact .content-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    pointer-events: none;
    background: radial-gradient(circle at 20% 10%,
        rgba(255,255,255,.35),
        rgba(255,255,255,0) 55%);
    opacity: .45;
}

.about .content-inner > *,
.education .content-inner > *,
.experience .content-inner > *,
.service .content-inner > *,
.portfolio .content-inner > *,
.review .content-inner > *,
.contact .content-inner > * {
    position: relative;
    z-index: 1;
}

/* ✅ Latest Update Feed (Facebook-like) */
.latest-feed {
    max-width: 720px;
    margin: 0 auto;
}

.latest-feed-scroll {
    max-height: 780px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
    scroll-behavior: smooth;
}

.feed-item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.feed-head {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
}

.feed-avatar img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.25);
}

.feed-meta h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.feed-meta small {
    color: rgba(255,255,255,0.75);
}

.feed-caption {
    padding: 0 16px 12px 16px;
}

.feed-caption p {
    margin: 0;
    line-height: 1.6;
}

.feed-photo {
    height: 360px;
    object-fit: cover;
}

.feed-arrow {
    width: 12%;
    opacity: .85;
}

.feed-arrow:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
}

.feed-actions {
    display: flex;
    justify-content: space-around;
    padding: 10px 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
}

.feed-actions a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 600;
}

.feed-actions a:hover {
    color: #ffffff;
}

.latest-feed-scroll::-webkit-scrollbar {
    width: 8px;
}

.latest-feed-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.latest-feed-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.25);
    border-radius: 10px;
}

.latest-feed-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.35);
}

.latest-feed-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.25) rgba(255,255,255,0.05);
}

/* ✅ REMOVE SHINE LAYER (less heavy on the eyes) */
.about .content-inner::before,
.education .content-inner::before,
.experience .content-inner::before,
.service .content-inner::before,
.portfolio .content-inner::before,
.review .content-inner::before,
.contact .content-inner::before,
.header-intro-card::before {
    display: none !important;
}

#mtfcAppPreview .modal-content,
#mtfcAppPreview .modal-body,
#mtfcAppPreview .modal-title,
#mtfcAppPreview p {
    color: #5A3A22 !important;
}

#paymentDetailsModal .modal-title,
#receiptDetailsModal .modal-title,
#billingDetailsModal .modal-title,
#paymentDetailsModal .modal-header,
#receiptDetailsModal .modal-header,
#billingDetailsModal .modal-header,
#paymentDetailsModal .close,
#receiptDetailsModal .close,
#billingDetailsModal .close,
#paymentDetailsModal .close span,
#receiptDetailsModal .close span,
#billingDetailsModal .close span {
    color: #5A3A22 !important;
}
/* ✅ Dark Chocolate for ALL headings/titles (keep paragraphs unchanged) */
.education .content-header h2,
.experience .content-header h2,
.service .content-header h2,

.education .edu-col span,
.education .edu-col span i,
.education .edu-col h3,

.experience .exp-col span,
.experience .exp-col span i,
.experience .exp-col h3,
.experience .exp-col h4,
.experience .exp-col h5,

.service .srv-col i,
.service .srv-col h3 {
    color: #3b2416; /* dark chocolate */
}
/* ===== Gallery Set Slider (keeps your collage layout) ===== */
.gallery-slider {
    position: relative;
}

.gallery-track {
    position: relative;
}

.gallery-slide {
    display: none;
}

.gallery-slide.is-active {
    display: block;
}

/* Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.55);
}

.gallery-nav.prev {
    left: -10px;
}

.gallery-nav.next {
    right: -10px;
}

/* Mobile: keep arrows inside */
@media (max-width: 575px) {
    .gallery-nav.prev { left: 6px; }
    .gallery-nav.next { right: 6px; }
}
/* Let the BODY background image show through */
.wrapper .content {
    background: transparent !important;
}

/* Make sections slightly transparent (so text stays readable) */
.about,
.education,
.experience,
.service,
.portfolio,
.review,
.contact {
    background: rgba(0, 0, 0, 0.35) !important;
}
.wrapper .sidebar {
    background: rgba(0, 0, 0, 0.65) !important;
}


/* ===== REMOVE REMAINING SOLID BROWN AREAS ===== */

/* Remove the fixed top/bottom brown bars */
@media (min-width: 768px) {
    .wrapper .content::before,
    .wrapper .content::after {
        background: transparent !important;
        display: none !important;
    }
}

/* Remove brown separators between sections (the thick brown strips) */
.large-btn .content-inner,
.about,
.education,
.experience,
.service,
.portfolio,
.review {
    border-bottom: none !important;
}

/* Footer brown -> make it dark transparent so bg image still shows */
.footer {
    background: rgba(0, 0, 0, 0.55) !important;
}
/* ===== GLASSY / TRANSPARENT SIDEBAR ===== */
.wrapper .sidebar,
.navbar {
    background: rgba(0, 0, 0, 0.25) !important;   /* transparent */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Side footer too (if visible) */
.sidebar .sidebar-footer {
    background: rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Make the menu item separators softer */
.navbar-expand-md .navbar-nav .nav-item {
    border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
}

/* Optional: make the menu items feel "glassy" on hover */
.navbar-expand-md .navbar-nav .nav-link:hover,
.navbar-expand-md .navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
}
/* ===== UNIFORM SEMI-TRANSPARENT GREEN PANELS ===== */
:root{
    --greenGlass: rgba(65, 255, 1, 0.55); /* adjust 0.45-0.75 */
}

/* Sections outer background */
.header,
.about,
.education,
.experience,
.service,
.portfolio,
.review,
.contact {
    background: var(--greenGlass) !important;
}

/* The big 3D inner panels you made */
.header-intro-card,
.about .content-inner,
.education .content-inner,
.experience .content-inner,
.service .content-inner,
.portfolio .content-inner,
.review .content-inner,
.contact .content-inner {
    background: var(--greenGlass) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
