@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

body {
    margin: 0;
    font-family: "Playfair Display", serif;
}

.sn-service-area{
    padding:80px 0;
    background:#f5f6fb;
}

/* TEXT */
.sn-head h2{
    font-size:32px;
    color:#0c1c4c;
    line-height:1.4;
}
.sn-head em{
    color:#3b5cff;
}
.sn-head p{
    color:#666;
}

/* SLIDER */
.sn-slider{
    overflow:hidden;
}

.sn-track{
    display:flex;
    gap:25px;
    transition:0.6s ease;
}

/* CARD FIX */
.sn-card{
    flex:0 0 calc(33.333% - 17px); /* MAIN FIX */
    border-radius:12px;
    overflow:hidden;
    position:relative;
    background:#fff;
}

.sn-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

/* BOTTOM */
.sn-bottom{
    background:linear-gradient(90deg,#2b3cff,#3b5cff);
    color:#fff;
    padding:14px;
    text-align:center;
    font-weight:600;
}

/* OVERLAY */
.sn-overlay{
    position:absolute;
    inset:0;
    background:rgba(45,60,255,0.92);
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    opacity:0;
    transition:0.4s;
}

.sn-card:hover .sn-overlay{
    opacity:1;
}

.sn-overlay a{
    color:#fff;
    text-decoration:none;
    margin-top:10px;
}


/*details*/


.sn-post-area {
    padding: 80px 0;
    background: #f7f8fc;
    font-family: 'Poppins', sans-serif;
}

.sn-post-card {
    max-width: 900px;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

/* IMAGE */
.sn-post-img img {
    width: 100%;
    height: auto;
}

/* META */
.sn-post-meta {
    padding: 15px 25px;
    font-size: 13px;
    color: #6c757d;
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #eee;
}

/* CONTENT */
.sn-post-content {
    padding: 25px;
}

.sn-post-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.sn-post-content h3 {
    font-size: 20px;
    color: #0c1c4c;
    margin: 20px 0 10px;
}

/* INNER IMAGE */
.sn-inner-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.sn-inner-img img {
    width: 100%;
    border-radius: 6px;
}

/* QUOTE */
.sn-quote {
    background: #eef2ff;
    padding: 20px;
    border-left: 4px solid #3b5cff;
    margin: 20px 0;
    font-size: 15px;
    color: #333;
    font-style: italic;
}

/* SECTION */
.sn-blog-area {
    padding: 80px 0;
    background: #f7f8fc;
}

/* TITLE */
.sn-blog-title span {
    font-size: 12px;
    letter-spacing: 2px;
    color: #888;
}

.sn-blog-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0c1c4c;
    line-height: 1.4;
}

.sn-blog-title em {
    color: #3b5cff;
    font-style: italic;
}

/* CARD */
.sn-blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    position: relative;
}

.sn-blog-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.sn-blog-img {
    position: relative;
}

.sn-blog-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* PLAY */
.sn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #3b5cff;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTENT */
.sn-blog-content {
    padding: 20px;
    position: relative;
}

.sn-meta {
    font-size: 12px;
    color: #6c757d;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.sn-blog-content h3 {
    font-size: 18px;
    color: #0c1c4c;
    margin-bottom: 40px;
}

/* BUTTON */
.sn-btn {
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    background: #3b5cff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    opacity: 0;
    transition: 0.4s;
}

/* HOVER */
.sn-blog-card:hover .sn-btn {
    bottom: 20px;
    opacity: 1;
}

/* PAGINATION */
.sn-pagination {
    text-align: center;
    margin-top: 30px;
}

.sn-pagination span {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 12px;
    background: #eee;
    border-radius: 50%;
    cursor: pointer;
}

.sn-pagination .active {
    background: #3b5cff;
    color: #fff;
}

/*news*/

.bg-blog {
    background: #f7f8fc;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.blog-wrap {
    width: 1200px;
    margin: auto;
}

/* Title */
.blog-head {
    text-align: center;
    margin-bottom: 50px;
}

.blog-head span {
    font-size: 12px;
    letter-spacing: 2px;
    color: #7a7a7a;
}

