/* ============================= */
/* -------- General CSS -------- */
/* ============================= */

body {
    color: #666666;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    background: #ffffff;
}

a {
    color: #AF9483;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #666666;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Solway', serif;
    color: #666666;
    margin: 0 0 15px 0;
    padding: 0;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #AF9483;
    color: #ffffff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
    color: #ffffff;
}



/* ============================= */
/* ------ Top Header CSS ------- */
/* ============================= */

.top-header {
    display: table;
    position: relative;
    width: 100%;
    height: 100vh;
    color: #ffffff;
    max-height: 65vh;   
    background-image: url("../img/home-banner.png");
}

.top-header:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    z-index: -1;
}

.top-header .container {
    position: relative;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.top-header img {
    height: 200px;
    margin-bottom: 30px;
    border: 15px solid rgba(256, 256, 256, .1);
}

.top-header h1 {
    font-size: 5vw;
    font-weight: 700;
    color: #2d1504;
    margin-top: 50px;
}


.top-header p {
    display: none;
}

.top-header h2 {
    display: inline-block;
    margin: 0;
    height: 40px;
    font-size: 3vw;
    font-weight: 400;
    color: #ec6a14;
}

.top-header .typed-cursor {
    font-size: 3vw;
}



/* ============================= */
/* -------- Header CSS --------- */
/* ============================= */

.header {
    background: #d8b187;
    height: 70px;
}

.header .logo {
    margin: 14px 25px 0 0;
}

.header .logo h1 {
    font-size: 36px;
    margin: 0;
    padding: 2px 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 3px;
}

.header .logo h1 a,
.header .logo h1 a:hover {
    color: #efe4ee;
}

@media (max-width: 768px) {
    .header {
        height: 50px;
    }
    
    .header .logo {
        margin: 10px 0 0 0;
    }
    
    .header .logo h1 {
        padding: 2px 0;
        font-size: 26px;
    }
}

.header .social-nav {
    margin-top: 15px;
}

.header .social-nav a {
    font-size: 24px;
    margin-left: 15px;
    color: #fff;
}

.header .social-nav a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu > li {
    float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}

.sf-arrows .sf-with-ul {
    padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 15px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}

#nav-menu-container {
    margin: 0;
}

@media (max-width: 768px) {
    #nav-menu-container {
        display: none;
    }
}

.nav-menu a {
    padding: 22px 15px;
    text-decoration: none;
    display: inline-block;
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
    outline: none;
}

.nav-menu a:hover,
.nav-menu li:hover > a,
.nav-menu .menu-active > a {
    color: #000000;
}

.nav-menu ul {
    margin: 7px 0 0 15px;
    -webkit-box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.08);
}

.nav-menu ul li {
    background: #ffffff;
    border-top: 1px solid #f4f4f4;
}

.nav-menu ul li:first-child {
    border-top: 0;
}

.nav-menu ul li:hover {
    background: #AF9483;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.nav-menu ul li a {
    color: #333333;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    padding: 10px 15px;
}

.nav-menu ul li a:hover {
    color: #ffffff;
}

.nav-menu ul ul {
    margin: 0;
}

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 8px 10px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #fff;
}

@media (max-width: 768px) {
    #mobile-nav-toggle {
        display: inline;
    }
    
    .logo {
        width: 100%;
        text-align: center;
    }
}

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.9);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #ffffff;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul li a:hover {
    color: #ffffff;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #ffffff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #AF9483;
}

#mobile-nav ul .menu-item-active {
    color: #AF9483;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    display: none;
}

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #ffffff;
}



/* ============================= */
/* ------- Header Title -------- */
/* ============================= */

.section-header h2,
.section-header h3 {
    display: inline-block;
    color: #AF9483;
    font-size: 35px;
    text-transform: capitalize;
    text-align: left;
    font-weight: 700;
    position: relative;
    padding-bottom: 5px;
    border-bottom: 1px solid #AF9483;
}

.section-header h2::before,
.section-header h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    bottom: 0px;
    right: 0;
    border-top: 10px solid;
    border-right: 10px solid;
    border-color: transparent #AF9483;
}

