/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  
  font-family: 'Squad', sans-serif;
  color: #2f2f2f;

  overflow-x: hidden;
}
a {
    text-decoration: none;
}
img.w-100 {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.homeblogbox p{
    color: #666;
    margin-bottom: 10px;
    line-height: 25px;
}
.homeblogbox ul{
    color: #666;
    margin-bottom: 10px;
    line-height: 25px;
}
.metab {
    color: #a67b5b;
    font-weight: 600;
    margin-bottom: 10px;
}
.blogdetails .mainTitle {
  
    font-size: 29px;
    margin: 0 0 12px;
    color: #3b5873;
    font-weight: 600;
}
p.cpric {
    color: #977053;
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 10px;
    display:none;
}
.fincon{
    width: 600px;
    box-shadow: 0px 2px 2px 2px #ddd;
    background: #fff;
    border-radius: 5px;
    padding: 35px;
    margin: 30px auto;
}
.result-header {
  padding: 15px 0;
  /*border-bottom: 1px solid #ddd;*/
  background: #f8f8f8;
}

.result-header .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.result-left {
  font-size: 16px;
  color: #333;
}

.result-left span {
  font-weight: bold;
}

.sort-select {
  padding: 8px 12px;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  background: #fff;
}
.agent-info span img {
    width: 20px;
    margin-right: 8px;
    height: auto;
    border-radius: unset;
}
 
.agent-info span {
    display: block;
    margin-top: 3px;
    display: flex;
    align-items: center;
}
.agent-info span a {
    color: #c28a4a;
    font-weight: bold;
}
.agent-info span a:hover {
    color: #2c4257;
}
  
/* Responsive */
@media (max-width: 768px) {
  .result-header .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .sort-select {
    width: 100%;
  }
}
.sidebar .card {
width: 350px;
    background: white;
    border-radius: 0px;
    box-shadow: none;
    overflow: hidden;
    border: 0px;
}
.main-header {
    width: 100%;
    position: fixed;
    top: 0;
    background: transparent;
    padding: 20px 0;
    z-index: 999;
    transition: 0.3s ease;
}

.main-header.sticky {
    background: #ffffffeb;
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    padding: 10px 0;
}

.header-inner {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.desktop-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.desktop-menu a {
   color: #2c4257;
    text-decoration: none;
    text-transform: uppercase;
   
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s 
ease; text-decoration: none;
    font-size: 15px;
    color: #2c4257;
    padding: 6px;
}

.desktop-menu a:hover {
    color: #c28a4a;
}

/* LOGO */
.header-logo img {
    height: 70px;
}

/* DESKTOP SUBMENU */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 40px;                  /* distance below parent */
    left: 0;                    /* align under parent */
    background: #243447;        /* dark blue like screenshot */
    width: 230px;
    padding: 12px 0;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    list-style: none;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 9999;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 10px 18px;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.submenu li a:hover {
    color:#c28a4a;
}

/* MOBILE BUTTON */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: #000;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    background: #fff;
    width: 100%;
    position: fixed;
    top: 80px;
    left: 0;
    padding: 20px;
    z-index: 998;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mobile-menu ul { list-style: none; }

.mobile-menu li {
    padding: 12px 0;
 
    justify-content: space-between;
    align-items: center;
}

.mobile-menu a {
    text-decoration: none;
    font-size: 18px;
    color: #222;
}

/* MOBILE SUBMENU */
.mobile-submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-submenu {
    display: none;
    list-style: none;
    padding-left: 20px;
    margin-top: 8px;
}

.mobile-submenu li a {
    display: block;
    padding: 8px 0;
    color: #333;
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

   @media (max-width: 992px) {

    .desktop-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-logo img {
        height: 55px;
    }

    /* Disable desktop submenu fully on mobile */
    .has-submenu .submenu {
        display: none !important;
        position: static !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        width: 100% !important;
    }

    /* MOBILE SUBMENU (your real mobile dropdown) */
    .mobile-submenu-toggle {
        display: block;
        position: relative;
        width: 100%;
    }

    .mobile-submenu-toggle a {
        display: block;
        width: 100%;
        font-size: 18px;
    }

    .dropdown-btn {
        position: absolute;
        right: 0;
        top: 5px;
        color:#000;
        background: none;
        border: none;
        font-size: 22px;
        cursor: pointer;
        padding: 0;
    }

    .mobile-submenu {
        display: none;
        list-style: none;
        padding-left: 20px;
        margin-top: 10px;
    }

    .mobile-submenu li a {
        display: block;
        padding: 8px 0;
        font-size: 16px;
        color: #444;
    }
}

}

/* Light */
@font-face {
  font-family: 'Squad';
  src: url('../fonts/Squad-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

/* Regular */
@font-face {
  font-family: 'Squad';
  src: url('../fonts/Squad-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: 'Squad';
  src: url('../fonts/Squad-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Apply it globally (optional) */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* BANNER */
.banner {
  height: 100vh;
  background: url("../images/banner.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* prevent banner hiding behind header */
  transition: transform 1s ease-in-out;
  animation: bgMove 20s ease-in-out infinite alternate;
  margin-bottom:100px;
}
@keyframes bgMove {
  0% {
    transform: scale(1) translateX(0%);
  }
  100% {
    transform: scale(1.2) translateX(5.4866%);
  }
}
.banner-content h1 {
  font-size: 80px;
  line-height: 1.1;
  color: white;
}

/* OPTIONAL: change header background on scroll */
body.scrolled .header {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 20px;
}

.card {
  background: white;
 border: 1px solid #af8057;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
      font-size: 22px;
    margin: 0 0 10px;
    color: #3b5873;
    font-weight: 600;
}
.details ul{list-style-type: none;
    display: flex;
    gap: 20px;
    color: #000000;
    font-size: 16px;
font-weight: 500;}
.details ul li{position:relative;}
.details ul li:last-child:after{
	opacity:0;
}
.section-title{ color: #af8057;
    font-family: Larken;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
  
}
.details ul li:after {
    color: #cdc6c6;
    content: "/";
    position: absolute;
    right: -13px;
    top: 0;
}
.status {
     color: #000000;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.details {
  display: flex;
  gap: 15px;
  font-size: 0.9rem;
  color: #333;
}


button.load {
 display: block;
    margin: 30px auto 0;
    padding: 10px 45px 10px 30px;
    background: #2d4257;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
}
.load:after {
    background-image: url(https://cdn5.ep.dynamics.net/__resources/img/right_arrow_large_white.a7caab2c1bff5e203d35ccd9c57b97c4.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 12px auto;
    bottom: 0;
    content: "";
    position: absolute;
    right: 17px;
    top: 0;
    width: 14px;
    transform: rotateZ(89deg);
}

button#loadMore:hover {
  background: #333;
}

.hidden {
  display: none;
}
.hidden1 {
  display: none;
}
.hidden2 {
  display: none;
}
.contact-section {

    padding: 50px 20px;
    background: #fff;
    max-width: 1200px;
    margin: 50px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
.tab-pane{
        display: grid;
	grid-template-columns:1fr 1fr;
    justify-content: center;
    align-items: flex-start;
}
  .contact-info, .contact-form {
    flex: 1;
    padding: 20px;
  }
  .teamitem .info img {
    width: 20px;
    margin-right: 8px;
    float: left;
}
.teamitem .info a{color:#C28A4A;}
.teamitem .info a:hover{color:#2c4257;}
.contact-info a {
    color: #c28a4a;
}
.contact-info a:hover {
    color: #2c4257;
}

  .contact-info h2 {
    font-size: 30px;
       color: #af8057;
    font-family: Larken;
  
font-weight: 500;
    margin-bottom: 14px;
  }

  .contact-info p {
    color: #666;
    margin-bottom: 20px;
    line-height:25px;
  }
  section.footer {
    background:#304156;
    padding: 20px 30px;
}
.ft{    display: flex;
    list-style-type: none;
    justify-content: center;
    gap: 20px;
padding-top: 28px;}
.ft a {
    color: #fff;
    text-decoration: none;
}
.ft li{position:relative;}
.ft  a:hover{color:#000;}
.ft li:after{color: #cdc6c6;
    content: "|";
    position: absolute;
    right: -13px;
top: 0;}
.ft li:last-child:after{opacity:0;}
.social{    display: flex
;
    list-style-type: none;
    justify-content: center;
    gap: 20px;
padding-top: 28px;}
.social img{
    width: 35px;
    border: 2px solid #a67b5b;
    padding: 5px;
    border-radius: 2px;
}
.copyright {
    background: #272524;
    text-align: center;
    padding: 20px 0px;
    margin: 0px;
}
.footer-logo {
    margin: 0 auto;
    text-align: center;
}
.footer-logo img{
	    width: 25%;
    height: auto;
  
margin: 0 auto;}
  .agent {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: #f7f8fa;
  }

  .agent img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 15px;
    
  }

  .agent-info {
    line-height: 1.2;
  }

  .agent-info h3 {
    margin: 0;
    font-size: 18px;
  }

  .agent-info span {
    font-size: 12px;
    color: #999;
  }

  .contact-info div {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #666;
  }

  .contact-info div span {
    margin-left: 8px;
  }

  /* Form Styles */
  .contact-form h2 {
    font-size: 18px;
    color: #b5a67a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .contact-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .contact-form form .full-width {
    grid-column: span 2;
  }

  input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #b5a67a;
    border-radius: 4px;
    box-sizing: border-box;
  }

  textarea {
    resize: vertical;
    min-height: 100px;
  }

  button {
    grid-column: span 2;
    padding: 12px;
    background: #2d4257;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
  }

  button:hover {
    background: #a67b5b;
  }
  button.dropdown-btn:hover{
    background: #fff;
  }
.subtitle {
      color: #888;
      margin-bottom: 40px;
    }

    .posts {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .postcard {
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }

    .postcard:hover {
      transform: translateY(-5px);
    }

    .postcard img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .postcard-content {
      padding: 20px;
      text-align: left;
    }

    .meta {
      font-size: 0.9em;
      color: #777;
      margin-bottom: 10px;
    }

    .meta a {
      color: #2db3a3;
      text-decoration: none;
    }

    .postcard h3 {
      margin: 5px 0 10px;
      font-size: 1.2em;
      color: #111;
    }

    .postcard p {
      font-size: 0.95em;
      line-height: 1.6;
      color: #555;
      margin-bottom: 15px;
    }

    .author {
      font-weight: 600;
      font-size: 0.9em;
      color: #333;
    }
    
    .submenu {
  display: none;
    position: absolute;
    top: 23px;
    left: 0;
    background: #304156;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
}

.submenu li {
  width: 100%;
}

.submenu a {
  display: block;
  padding: 10px 0px;
  color: #fff;
  font-size: 12px;
  transition: background 0.3s ease, color 0.3s ease;
}

.submenu a:hover {
  background: none;
  color: #fff;
}

/* Show submenu on hover */
.has-submenu:hover .submenu {
  display: block;
}
.testimonials {
  background: #f9fbfd;
  padding: 30px 20px;
  text-align: center;
  margin:30px 0px;
}



/* ---------- SLIDER ---------- */





/* ---------- SLIDER LAYOUT ---------- */
.testimonial-slider-wrapper {
  position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonial-slider {
   display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
 flex: 0 0 calc(33.333% - 20px); /* 3 cards per slide */
    margin: 0 10px;
    box-sizing: border-box;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #af8057;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #2c4257;
}

.client-role {
  color: #777;
  font-size: 14px;
}

/* ---------- BUTTONS ---------- */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0073e6;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.3s ease;
  z-index: 2;
}
.client-info h3 {
    color: #af8057;
}

#dots {
  text-align: center;
  padding: 15px 0;
}

.dot {
  height: 10px;
  width: 10px;
  background: #bbb;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #af8057;
  transform: scale(1.2);
}
  @media(max-width: 768px) {
    .contact-section {
      flex-direction: column;
    }
    section.footer {
    background: #304156;
    padding: 20px 10px;
}
.contact-info h2 {
    font-size: 24px;}
    .contact-form form {
      grid-template-columns: 1fr;
    }

    .contact-form form .full-width, button {
      grid-column: span 1;
    }
    .testimonial-card {
    flex: 0 0 100%;
  }
  

.section-title {
    color: #af8057;
    font-family: Larken;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 5px;}
    
.card{width:90%;}
.logo img {
    width: 80%;
    height: auto;
}
  }

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .header {
    padding: 20px 30px;
  }

  .menu-links {
    flex-direction: column;
    align-items: center;
  }

  .menu-links li {
    margin: 10px 0;
  }

  .menu-container {
    flex-direction: column;
    gap: 30px;
  }

  .close-btn {
    order: 3;
  }

  .banner-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 600px) {
  .menu-text {
    font-size: 12px;
  }

  .logo {
    font-size: 20px;
  }

  .banner-content h1 {
    font-size: 36px;
  }
  .contact-section{grid-template-columns:1fr;box-shadow: none;
        padding: 0px 20px;
        margin: 0px;}
   .menu-logo{        margin: 0 auto;
   text-align: center;}
  .menu-logo img {
    width: 30%;
}
.footer-logo img {
width: 45%;}
.footer-logo {
    margin: 0 auto;
    text-align: left;
}
.social {
justify-content: left;}
.ft {
    display: grid;
grid-template-columns: 1fr;}
.ft li:after{opacity:0;}
}

/*singlepage*/
.single .header {
    position: relative;
    background: #fff;
}
/*.single .hamburger span {*/
/*    background: #a67b5b;}*/
/*.single .menu-text{color:#a67b5b;}*/
.breadcrumb {
      font-size: 14px;
      color: #888;
      padding: 0px 0px 10px;
    }
    .breadcrumb a {
      color: #888;
      text-decoration: none;
    }
    .breadcrumb a:hover {
      text-decoration: underline;
    }

    .property-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 0px 20px;
      border-bottom: 1px solid #eee;
    }

    .property-header h1 {
      margin: 0;
      font-size: 28px;
      font-weight: 600;
      color: #3b5873;
    }

    .property-location {
      font-size: 14px;
      color: #777;
      margin-top: 5px;
      display:flex;
      gap:10px;
      align-items:center;
    }

    .property-price {
      text-align: right;
    }

    .price {
      font-size: 26px;
      font-weight: bold;
      color: #af8057;
    }

    .price-note {
      font-size: 13px;
      color: #999;
    }

    .gallery {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 10px;
      padding: 30px 0px;
    }

    .gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 6px;
    }

    .gallery .main {
      grid-row: span 2;
    }

    .show-photos {
      position: relative;
    }

    .show-photos button {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: #b38b00;
      color: white;
      border: none;
      font-size: 14px;
      padding: 10px 16px;
      border-radius: 4px;
      cursor: pointer;
      font-weight: 600;
    }

    .show-photos button:hover {
      background: #967500;
    }
.single .container{padding:30px 0px;}
svg {
    width: 25px;
    height: 25px;
}
path {
    fill: #af8057;
}

body.single {
    background: #F7F8FA;
}
.alldetail {
    background: #fff;
    padding:  30px;
    border-radius: 7px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.contsec {
    display: grid;
    gap: 20px 20px;
    grid-template-columns: 3fr 1.3fr;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  text-align: center;
}

.detail-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap:10px;
}

.detail-item .icon {
  font-size: 28px;
  color: #c7a000;
  margin-bottom: 10px;
}

.detail-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #3b5873;
}

.detail-item p {
  font-size: 11px;
  letter-spacing: 1px;
  color: #7d7d7d;
  text-transform: uppercase;
}

.property-description {
  margin-top: 40px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.property-description h2 {
     font-size: 22px;
    margin-bottom: 15px;
    color: #af8057;
    font-family: larken;
}

.property-description p {
    color: #000000;
    font-weight: 500;
    font-size: 15px;
    line-height:27px;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.content {
    text-align: left;
}
.property-info {
  background: #fff;
  border: 1px solid #eee;
  padding: 40px;
  border-radius: 8px;
  margin: 40px auto;
}
.location {
  background: #fff;
  border: 1px solid #eee;
  padding: 40px;
  border-radius: 8px;
  margin: 40px auto;
}

.details-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.details-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.details-column li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
  padding: 10px 0;
  font-size: 15px;
  color: #000;
}

.details-column li span {
  font-weight: 600;
  color: #3b5873;
}
.stitle{    font-size: 22px;
    margin-bottom: 15px;
    color: #af8057;
    font-family: larken;}
 section.sidebar {
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    height: 800px;border-radius: 7px;border-top:2px solid #af8057;}
.sidebar .form-group {
    margin-bottom: 18px;
}
button.btn-submit {
    width: 100%;
    background: #b68057;
}
.sticky-column {
    position: sticky;
    position: -webkit-sticky;
    top: 2.6rem;
}
.card-content h3 a{
    font-size: 22px;
    margin: 0 0 10px;
    color: #3b5873;
    font-weight: 600;
    text-decoration: none;
}

    @media (max-width: 900px) {
      .gallery {
        grid-template-columns: 1fr 1fr;
      }
      .gallery .main {
        grid-column: span 2;
      }
      .property-header {
        flex-direction: column;
        align-items: flex-start;
      }
      .details-columns {
   
    grid-template-columns: auto;
    gap: 40px;
}
.alldetail{padding:20px ;}
.property-description {padding:20px;}
.property-info {padding:20px;}
.location {padding:20px ;}
      .property-price {
        text-align: left;
        margin-top: 10px;
      }
      .single .container {
    padding: 30px;
}
.contsec {
    grid-template-columns: 1fr;
}
      .details-grid {
  display: grid;
  grid-template-columns: 1fr;}
    }
/* Grid Layout */
.advantage{margin-bottom:40px;}
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual Item */
.about-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 25px;
}

.advantage-item p {
    color: #666;
    margin-bottom: 20px;
    line-height: 25px;
}
.advantage-item {
   padding: 25px;
    margin: 0 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #af8057;
}

.advantage-item h3 {
    font-size: 22px;
    margin: 10px 0 16px;
    color: #3b5873;
    font-weight: 600;
}
.default-header{background:#F7F8FA;}
.team{display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;     margin-bottom: 50px;}
.teamitem{    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s 
ease;}
.teamitem img{width:100%;}
.team-content{padding:20px;}
.tname {
    font-size: 20px;
    color: #3b5873;
    font-weight: 600;
    margin-bottom:1px;
}
.team-content p{    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;}
  .team-content .info{
    font-size: 16px;
    color: #af8057;
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 700;

  }  
    
.bio-section {
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.8;
  background: #fff;
}

.bio-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
}

.bio-text p {
  margin-bottom: 20px;
  font-size: 16px;
}

.more-text {
  display: none;
}
.more-text1 {
  display: none;
}
.more-text2 {
  display: none;
}
.more-text3 {
  display: none;
}
.more-text4 {
  display: none;
}
.more-text5 {
  display: none;
}
.more-text6 {
  display: none;
}
.more-text7 {
  display: none;
}
.readmore-btn {
  background: none;
  border: 1px solid #222;
  color: #222;
  padding: 10px 25px;
  cursor: pointer;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.readmore-btn:hover {
  background: #222;
  color: #fff;
}
/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  .subtitle {
    font-size: 15px;
  }
  .tab-pane {

    grid-template-columns: 1fr ;
   
}
    .card {
        width: 100% !important;
    }
    .fincon {
        width: 100% ;
    }
    
    .banner {
    height: 43vh;
    background: url(../images/banner.png) center / cover no-repeat;
    width: 100%;
    margin-bottom: 20px;
    transition: none;
    animation: none;
    margin-bottom: 20px;
}
}



.card {
  width: 350px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

/*.header {*/
/*  background: #ffdd00;*/
/*  padding: 16px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 10px;*/
/*}*/

.brand-logo {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 4px;
}

.header h2 {
  font-size: 22px;
  font-weight: bold;
  margin: 0;
}

.agent {
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 15px;
}

.agent-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.agent-info h3 {
  margin: 0;
  font-size: 18px;
  color: #0055a5;
}

.rating {
  display: block;
  font-size: 14px;
  color: #444;
  margin-top: 3px;
}

.phone {
  display: inline-block;
  margin-top: 6px;
  padding: 5px 10px;
  background: #f2f2f2;
  border-radius: 6px;
  font-size: 13px;
}

.office {
  background: #fafafa;
  padding: 18px;
  border-top: 1px solid #eee;
}

.office h3 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #0055a5;
}

.office p {
  margin: 0;
  font-size: 14px;
  color: #333;
}
section.contact-form-box {
    margin-top: 22px;
}