.blog-head h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0c1c4c;
}

.blog-head em {
    color: #3b5cff;
    font-style: italic;
}

/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-6px);
}

/* Image */
.blog-img {
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Play button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #3b5cff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content */
.blog-content {
    padding: 20px;
}

/* Meta */
.blog-meta {
    font-size: 12px;
    color: #6c757d;
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

/* Title */
.blog-content h3 {
    font-size: 18px;
    color: #0c1c4c;
    line-height: 1.4;
}

/* Pagination */
.blog-page {
    text-align: center;
    margin-top: 40px;
}

.blog-page span {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 12px;
    background: #eee;
    border-radius: 50%;
    cursor: pointer;
}

.blog-page .active {
    background: #3b5cff;
    color: #fff;
}

/*why we re*/

.cs-section {
    padding: 80px 0;
    background: #f8f9fc;
    font-family: 'Poppins', sans-serif;
}

.cs-container {
    width: 1200px;
    margin: auto;
}

/* Title */
.cs-title {
    text-align: center;
    margin-bottom: 50px;
}

.cs-title span {
    font-size: 12px;
    letter-spacing: 2px;
    color: #6c757d;
}

.cs-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0d1b4c;
    margin-top: 10px;
}

.cs-title em {
    color: #b88a4c;
    font-style: italic;
}

/* Grid */
.cs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.cs-card {
    background: #fff;
    padding-bottom: 20px;
    transition: 0.3s;
}

.cs-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.cs-card:hover {
    transform: translateY(-5px);
}

/* Tag */
.cs-tag {
    display: inline-block;
    margin: 15px 20px 5px;
    font-size: 12px;
    color: #3b5cff;
}

/* Title */
.cs-card h3 {
    font-size: 20px;
    margin: 5px 20px;
    color: #0d1b4c;
}

/* Text */
.cs-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 10px 20px;
    line-height: 1.6;
}

/* Pagination */
.cs-pagination {
    text-align: center;
    margin-top: 40px;
}

.cs-pagination span {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 12px;
    border-radius: 4px;
    background: #eee;
    cursor: pointer;
}

.cs-pagination .active {
    background: #3b5cff;
    color: #fff;
}

/* TITLE */
.fx-title{
    text-align:center;
    margin:80px 0 50px;
}
.fx-title h5{
    color:#6c63ff;
    letter-spacing:2px;
    font-size:13px;
}
.fx-title h2{
    font-size:34px;
    font-weight:600;
}
.fx-title span{
    color:#6c63ff;
}

/* SERVICES GRID */
.fx-services{
    width:85%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}
.fx-card{
    background:#fff;
    border:1px solid #eee;
    padding:35px 20px;
    text-align:center;
    transition:.3s;
}
.fx-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}
.fx-icon{
    font-size:38px;
    color:#6c63ff;
}
.fx-card h4{
    margin: 18px 0 10px;
    font-size: 17px;
    font-weight: bold;
}
.fx-card p{
    font-size: 14px;
    color: #000;
    line-height: 23px;
}

/* SECTION */
.fp-section{
    padding:80px 0;
    background: #f2f3fa;
}

/* TOP TEXT */
.fp-top{
    width:85%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:40px;
}

.fp-left h2{
    font-size:32px;
    font-weight:600;
    color:#1d2b4f;
}
.fp-left span{
    color:#6c63ff;
    font-style:italic;
}

.fp-right{
    width:45%;
    font-size:14px;
    color:#666;
    line-height:1.7;
}

/* CARD GRID */
.fp-grid{
    width:85%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */
.fp-card{
    position:relative;
    overflow:hidden;
    border-radius:4px;
}

/* IMAGE */
.fp-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
}

.fp-slider {
  position: relative;
  overflow: hidden;
  width: 85%;
  margin: auto;
}

.fp-track {
  display: flex;
  transition: transform 0.5s ease;
}

.fp-card {
  min-width: 100%;
}

/* arrows */
.fp-prev, .fp-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 8px 15px;
  cursor: pointer;
  z-index: 2;
}

.fp-prev { left: 10px; }
.fp-next { right: 10px; }