.section-header h2::after,
.section-header h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    bottom: 0px;
    left: 0;
    border-top: 10px solid;
    border-left: 10px solid;
    border-color: transparent #AF9483;
}

.section-header p {
    text-align: left;
    padding-bottom: 0px;
}

@media (min-width: 992px) {
    .section-header p {
        width: 70%;
    }
}



/* ============================= */
/* ------- About Me CSS -------- */
/* ============================= */

.about {
    padding: 60px 0 15px 0;
    position: relative;
}

.about .row {
    margin-bottom: 30px;
}

.about img {
    width: 500%;
    height: 400%;
}

.about h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
}

.about h4 {
    font-size: 16px;
    font-weight: 400;
}

.about p {
    font-size: 16px;
    font-weight: 300;
}

.about a {
    display: inline-block;
    padding: 6px 20px;
    color: #AF9483;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    border: 1px solid #AF9483;
}

.about a:hover {
    color: #ffffff;
    background: #AF9483;
}

.about .skills h3 {
    font-size: 22px;
    font-weight: 700;
    color: #666666;
    margin-bottom: 15px;
}

.about .skill-name {
    position: relative;
    width: 100%;
}

.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 {
    margin-bottom: 15px;
    border-radius: 0;
}

.about .progress .progress-bar {
    background: #AF9483;
    border-radius: 0;
}



/* ============================= */
/* ------- Experience CSS ------ */
/* ============================= */

.experience {
    position: relative;
    padding: 0;
}

.experience .section-header p {
    margin:0;
}

.experience .exp-column {
    margin-top: 30px;
    padding: 25px 30px;
    background: #e9ecef;
}

.experience .exp-column::before {
    position: absolute;
    content: "";
    height: 3px;
    top: 30px;
    right: 100%;
    left: 15px;
    background: #AF9483;
}

.experience .exp-column::after {
    position: absolute;
    content: "";
    height: 3px;
    bottom: 0;
    right: 15px;
    left: 100%;
    background: #AF9483;
}

.experience .exp-column:hover::before {
    transition: .3s;
    right: 15px;
}

.experience .exp-column:hover::after {
    transition: .3s;
    left: 15px;
}

.experience .exp-date {
    margin-bottom: 5px;
    color: #666666;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
}

.experience .exp-date span {
    font-weight: 400;
    font-style: italic;
}

.experience .exp-company {
    margin-bottom: 0;
    color: #AF9483;
    font-size: 18px;
    font-weight: 400;
}

.experience .exp-designation {
    margin-bottom: 10px;
    color: #999999;
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
}

.experience .exp-detail {
    margin-bottom: 0;
}



/* ============================= */
/* -------- Services CSS ------- */
/* ============================= */

.services {
    padding: 60px 0;
    text-align: center;
    background: #ffffff;
}

.services .section-header {
    text-align: left;
}

.services .section-header p {
    margin:0;
}

.services .single-service {
    position: relative;
    text-align: center;
    font-weight: 300;
    margin:30px 0 0;
    padding: 25px 15px 30px 15px;
    background: #e9ecef;
}

.services .single-service::before {
    position: absolute;
    content: "";
    height: 3px;
    top: 0;
    right: 100%;
    left: 0;
    background: #AF9483;
}

.services .single-service::after {
    position: absolute;
    content: "";
    height: 3px;
    bottom: 0;
    right: 0;
    left: 100%;
    background: #AF9483;
}

.services .single-service:hover::before {
    transition: .3s;
    right: 0;
}

.services .single-service:hover::after {
    transition: .3s;
    left: 0;
}

.services .single-service .service-icon {
    font-size: 60px;
    line-height: 60px;
    margin: 0 auto 20px;
    text-align: center;
    width: 120px;
    color: #AF9483;
}

.services .single-service h4,
.services .single-service h4 a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.services .single-service p {
    margin-bottom: 0;
}

.services .single-service span {
    position: absolute;
    height: 100%;
    width: 0;
    top: 0;
    left: 0;
    overflow: hidden;
    transition: 0.5s;
}



/* ============================= */
/* -------- Counter CSS -------- */
/* ============================= */