/* dots */
.fp-dots {
  text-align: center;
  margin-top: 20px;
}

.fp-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.fp-dots .active {
  background: #c9a66b;
}

/* BOTTOM BAR */
.fp-overlay{
    position:absolute;
    bottom:0;
    width:100%;
    padding:14px 18px;
    background:linear-gradient(90deg,#1e1b4b,#3f3dff);
    display:flex;
    align-items:center;
    gap:10px;
}

/* ICON */
.fp-icon{
    font-size:18px;
    color:#00ff88;
}

/* TEXT */
.fp-title{
    color:#fff;
    font-weight:600;
    font-size:14px;
}

/* HOVER */
.fp-card:hover img{
    transform:scale(1.05);
    transition:.4s;
}


/* RESPONSIVE */
@media(max-width:900px){
.fx-services{grid-template-columns:repeat(2,1fr);}
.fx-plan-wrap{grid-template-columns:1fr;}
.fx-price-wrap{grid-template-columns:1fr;}
}




/* HERO */
.heros {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://stockintrades.com/beta/images/h4-bg-slider1.jpg');
  background-size: cover;
  background-position: center;
  padding: 150px 10%;
  color: #fff;
}

.heros h1 {
  font-size: 50px;
  font-weight: 700;
}

.heros h1 span {
  font-style: italic;
  color: #ccc;
}

/* CONTACT */
.contact-section {
  background: #f5f6fa;
  padding: 60px 10%;
}

.contact-box {
  display: flex;
  gap: 40px;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-left {
  flex: 1;
}

.contact-left h2 {
  color: #1c1c54;
  margin-bottom: 20px;
}

.contact-left span {
  color: #b89b66;
  font-style: italic;
}

.contact-left p {
  margin-bottom: 10px;
  color: #555;
}

.contact-left .link {
  color: #4a5cff;
  cursor: pointer;
}

/* FORM */
.contact-right {
  flex: 1;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  background: #f0f2f7;
  border-radius: 5px;
}

.contact-right textarea {
  height: 120px;
}

.contact-right button {
  background: #b89b66;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-right button:hover {
  transform: translateY(-2px);
}

/* OFFICES */
.offices {
  background: #0c1b4d;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 60px 10%;
}

.office {
  width: 30%;
}

.office h3 {
  margin-bottom: 15px;
}



/* SECTION */
.about{
    padding:100px 0;
}

.container{
    width:85%;
    margin:auto;
    display:flex;
    align-items:center;
    gap:80px;
}

/* LEFT IMAGE */
.left{
    position:relative;
    width:50%;
}

/* main image */
.img1{
    width:420px;
    border-radius:8px;
    position:relative;
    z-index:2;
}

/* small overlap image */
.img2{
    position:absolute;
    bottom:-60px;
    left:120px;
    width:300px;
    border-radius:8px;
    border:8px solid #fff;
    z-index:3;
}

/* dotted background */
.left::before{
    content:"";
    position:absolute;
    left:-60px;
    top:60px;
    width:140px;
    height:140px;
    background-image: radial-gradient(#ddd 2px, transparent 2px);
    background-size:12px 12px;
}

/* RIGHT */
.right{
    width:50%;
}

.right h5{
    color:#6c63ff;
    letter-spacing:2px;
    font-size:14px;
    margin-bottom:10px;
}

.right h2{
    font-size:36px;
    line-height:1.3;
    margin-bottom:35px;
}

.right h2 span{
    color:#6c63ff;
    font-weight:600;
}

/* PROGRESS */
.progress-box{
    margin-bottom:30px;
}

.progress-title{
    display:flex;
    justify-content:space-between;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
}

/* bar */
.bar{
    height:4px;
    background:#e5e5e5;
    border-radius:10px;
    position:relative;
}

.fill{
    height:100%;
    width:0;
    background:#4f46e5;
    border-radius:10px;
    position:relative;
    transition:width 2s ease;
}

/* circle bubble */
.fill::after{
    content:attr(data-width) "%";
    position:absolute;
    right:-18px;
    top:-22px;
    width:36px;
    height:36px;
    background:#1e1b4b;
    color:#fff;
    font-size:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-weight:600;
}

/* text */
.text{
    margin-top:25px;
    color:#666;
    line-height:1.7;
    font-size:14px;
}

/* RESPONSIVE */
@media(max-width:900px){
    .container{
        flex-direction:column;
    }
    .left,.right{
        width:100%;
    }
    .img2{
        left:80px;
    }
}


.logo{
    width:25%;
}
.logo img{
    width: 25%;
}

.menu li a {
  text-decoration: none;
  color: #222;
  padding: 10px 0;
  display: inline-block;
}

.menu li.active a {
  color: #c5a46d; /* তোমার screenshot এর gold color */
  /*border-bottom: 2px solid #c5a46d;*/
}

.main-header{
    background: transparent;
    padding: 15px 0;
    /*box-shadow: -5px 0 10px rgba(0, 0, 0, .31) inset;*/
    position: absolute;
    z-index: 9999999;
    width: 100%;
    margin: 30px auto 70px auto;

}

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

.menu{
    list-style:none;
    display:flex;
    gap:30px;
    margin:0;
}

.menu li{
    position:relative;
}

.menu li a{
    text-decoration:none;
    font-weight:500;
    color:#222;
    padding:10px 0;
}

.menu li.active a{
    color:#c5a46d;
}

.menu li.active::after{
    content:"";
    position:absolute;
    bottom:-15px;
    left:0;
    width:100%;
    height:3px;
    background:#c5a46d;
}

.dropdown:hover .submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}



/* main menu */
.menu li {
  position: relative;
}

/* dropdown base */
.submenu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 240px;
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);

  transition: all 0.3s ease;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0,0,0,0.05);
  z-index: 999;
}