.counters {
    padding: 60px 0;
    position: relative;
    text-align: center;
    color: #ffffff;
    background: #AF9483;
}

.counters .counter .counter-icon-box {
    color: #ffffff;
    margin: 0;
    font-size: 50px;
    transition: all 400ms linear 0s;
}

.counters .counter:hover .counter-icon-box {
    transform: translateY(-15px);
}

.counters .counter .number {
    font-size: 70px;
    margin: 0 0 15px;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Solway', serif;
}

.counters .number:after {
    color: #fff;
    content: "+";
    font-size: 40px;
    position: absolute;
    top: calc(50% + 25px);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.counters .counter h4 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}



/* ============================= */
/* ------- Portfolio CSS ------- */
/* ============================= */

.portfolio {
    position: relative;
    clear: both;
    padding: 60px 0 30px 0;
}

.portfolio .section-header p {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 30px 0;
    list-style: none;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    margin: 15px -3px 5px -3px;
    display: inline-block;
    padding: 10px 15px;
    color: #AF9483;
    font-size: 14px;
    line-height: 15px;
    text-transform: uppercase;
    border: 1px solid #AF9483;
    background: #ffffff;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #AF9483;
    color: #ffffff;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-item {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio .portfolio-item figure {
    background: #AF9483;
    overflow: hidden;
    height: 220px;
    position: relative;
    border-radius: 0;
    margin: 0; 
}

.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: 60px;
    height: 40px;
    background: #ffffff;
    transition: 0.2s linear;
}

.portfolio .portfolio-item figure .link-preview i,
.portfolio .portfolio-item figure .link-details i {
    padding-top: 9px;
    font-size: 22px;
}

.portfolio .portfolio-item figure .link-preview:hover,
.portfolio .portfolio-item figure .link-details:hover {
    background: #AF9483;
}

.portfolio .portfolio-item figure .link-preview:hover i,
.portfolio .portfolio-item figure .link-details:hover i {
    color: #ffffff;
}

.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: #666666;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    background: rgba(256, 256, 256, .8);
    border-radius: 0;
}

.portfolio .portfolio-item figure .portfolio-title span {
    display: block;
    margin-top: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
}

.portfolio .portfolio-item figure:hover .link-preview {
    opacity: 1;
    left: calc(50% - 77px);
}

.portfolio .portfolio-item figure:hover .link-details {
    opacity: 1;
    right: calc(50% - 77px);
}

.portfolio .portfolio-item figure:hover .portfolio-title {
    opacity: 1;
    top: 50%;
}



/* ============================= */
/* ------ Testimonials CSS ----- */
/* ============================= */

.testimonials {
    background: url("../img/testimonial-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 40px 0 60px 0;
    text-align: center;
    position: relative;
}

.testimonials .container {
    max-width: 700px;
}

.testimonials::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(000, 000, 000, 0.7);
}

.testimonials .container {
    position: relative;
    z-index: 9;
}


.testimonials i {
    padding: 20px 0;
    color: #AF9483;
}

.testimonials .testimonial-item {
    text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
    width: 120px;
    border: 10px solid rgba(256, 256, 256, .1);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 15px 0 5px 0;
    color: #AF9483;
}

.testimonials .testimonial-item h4 {
    color: #999999;
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    margin: 0 0 10px 0;
}

.testimonials .testimonial-item p {
    color: #ffffff;
    font-weight: 300;
    margin: 0 auto;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffffff;
}

.testimonials .owl-dot.active {
    background-color: #AF9483;
}



/* ============================= */
/* -------- Contact CSS -------- */
/* ============================= */

.contact {
    position: relative;
    padding: 60px 0;
}

.contact .contact-info p {
    margin-bottom: 10px;
    color: #666666;
    font-size: 22px;
    font-weight: 300;
}

@media (max-width: 575px) {
    .contact .contact-info p {
        font-size: 16px;
    }
}

.contact .contact-info a {
    color: #666666;
}

.contact .contact-info a:hover {
    color: #AF9483;
}

.contact .contact-info i {
    width: 30px;
    color: #AF9483;
}

.contact .social {
    position: relative;
    width: 100%;
}