/* show dropdown */

.menu > li.dropdown:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* gap remove + hover bridge */
.submenu li.dropdown {
  position: relative;
}

/* invisible hover bridge */
.submenu li.dropdown::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 20px;
  height: 100%;
}

/* nested submenu perfect alignment */
.submenu .submenu {
  top: 0;
  left: 100%;
  margin-left: 0; /* no gap */
}

/* submenu items */
.submenu li {
  position: relative;
  padding: 0;
}

/* link style */
.submenu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  transition: all 0.25s ease;
}

/* hover effect */
.submenu li:hover {
  background: rgba(201, 166, 107, 0.08);
}

.submenu li:hover > a {
  color: #c9a66b;
  padding-left: 25px;
}

/* divider (optional premium look) */
.submenu li:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

/* nested dropdown */
/* IMPORTANT: parent hover stable korte */
/* parent hover stable */
.submenu li {
  position: relative;
}

/* nested submenu (hidden by default) */
/* IMPORTANT: sob submenu hide by default */
.submenu .submenu {
  position: absolute;
  top: 0;
  left: 100%;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateX(10px);
  transition: all 0.25s ease;
}

/* ONLY open when hovering Case Study (dropdown li) */
.submenu li.dropdown:hover > .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}



/* arrow indicator */
.dropdown > a::after {
  content: "▾";
  font-size: 12px;
  margin-left: 6px;
}

/* right arrow for nested */
.submenu .dropdown > a::after {
  content: "▸";
  float: right;
}

/* smooth hover for nested */




.menu li.dropdown > a::after{
content:" ▼";
font-size:12px;
margin-left:5px;
}

#container{
    background: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    box-shadow: -5px 0 10px rgba(0, 0, 0, .31) inset;
}




.containers{
    width:85%;
    margin: 0 auto;
}
.sr-overlay p{
    width:70%;
}

.sr-service-box{
position:relative;
overflow:hidden;
height:280px;
}

.sr-service-box img{
width:100%;
height:100%;
object-fit:cover;
transition:0.8s ease;
transform:scale(1.1);
}

/* hover effect */
.sr-service-box:hover img{
transform:scale(1.1) translateX(20px);
}

/* overlay */

.sr-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
padding:60px 70px;
color:#fff;
display:flex;
flex-direction:column;
justify-content:center;
}

/* arrow */

.sr-arrow{
width:40px;
height:40px;
background:#b08d57;
border-radius:50%;
/*display:flex;*/
align-items:center;
justify-content:center;
margin-top:20px;
text-align: center;
line-height: 40px;
}

/*banner*/

.feature-area{
margin-top:-120px;
position:relative;
z-index:10;
}

.feature-wrapper{
display:grid;
grid-template-columns:repeat(3,1fr);
}

.feature-box{
padding:50px 45px;
color:#fff;
}

.box1{
background:#6a592f;
}

.box2{
background:#7e6a46;
}

.box3{
background:#ad8e63;
}
.top-text{
    color: rgb(209, 174, 124);
    letter-spacing: 4px;
}

.title{
display:flex;
align-items:center;
gap:15px;
margin-bottom:20px;
}

.title img{
width:40px;
}

.title h3{
font-size:24px;
font-weight:700;
font-family: "Playfair Display", serif;
}

.feature-box p{
font-size:15px;
margin-bottom:20px;
line-height:1.7;
}

.feature-box ul{
list-style:none;
padding:0;
}

.feature-box ul li{
margin-bottom:10px;
position:relative;
padding-left:18px;
}

.feature-box ul li::before{
content:"›";
position:absolute;
left:0;
font-size:18px;
}

.hero{
    position:relative;
    height:700px;
    background:url("https://stockintrades.com/beta/images/h4-bg-slider1.jpg") center/cover no-repeat;
    overflow:hidden;
    display:flex;
    align-items:center;
    padding: 100px 0;
}
.hero-content .btn{
        background: #b49254;
    color: #fff;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.3));
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:600px;
    /*margin-left:120px;*/
}

.hero-content h1{
    font-size:60px;
    line-height:1.2;
    margin:20px 0;
    font-family: "Playfair Display", serif;
    font-weight: bold;
}

.gold{
    color:#c9a35c;
}

.hero-content p{
    color:#ddd;
    margin-bottom:30px;
}

.btn{
    background:#c9a35c;
    border:none;
    padding:14px 30px;
    border-radius:30px;
    color:#fff;
    cursor:pointer;
}

.hero-image{
    position:absolute;
    right:100px;
    bottom:0;
    z-index:2;
}

.hero-image img{
    height:90vh;
    transform:translateX(100px);
    /*opacity:0;*/
    transition:0.8s ease;
}

.hero-image img.active{
    transform:translateX(0);
    opacity:1;
}

.nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:30px;
    color:#fff;
    cursor:pointer;
    z-index:3;
}

.prev{ left:40px; }
.next{ right:40px; }

/* Text animation */
.fade{
    animation:fadeIn 0.6s ease forwards;
}

@keyframes fadeIn{
    from{ opacity:0; transform:translateY(30px);}
    to{ opacity:1; transform:translateY(0);}
}

/*about*/

.about-section{
    padding:100px 0;
    background:#fefefe;
    font-family:'Segoe UI',sans-serif;
}

.about-container{
    width:85%;
    margin:auto;
    display:flex;
    gap:60px;
}
.sr-services-section{
    padding:50px 0;
}
.sr-services-section span{
    color: #000;
    font-family: "Playfair Display", serif;
    font-weight: bold;
}
.sr-title span{
    color: #b08c5a;
    font-family: "Playfair Display", serif;
    font-weight: bold;
}


.about-left ul li{
    line-height: 32px;
}

.about-left{
    flex:1;
}

.sub-title{
    font-size:12px;
    letter-spacing:3px;
    color:#999;
}

.about-left h2{
    font-size:36px;
    margin:20px 0;
    font-family: "Playfair Display", serif;
    font-weight: bold;
}

.about-left h2 span{
    color:#b08c5a;
    font-style:italic;
}

.about-left p{
    color:#000;
    line-height:1.7;
    margin-bottom:30px;
}

.about-list{
    display:flex;
    gap:50px;
    margin-bottom:30px;
}

.about-list li{
    margin-bottom:10px;
    list-style:"→ ";
        color: #000;
    font-weight: bold;
}

.call{
    margin-bottom:30px;
    font-weight: bold;
}

.call strong{
   
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    margin-left: 9px;
}

.signature{
    display:flex;
    align-items:center;
    gap:20px;
}