.contact .social a {
    display: inline-block;
    margin: 10px 10px 0 0;
    width: 40px;
    height: 40px;
    padding: 1px 0;
    text-align: center;
    font-size: 22px;
    border: 1px solid #AF9483;
}

.contact .social a i {
    color: #AF9483;
}

.contact .social a:hover {
    background: #AF9483;
}

.contact .social a:hover i {
    color: #ffffff;
}

.contact .form {
    color: #666666;
    font-weight: 300;
}

.contact .form input,
.contact .form textarea {
    color: #666666;
    font-size: 16px;
    font-weight: 300;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #AF9483;
    border-radius: 0;
    box-shadow: none;
}

.contact .form button[type="submit"] {
    padding: 7px 30px 10px 30px;
    color: #AF9483;
    letter-spacing: 1px;
    transition: 0.3s;
    cursor: pointer;
    border-radius: 0;
    border: 1px solid #AF9483;
    background: #ffffff;
}

.contact .form button[type="submit"]:hover {
    background: #AF9483;
    color: #FFFFFF;
}



/* ============================= */
/* --------- Footer CSS -------- */
/* ============================= */

.footer {
    position: relative;
    padding: 30px 0;
    text-align: center;
    background: #222222;
}

.footer .copyright p {
    color: #999999;
    font-size: 18px;
    font-weight: 300;
}

.footer .copyright p:last-child {
    margin: 0;
}
@media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1200px;
    }
}
.flip-card {
    background: transparent;
    width: 100%;
    height: 190px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 12px;
}

.flip-card:hover .flip-card-inner,
.flip-card:active .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.flip-card-front {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.flip-card-back {
    background: #749306;
    color: #fff;
    transform: rotateY(180deg);
    font-size: 17px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}
 .rc-section {
    padding: 50px 10px;
    background: linear-gradient(180deg, #fffaf7 0%, #f8f4f1 100%);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    color: #3f332b;
  }

  .rc-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .rc-heading {
    text-align: center;
    margin-bottom: 48px;
  }

  .rc-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin: 0 0 10px;
    color: #2b1a12;
    font-weight: 700;
  }

  .rc-underline {
    width: 96px;
    height: 5px;
    margin: 0 auto;
    border-radius: 3px;
    background: linear-gradient(90deg,#b18660 0%, #2b1a12 100%);
  }

  .rc-sub {
    color: #7a5e4a;
    margin-top: 18px;
    font-size: 16px;
  }

  .rc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
  }

  /* image card style */
  .rc-img-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(34,34,34,0.08);
    background: #fff;
  }

  .rc-img-card img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 240px;
    object-fit: cover;
  }

  /* small circular icon badge */
  .rc-badge {
    position: absolute;
    bottom: -18px;
    left: 18px;
    background: #111;
    color: #fff;
    border-radius: 14px;
    width: 56px;
    height: 56px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 10px 30px rgba(34,34,34,0.12);
    font-size:18px;
  }

  .rc-text {
    padding: 12px 6px 0 6px;
  }

  .rc-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #23160f;
    margin: 6px 0 12px;
    font-weight:700;
  }

  .rc-paragraph {
    color: #4a3a33;
    line-height: 1.85;
    font-size: 16px;
    text-align: justify;
  }

  /* Reverse row for the mission (image on the right) */
  .rc-row.reverse {
    direction: ltr; /* ensure normal text direction */
  }
  .rc-row.reverse .rc-img-card { order: 2; }
  .rc-row.reverse .rc-text { order: 1; }

  /* center mission block style (optional middle centered paragraph) */
  .rc-center {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 60px;
    color: #56433b;
    font-size: 16px;
    line-height: 1.9;
    max-width: 900px;
    margin: 30px auto;
  }

  /* responsive */
  @media (max-width: 900px) {
    .rc-row {
      grid-template-columns: 1fr;
    }
    .rc-badge {
      left: 14px;
      bottom: -16px;
    }
    .rc-heading h2 { font-size: 32px; }
  }
  .rc-img-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.06)); }
.about-detail {
    background: #f0efed;
    padding: 60px 0;
    font-family: "Inter", sans-serif;
}