.signature img{
    width:100px;
}

.signature h4{
    margin:0;
    font-family: "Playfair Display", serif;
    font-weight: bold;
}

.signature span{
    color:#777;
    font-size:14px;
}

/* Right Side */
.about-right{
    flex:0.7;
}

.video-box{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:40px;
    
    box-shadow: 0px 25px 60px rgba(0,0,0,0.2);
}

.video-box img{
    width:100%;
    display:block;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    background:#b08c5a;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    cursor:pointer;
}

.counters{
    display:flex;
    justify-content:space-between;
}

.counter-box{
    text-align:center;
}

.counter-box h3{
    font-size:30px;
    margin-bottom:5px;
    color: #6a592f;
    font-weight: bold;
}

/*service*/

.service-area{
    padding:100px 0;
    background:#f5f5f5;
    font-family:'Segoe UI',sans-serif;
}

.counter-box p{
    font-weight: bold;
    font-size: 14px;
}
.container{
    width:90%;
    margin:auto;
    display:flex;
    gap:50px;
}

/* Services Grid */
.services-grid{
    flex:2;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.service-box{
    background:#fff;
    padding:30px;
    display:flex;
    gap:20px;
    align-items:flex-start;
    transition:0.3s ease;
    box-shadow: 0 4px 4px rgba(173, 142, 99, .63);

}

.service-box:hover{
    background:#ffffff;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* Icon */
.icon{
    width:40px;
    height:40px;
    background:#b08c5a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
    padding: 10px;
}

/* Text */
.service-box h4{
    margin-bottom:10px;
    font-size:18px;
    font-family: "Playfair Display", serif;
    font-weight: bold;
}
.sr-title{
    font-family: "Playfair Display", serif;
    font-weight: bold;
}
.sr-overlay h3{
    font-family: "Playfair Display", serif;
    font-weight: bold;
}

.service-box p{
    font-size:14px;
    color:#666;
    line-height:1.6;
}

/* Experience Box */
.experience-box{
    /*flex:1;*/
    /*background:#fff;*/
    /*border:6px solid #b08c5a;*/
    /*display:flex;*/
    /*align-items:center;*/
    /*justify-content:center;*/
}

.experience-inner img{
    width:100%;
    height: 585px;
}
.experience-inner{
    text-align:center;
}

.experience-inner h1{
    font-size:90px;
    margin:0;
    color:#b08c5a;
    font-weight:bold;
}

.experience-inner p{
    font-size:18px;
    color:#555;
}

/*design*/
.service-section{
    padding:100px 0;
    background:#f5f5f5;
}

.service-grid{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
}

.service-card{
    position:relative;
    height:320px;
    overflow:hidden;
    cursor:pointer;
}

/* Background image */
.item-image{
    position:absolute;
    top:0;
    left:-40px;
    width:calc(100% + 40px);
    height:100%;
    background-size:cover;
    background-position:center;
    transition:all 400ms cubic-bezier(.4,0,.2,1);
}

/* Hover move right */
.service-card:hover .item-image{
    left:0;
}

/* Dark overlay */
.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}

/* Content */
.content{
    position:relative;
    z-index:2;
    color:#fff;
    padding:60px;
}

.content h3{
    font-size:28px;
    margin-bottom:15px;
}

.content p{
    max-width:400px;
    margin-bottom:25px;
}

/* Round button */
.arrow{
    width:50px;
    height:50px;
    background:#b08c5a;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

/*case*/

.case-section{
    background:#f5f5f5;
    padding:120px 0 40px 0;
    font-family:'Segoe UI',sans-serif;
}

/* Header */
.case-header{
    width:90%;
    margin:0 auto 80px;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.case-header span{
    font-size:12px;
    letter-spacing:3px;
    /*background:#2f5bea;*/
    color:#000;
    padding:5px 12px;
        font-family: "Playfair Display", serif;
    font-weight: bold;
}
.case-header strong{
    letter-spacing: 0;
    color: #b08c5a;
}

.case-header h2{
    font-size:36px;
    margin:15px 0;
        font-family: "Playfair Display", serif;
    font-weight: bold;
    letter-spacing: 0;
}

.case-header h2 span{
    color:#b08c5a;
    font-style:italic;
}

.case-header p{
    max-width:500px;
    color:#000;
    line-height: 30px;
}

/* Cards Wrapper */
.case-wrapper{
    display:flex;
    width:90%;
    margin:auto;
}

/* Card */
.case-card{
    flex:1;
    position:relative;
}

/* Remove gap */
.case-card:not(:last-child){
    border-right:1px solid rgba(255,255,255,0.1);
}

/* Circle Image */
.case-img{
    width:180px;
    height:180px;
    border-radius:50%;
    overflow:hidden;
    margin:0 auto -90px;
    position:relative;
    z-index:2;
}

.case-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Content */
.case-content{
    padding:100px 40px 80px;
    color:#fff;
    height:300px;
    position:relative;
    transition:0.4s;
}

/* Different Background Shades */
.case-card:nth-child(1) .case-content{
    background:#6e5a2c;
}
.case-card:nth-child(2) .case-content{
    background:#8a6f3c;
}
.case-card:nth-child(3) .case-content{
    background:#b08c5a;
}

.case-content span{
    font-size:14px;
    opacity:0.8;
}

.case-content h3{
    margin:15px 0;
    font-size:20px;
    line-height:1.5;
    font-family: "Playfair Display", serif;
    font-weight: bold;
}

.case-content p{
    font-size:14px;
    opacity:0.9;
}

/* Black Arrow */
.case-arrow{
    position:absolute;
    bottom:-30px;
    left:40px;
    width:55px;
    height:55px;
    background:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    opacity:0;
    transform:translateY(30px);
    transition:0.4s ease;
}

/* Hover */
.case-card:hover .case-arrow{
    opacity:1;
    transform:translateY(0);
}

.case-card:hover .case-content{
    filter:brightness(1.1);
}

/*testimonials*/

.testimonial-section{
    background:#f5f5f5;
    padding:100px 0;
    text-align:center;
    overflow:hidden;
    font-family:'Segoe UI',sans-serif;
}

.section-title span{
    font-size:12px;
    letter-spacing:3px;
    color:#999;
}

.section-title h2{
    font-size:36px;
    margin:20px 0 70px;
}

.section-title h2 span{
    color:#c6a36e;
    font-style:italic;
}

.testimonial-wrapper{
    width:90%;
    margin:auto;
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    gap:40px;
    transition:transform 0.6s ease;
}

.testimonial-card{
    min-width:42%;
    background:#fff;
    padding:60px 40px;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:all 0.4s ease;
}

/* Hover Effect */
.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,0.1);
}

.testimonial-card::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:0;
    height:4px;
    background:#c6a36e;
    transition:0.4s;
}