/* Paragraph Styling */
.about-detail .txt-detail p {
    max-width: 1100px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.9;
    color: #3d2e23;
    text-align: justify;
}

/* Image Slider Wrap */
.image-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}

/* Hide Scrollbar */
.image-scroll-container::-webkit-scrollbar {
    display: none;
}

/* Slide Image Box */
.img-box {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 33.333%;
}

.img-box img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* Text Overlay */
.img-title {
    position: absolute;
    bottom: 18px;
    left: 20px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0,0,0,0.4);
    font-family: "Inter", sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .img-box {
        width: 85%;
    }
    .about-detail .txt-detail p {
        font-size: 16px;
    }
    .img-box img {
        height: 300px;
    }
}
.image-scroll-container {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.img-box {
    width: 350px;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.img-box:hover img {
    transform: translateX(-25px) scale(1.05);
}

.img-title {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 3px 6px rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.img-box:hover .img-title {
    opacity: 1;
    transform: translate(-50%, -8px);
}
.royal-gallery-section {
    background: #e5e5e5;
    padding: 60px 0;
}

.royal-gallery {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.royal-img-box {
    position: relative;
    flex: 1;
    height: 450px;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.royal-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease, filter .8s;
}

.royal-img-box:hover img {
    transform: translateX(-30px) scale(1.05);
    filter: brightness(0.75);
}

.royal-title {
    position: absolute;
    bottom: 20px;
    left: 25px;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0px 3px 8px rgba(0,0,0,0.7);
    transition: all .8s ease;
    opacity: 0;
}

.royal-img-box:hover .royal-title {
    opacity: 1;
    transform: translateY(-6px);
}

@media(max-width: 992px) {
    .royal-gallery {
        flex-direction: column;
        gap: 25px;
    }
    .royal-img-box {
        height: 350px;
    }
}
.career-section {
    padding: 60px 0;
    background: #f6f4f2;
    font-family: "Poppins", sans-serif;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #2b1a12;
    text-align: center;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #7b6a5a;
    margin-bottom: 40px;
    font-size: 18px;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 60px;
}

.step {
    background: #fff;
    padding: 25px;
    width: 290px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-number {
    font-size: 32px;
    font-weight: 900;
    color: #c19b6a;
    display: block;
    margin-bottom: 12px;
}

.office-culture img {
    width: 100%;
    border-radius: 12px;
    margin: 20px 0 50px;
}

.job-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.job-box {
    background: #2b1a12;
    padding: 18px 30px;
    color: #fff;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.job-box:hover {
    background: #c19b6a;
    color: #000;
}

.career-form form {
    display: flex;
    flex-direction: column;
    max-width: 550px;
    margin: auto;
    gap: 12px;
}

.career-form input {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.submit-btn {
    padding: 14px;
    border-radius: 8px;
    border: none;
    background: #2b1a12;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
}

.submit-btn:hover {
    background: #c19b6a;
}
.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #2b1a12;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: "";
    width: 80px;  /* underline size */
    height: 4px;  /* underline thickness */
    background: #c19b6a; /* premium gold */
    border-radius: 5px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.career-contact-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.career-img-side {
    flex: 1;
}

.career-img-side img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.career-form {
    flex: 1;
}

.form-title {
    font-size: 32px;
    font-weight: 800;
    color: #2b1a12;
    text-align: left;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 12px;
}

.form-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #c19b6a;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 5px;
}

.career-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.career-form input {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.submit-btn {
    padding: 14px;
    border-radius: 8px;
    border: none;
    background: #2b1a12;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
}

.submit-btn:hover {
    background: #c19b6a;
    color: #000;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .career-contact-section {
        flex-direction: column;
        text-align: center;
    }

    .form-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
.office-culture {
    text-align: center;
    margin-top: 80px;
}

.culture-ladder {
    margin-top: 50px;
    position: relative;
    
}

.culture-step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    position: relative;
}

.culture-step img {
    width: 100%;
    max-width: 350px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform .3s;
}

.culture-step img:hover {
    transform: scale(1.05);
}

.culture-text {
    font-size: 20px;
    font-weight: 700;
    color: #2b1a12;
}

/* Alignment Rule */
.culture-step.left {
    justify-content: flex-start;
}

.culture-step.right {
    justify-content: flex-end;
}

/* Decorative Vertical Line */
.culture-ladder::before {
    content: "";
    width: 4px;
    background: #c19b6a;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .culture-step {
        flex-direction: column !important;
        text-align: center;
    }
    .culture-ladder::before {
        display: none;
    }
}
.benefits-section {
    padding: 70px 20px;
    text-align: center;
    background: #e4c399; /* Royal Deep Blue */
    color: #201403;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2b1a12; /* Gold */
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Slider Wrapper */
.benefits-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    background-color: #e9ddca;
    height: 400px;
}
.benefits-slider::before,
.benefits-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
}

.benefits-slider::before {
    left: 0;
    background: linear-gradient(to right, #df7a7a, transparent);
}

.benefits-slider::after {
    right: 0;
    background: linear-gradient(to left, #e5752a, transparent);
}

.slider-track {
    display: flex;
    gap: 25px;
    animation: scroll 20s linear infinite;
    margin-top: 80px;
    margin-bottom: 30px;
}

.benefit-box {
    min-width: 250px;
    background: rgba(223, 57, 57, 0.08);
    padding: 25px 18px;
    border-radius: 15px;
    border: 1px solid rgba(47, 38, 7, 0.4);
    box-shadow: 0px 0px 12px rgba(54, 42, 3, 0.3);
    transition:cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.benefit-box:hover {
    transform: translateY(-10px);
    border-color: #382d0a;
    box-shadow: 0px 0px 25px rgba(212,175,55,0.7);
}

.benefit-icon {
    font-size: 45px;
    display: block;
    margin-bottom: 12px;
    animation: floating 1s infinite ease-in-out;
}

.benefit-box h3 {
    font-size: 20px;
    color: #2b1a12;
    margin-bottom: 10px;
}

.benefit-box p {
    font-size: 15px;
    line-height: 1.4;
}

/* Auto Sliding Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
    100% { transform: translateY(0); }
}

/* Mobile Responsive */
@media(max-width: 600px) {
    .benefit-box {
        min-width: 200px;
    }
}
.enquiry-unique {
    background: linear-gradient(135deg, #8f9ecc 30%, #d3bf65 100%);
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}


.enquiry-wrapper {
    display: flex;
    max-width: 1100px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: #10235c;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.enquiry-image {
    width: 50%;
}

.enquiry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enquiry-content {
    width: 50%;
    padding: 40px 35px;
    text-align: left;
    color: #fff;
}

.enquiry-head {
    font-size: 34px;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 8px;
}

.enquiry-tagline {
    font-size: 17px;
    color: #e7e3cf;
    margin-bottom: 25px;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: none;
    border-bottom: 2px solid #d4af37;
    background: transparent;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: #c9c9c9;
}

.enquiry-btn {
    width: 100%;
    padding: 14px;
    background: #d4af37;
    border: none;
    color: #0a1b4a;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.enquiry-btn:hover {
    background: #f6d87a;
    box-shadow: 0 0 20px rgba(212,175,55,0.8);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .enquiry-wrapper {
        flex-direction: column;
    }
    .enquiry-image,
    .enquiry-content {
        width: 100%;
    }
}
.royal-faq {
    background: linear-gradient(180deg, #e6eaf2 0%, #e6e9ee 60%);
    color: #010000;
    padding: 70px 20px;
    font-family: "Helvetica Neue", Arial, sans-serif;
  }

  .faq-container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .faq-title {
    color: #1f1905; /* gold */
    font-size: 34px;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
  }

  .faq-intro {
    color: #000205;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.5;
  }

  .faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .faq-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(4,10,30,0.4);
  }

  .faq-q {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #090000;
    font-size: 16px;
    text-align: left;
  }

  .faq-q:focus {
    outline: 2px solid rgba(212,175,55,0.25);
    outline-offset: 2px;
  }

  .faq-q-text {
    font-weight: 700;
    max-width: calc(100% - 40px);
  }

  .faq-toggle {
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(212,175,55,0.12);
    color: #171203;
    font-weight: 700;
    line-height: 34px;
    text-align: center;
    transition: transform .25s ease;
  }

  .faq-a {
    padding: 0 20px 20px 20px;
    color: #000205;
    line-height: 1.6;
    font-size: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
  }

  .faq-item.open .faq-a {
    padding: 12px 20px 20px 20px;
    max-height: 400px; /* large enough for content */
  }

  .faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: rgba(212,175,55,0.18);
    box-shadow: 0 6px 18px rgba(212,175,55,0.12);
  }

  /* Responsive */
  @media (max-width: 880px) {
    .faq-list { grid-template-columns: 1fr; }
    .faq-title { font-size: 28px; }
  }
.blog-grid-section {
    padding: 60px 0;
    background: #f8f2e8; /* Royal Carpet theme shade */
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 15px;
    transition: .3s ease-in-out;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.blog-image img {
    width: 100%;
    border-radius: 10px;
}

.blog-date {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    background: #aed973;
    color: #fff;
    padding: 3px 10px;
    border-radius: 5px;
    font-weight: 600;
}

.blog-title {
    font-size: 18px;
    margin-top: 12px;
    color: #1f1f1f;
    font-weight: 700;
    line-height: 1.4;
}

.blog-desc {
    margin-top: 10px;
    color: #4b4b4b;
    font-size: 14px;
    line-height: 1.5;
}

.read-more {
    display: inline-block;
    margin-top: 12px;
    color: #d451b1;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.read-more:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
.carpet-type-section {
        width: 80%;
        margin-left: 15%; /* Adjust as needed */
        text-align: justify;
        font-family: Arial, sans-serif;
        line-height: 1.6;
        padding-bottom: 20px;
    }

    .carpet-type-section h3 {
        font-size: 28px;
        font-weight: 700;
        color: #2d2d2d;
        margin-bottom: 15px;
    }

    .carpet-type-section p {
        font-size: 16px;
        color: #444;
        margin-bottom: 10px;
    }
    .carpet-tiles-section {
    padding: 60px 20px;
    background: #fff;
    font-family: 'Arial', sans-serif;
}

.carpet-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.carpet-card {
    text-align: left;
}

.carpet-card img {
    width: 100%;
    border-radius: 18px;
    transition: transform 0.4s ease;
}

.carpet-card img:hover {
    transform: scale(1.03);
}

.carpet-card h3 {
    margin-top: 12px;
    font-size: 20px;
    color: #000;
    font-weight: 800;
}

.carpet-card p {
    margin-top: 5px;
    font-size: 16px;
    color: #525252;
}

/* Responsive */
@media (max-width: 992px) {
    .carpet-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .carpet-container {
        grid-template-columns: repeat(1, 1fr);
    }
}
.image-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    width: calc(430px * 8); /* slide width + margin */
    animation: scroll 25s linear infinite;
}

.slide {
    width: 400px;       /* slide width */
    height: 350px;      /* increased height */
    margin: 0 15px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.product-section {
    padding: 40px 0;
}

.product-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 25px;
    margin-bottom: 40px;
    border: 1px solid #e5e5e5;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    color: #2b1a12;
    margin-bottom: 5px;
}

.product-sub {
    font-size: 18px;
    color: #6f6f6f;
    margin-bottom: 18px;
}

.read-more {
    font-weight: 600;
    color: #b37a49;
    text-decoration: none;
    letter-spacing: 1px;
}

.read-more span {
    font-size: 20px;
    vertical-align: middle;
    margin-left: 5px;
}
.support-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 28px;
    border: 1px solid #e7e7e7;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.support-icon {
    width: 110px;
    margin-bottom: 25px;
}

.support-title {
    font-size: 22px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 10px;
}

.support-text {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
    text-align: justify;
}

.support-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #b37a49;
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
}
    #mainHeader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: #f6efe8;
    }
    .center-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.quote-box {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px 40px;
    border: 1px solid #e5e5e5;
    border-left: 5px solid #b89b5e; /* luxury accent */
    border-right: 5px solid #b89b5e;
    background: #fafafa;
    border-radius: 8px;
    text-align: center;
}

.quote-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}



    /* Push page content below fixed header */
    body {
        padding-top: 120px;
    }