.testimonial-card:hover::after,
.testimonial-card.active::after{
    width:100%;
}

/* Image */
.testimonial-card img{
    width:80px;
    height:80px;
    border-radius:50%;
    border:3px solid #c6a36e;
    margin-bottom:20px;
}

/* Quote */
.quote{
    position:absolute;
    top:20px;
    right:30px;
    font-size:90px;
    color:#e5e5e5;
    transition:0.4s;
}

.testimonial-card.active .quote,
.testimonial-card:hover .quote{
    color:#c6a36e;
}

/* Text */
.testimonial-card p{
    color:#555;
    line-height:1.7;
    margin-bottom:25px;
}

.testimonial-card h4{
    margin-bottom:5px;
}

.testimonial-card span{
    color:#999;
    font-size:14px;
}

/* Dots */
.dots{
    margin-top:40px;
}

.dot{
    width:8px;
    height:8px;
    background:#ccc;
    border-radius:50%;
    display:inline-block;
    margin:0 6px;
    cursor:pointer;
}

.dot.active{
    background:#c6a36e;
}

/*blog*/
.blog-card {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* Bottom gold border */
.blog-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: #c6a36e;
    transition: 0.4s;
}

.blog-card:hover::after {
    width: 100%;
}

/* Image */
.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

/* Dark overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

/* Plus circle */
.plus {
    width: 55px;
    height: 55px;
    background: #c6a36e;
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.5);
    transition: 0.4s;
}

/* Hover effect */
.blog-card:hover .overlay {
    opacity: 1;
}

.blog-card:hover .plus {
    transform: scale(1);
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-section {
    background: #f5f5f5;
    padding: 80px 0;
    font-family: 'Segoe UI', sans-serif;
}

.blog-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.sub-title {
    font-size: 12px;
    letter-spacing: 3px;
    color: #000000;
    font-family: "Playfair Display", serif;
    font-weight: bold;
}

.blog-header h2 {
    font-size: 36px;
    margin: 15px 0;
    font-family: "Playfair Display", serif;
    font-weight: bold;
}

.blog-header h2 span {
    color: #c6a36e;
    font-style: italic;
}

.blog-header p {
    color: #777;
    line-height: 1.7;
}

.blog-container {
    width: 85%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 13px;
    color: #999;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    font-weight: bold;
}

.blog-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s;
}

.blog-btn:hover {
    background: #c6a36e;
    color: #fff;
}
/*map*/
.quote-section {
    display: flex;
    min-height: 500px;
    flex-wrap: wrap;
}

/* Left Map */
.quote-map {
    flex: 1;
    min-width: 50%;
}

.quote-map iframe {
    width: 100%;
    height: 430px;
    border: 0;
}

/* Right Content */
.quote-content {
    flex: 1;
    min-width: 50%;
    background: url('https://images.unsplash.com/photo-1556157382-97eda2d62296')
                center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.quote-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.quote-inner {
    position: relative;
    color: #fff;
    padding: 60px;
    width: 100%;
}

.quote-inner h2 {
    font-size: 40px;
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
    font-weight: bold;
}

.quote-inner h2 span {
    color: #c6a36e;
    font-style: italic;
}

.quote-inner p {
    margin-bottom: 25px;
    color: #ccc;
    line-height: 1.6;
}

.quote-inner h4 {
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    font-weight: bold;
    font-size: 15px;
}

/* Form */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input {
    flex: 1;
    padding: 14px;
    border: none;
    background: #f3f3f3;
    font-size: 14px;
}

.form-row button {
    flex: 1;
    background: #b89b66;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.form-row button:hover {
    background: #a8874f;
}

/* Responsive */
@media(max-width: 992px){
    .quote-section {
        flex-direction: column;
    }

    .quote-map,
    .quote-content {
        min-width: 100%;
        height: 400px;
    }

    .quote-inner {
        padding: 40px;
    }

    .form-row {
        flex-direction: column;
    }
}

/*logo*/
.client-slider {
    background: #f5f5f5;
    padding: 40px 0;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 25s linear infinite;
}

.slide {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    max-width: 160px;
    opacity: 0.6;
    transition: 0.3s;
    filter: grayscale(100%);
}

.slide img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.client-slider:hover .slider-track {
    animation-play-state: paused;
}
/*footer*/

.main-footer {
    background: #000;
    color: #ccc;
    padding-top: 60px;
}

.footer-container {
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-size:20px;
    font-family: "Playfair Display", serif;
    font-weight: bold;
}

.footer-logo h2 {
    color: #fff;
    margin-bottom: 15px;
}
.footer-logo img{
    width:30%;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 14px;
    color:#fff;
}

.footer-col ul li a {
        text-decoration: none;
    color: #fff;
    transition: 0.3s;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0.6px;
}

.footer-col ul li a:hover {
    color: #d4af37;
    padding-left: 5px;
}
.footer-contact i{
    padding-right: 10px;
    color: #a98145;
}

.footer-contact li {
    margin-bottom: 10px;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.footer-gallery img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

/* Bottom Bar */

.footer-bottom {
    background: #111;
    margin-top: 50px;
    padding: 15px 0;
}

.footer-bottom-container {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
}
.social-icons i{
       width: 25px;
    height: 25px;
    background-color: #fff;
    color:#a98145;
    line-height: 25px;
    text-align: center;
    font-size: 15px;
    border-radius: 10px;
}

.social-icons a {
    color: #fff;
    margin-left: 10px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #d4af37;
}