
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
font-family:'Outfit', sans-serif;
margin:0;
scroll-behavior:smooth;
}

/* NAVBAR */

.custom-nav{
padding:10px 0;
position:fixed;
width:100%;
top:0;
z-index:1000;
transition:all 0.3s ease;
background:rgba(0,0,0,.75)
}

.custom-nav.sticky{
background:#0f172a;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
padding:15px 0;
}

.logo{
font-size:28px;
font-weight:700;
color:white;
display:flex;
align-items:center;
gap:8px;
}

.logo span{
color:#4B4116;
}

a.navbar-brand.logo {
    max-width: 100px;
    max-height: 80px;
}
a.navbar-brand.logo img {
    width: 125px;
    height: auto;
}

.custom-nav .nav-link{
color:white;
margin:0 9px;
font-weight:500;
font-size:15px;
opacity:.9;
}

.custom-nav .nav-link:hover{
color:#8F7B20;
}

.book-btn{
background:#ffffff;
border-radius:40px;
padding:6px 10px;
font-weight:500;
display:flex;
align-items:center;
gap:10px;
}

.book-btn:hover{
background:#8F7B20;
border-radius:40px;
padding:6px 10px;
font-weight:500;
display:flex;
align-items:center;
gap:10px;
}

.book-btn span{
background:#0f172a;
color:white;
width:32px;
height:32px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

/* HERO */

.hero{
height:calc(100vh);
padding-top:50px;
/* background:url('https://images.unsplash.com/photo-1551836022-d5d88e9218df') center/cover no-repeat; */
display:flex;
align-items:center;
position:relative;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.45);
}

.hero-content{
padding: 50px 0;
position:relative;
color:white;
max-width:850px;
margin:auto;
text-align:center;
}

.hero-subtitle{
letter-spacing:2px;
font-size:13px;
opacity:.85;
margin-bottom:18px;
}

.hero-title{
font-size:48px;
font-weight:700;
line-height:1.2;
}

.highlight{
color:#4B4116;
}

.hero-features{
margin-top:30px;
opacity:.9;
font-size:15px;
}

.hero-features span{
margin:0 12px;
}

/* SCROLL CIRCLE */


/* ✅ ROTATION (SVG FIX) */
.rot-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: auto;
}

.rot-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.rot-logo i {
    font-size: 30px;
    color: white;
}

.rot-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 12s linear infinite;
}

.rot-text svg {
    width: 100%;
    height: 100%;
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
/* RESPONSIVE */

@media(max-width:768px){

.hero-title{
font-size:36px;
}

.hero-features{
font-size:13px;
}

}

/* CLIENT LOGOS */

.client-logos{
position:absolute;
bottom:0;
width:100%;
padding:35px 0;
overflow:hidden;
}

.logo-slider{
width:100%;
overflow:hidden;
position:relative;
}

.logo-track{
display:flex;
align-items:center;
gap:80px;
width:max-content;
animation:scrollLogo 25s linear infinite;
}

.logo-track img{
height:40px;
opacity:.9;
transition:0.3s;
}

.logo-track img:hover{
opacity:1;
transform:scale(1.1);
}

/* pause on hover */

.logo-slider:hover .logo-track{
animation-play-state:paused;
}

@keyframes scrollLogo {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}


/* FOOTER */

.footer-section{
background:#4B4116;
color:white;
position:relative;
}

.footer-row{
padding:0px 15px;
padding-bottom: 0;
}

.footer-col {
    padding: 30px 25px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.footer-col:last-child{
border-right:none;
}

.footer-logo{
font-weight:700;
}

.footer-logo span{
color:#4B4116;
}

.footer-col h5{
margin-bottom:25px;
font-weight:600;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:12px;
}

.footer-col ul li a{
color:white;
text-decoration:none;
opacity:.8;
}

.footer-col ul li a:hover{
opacity:1;
}

/* SOCIAL */

.social-icons a{
width:40px;
height:40px;
background:#8F7B20;
color:black;
display:inline-flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin-right:10px;
font-size:18px;
text-decoration:none;
}

/* NEWSLETTER */

.newsletter-box{
display:flex;
background:transparent;
border:1px solid rgba(255,255,255,0.3);
border-radius:40px;
overflow:hidden;
margin-top:20px;
}

.newsletter-box input{
flex:1;
padding:14px 18px;
background:transparent;
border:none;
color:white;
outline:none;
}

.newsletter-box button{
width:60px;
background:#8F7B20;
border:none;
font-size:20px;
}

/* PRIVACY */

.privacy{
font-size:14px;
opacity:.9;
}

/* FOOTER BOTTOM */

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.2);
padding:20px;
font-size:14px;
background-color: #8F7B20 !important;
}

/* SCROLL TOP */

.scroll-top{
position:fixed;
right:30px;
bottom:30px;
width:50px;
height:50px;
background:#1a504b;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:20px;
cursor:pointer;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
}



/* REVIEW SECTION */
.assurance-badge i.bi.bi-check-lg {
    color: #fff !important;
}

.review-section{
background:#f3f3f3;
padding:50px 0;
overflow:hidden;
}

.review-slider{
width:100%;
overflow:hidden;
}

.review-track{
display:flex;
gap:30px;
width:max-content;
animation:reviewScroll 25s linear infinite;
}

/* pause animation */

.review-slider:hover .review-track{
animation-play-state:paused;
}

.review-card{
position:relative;
width:315px;
height:260px;
overflow:hidden;
border-radius:25px;
flex-shrink:0;
cursor:pointer;
}

.review-card img{
width:100%;
height:100%;
object-fit:cover;
transition:0.4s;
}

/* zoom effect */

.review-card:hover img{
transform:scale(1.1);
}

/* overlay */

.review-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.35);
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
opacity:0;
transition:0.3s;
}

.review-card:hover .review-overlay{
opacity:1;
}

/* instagram icon */

.review-overlay i{
width:70px;
height:70px;
background:#4B4116;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:black;
margin-bottom:20px;
}

/* username */

.review-user{
position:absolute;
bottom:20px;
color:white;
font-size:16px;
font-weight:500;
}

/* infinite animation */

@keyframes reviewScroll{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}


/* SUCCESS STORY */

.success-section{
background:#f3f3f3;
padding:50px 0;
}

.success-image-wrapper{
position:relative;
}

.success-img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 25px;
}

/* ROTATING BADGE */

.assurance-badge{
position:absolute;
top:-50px;
left:-50px;
width:160px;
height:160px;
display:flex;
align-items:center;
justify-content:center;
}

.badge-text{
position:absolute;
width:160px;
height:160px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
animation:rotateBadge 12s linear infinite;
}

.badge-text span{
color:white;
font-size:12px;
text-align:center;
padding:30px;
line-height:1.3;
}

/* INNER GREEN CIRCLE */

.badge-inner{
position:absolute;
width:90px;
height:90px;
background:#4B4116;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:40px;
color:#4B4116;
}

/* ROTATION */

@keyframes rotateBadge{
0%{ transform:rotate(0deg); }
100%{ transform:rotate(360deg); }
}

/* QUOTE CARD */

.quote-box{
position:absolute;
bottom:-40px;
right:30px;
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 40px rgba(0,0,0,0.15);
max-width:300px;
}

.quote-box h5{
font-weight:600;
line-height:1.4;
}

.signature{
font-family:cursive;
font-size:28px;
color:#4B4116;
margin-top:10px;
}

/* RIGHT CONTENT */

.success-subtitle{
letter-spacing:2px;
font-size:14px;
color:#666;
margin-bottom:10px;
}

.success-title{
font-size:42px;
font-weight:700;
margin-bottom:20px;
}

.success-text{
color:#666;
margin-bottom:30px;
}

/* PROGRESS */

.progress-item{
margin-bottom:20px;
}

.progress-label{
display:flex;
justify-content:space-between;
margin-bottom:6px;
font-weight:500;
}

.progress{
height:6px;
background:#ddd;
border-radius:10px;
overflow:hidden;
}

.progress-bar{
height:100%;
background:#4B4116;
}

.w-90{width:90%;}
.w-95{width:95%;}
.w-80{width:80%;}

/* BUTTON */

.success-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #4B4116;
    padding: 6px 15px;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    margin-top: 20px;
}

.success-btn:hover {
    background: #8F7B20;
}

.btn-arrow{
width:38px;
height:38px;
background:#0f172a;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

.badge-text img {
    width: 145px;
    height: auto;
}


/* JOURNEY SECTION */

.journey-section{
padding:50px 0;
background:#f3f3f3;
}

.journey-subtitle{
letter-spacing:2px;
color:#555;
font-size:14px;
}

.journey-title{
font-size:40px;
font-weight:700;
}

/* LEFT TABS */

.journey-tabs{
display:flex;
flex-direction:column;
gap:20px;
}

.journey-item{
display:flex;
align-items:center;
gap:15px;
padding:20px 25px;
border-radius:20px;
background:#fff;
font-weight:600;
cursor:pointer;
transition:0.3s;
border:1px solid #ddd;
}

.journey-item i{
font-size:28px;
color:#4B4116;
}

.journey-item.active{
background:#4B4116;
color:#fff;
}

.journey-item.active i{
color:#fff;
}

/* RIGHT CARD */

.journey-card{
background:#fff;
padding:25px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.journey-img{
border-radius:20px;
}

.journey-year{
font-size:14px;
letter-spacing:2px;
color:#555;
}

.journey-heading{
font-size:26px;
font-weight:700;
margin:10px 0 15px;
}

.journey-list{
padding-left:18px;
color:#555;
}

.journey-list li{
margin-bottom:12px;
}

.journey-content{
display:none;
}

.journey-content.active{
display:block;
}



/* CONTACT SECTION */

.contact-section{
background:#f8f8f8;
padding:50px 0;
}

.map-box{
height:420px;
border-radius:20px;
overflow:hidden;
filter:grayscale(100%);
}

.contact-subtitle{
letter-spacing:2px;
font-size:14px;
color:#555;
margin-bottom:10px;
}

.contact-title{
font-size:42px;
font-weight:700;
margin-bottom:15px;
}

.contact-text{
color:#666;
margin-bottom:30px;
line-height:1.6;
}

.contact-form{
display:flex;
flex-direction:column;
gap:20px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:16px 18px;
border-radius:12px;
border:1px solid #ddd;
outline:none;
font-size:15px;
background:white;
}

.contact-form input:focus,
.contact-form textarea:focus{
border-color:#4B4116;
}

/* BUTTON */

.contact-btn{
display:inline-flex;
align-items:center;
justify-content:space-between;
background:#4B4116;
color:#fff;
padding:6px 15px;
border-radius:40px;
font-weight:500;
border:none;
width:205px;
margin-top:10px;
transition:0.3s;
}

.contact-btn span{
background:#0f172a;
color:white;
width:38px;
height:38px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin-left:15px;
}

.contact-btn:hover{
transform:translateY(-1px);
background-color: #8F7B20;
}

/* RESPONSIVE */

@media(max-width:768px){

.contact-title{
font-size:30px;
}

.map-box{
height:300px;
}

}


/* FIXED SLIDER LAYOUT */
.services-section{
padding:50px 0;
background:#ffffff;
}

.services-title{
font-size:42px;
font-weight:700;
}

.services-text{
color:#666;
}

.services-link{
text-decoration:underline;
color:#000;
}
.services-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.services-slider {
    display: flex;
    gap: 25px;
    align-items: stretch;
    will-change: transform;
}

/* ✅ FIX CARD WIDTH */
.service-card {
    flex: 0 0 calc(25% - 19px); /* 4 columns perfect */
    max-width: calc(25% - 19px);
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

/* IMAGE FIX */
.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
}

/* CONTENT */
.service-card h5 {
    font-weight: 600;
    margin-top: 15px;
}

.service-card p {
    font-size: 14px;
    color: #666;
}

/* BUTTON */
.btn-learn {
    display: flex;              
    align-items: center;
    justify-content: center;   
    gap: 10px;
    background: #4B4116;
    padding: 6px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    width: 170px;
    margin: 10px auto 0;       
}

.btn-learn span {
    background: #0f172a;
    color: #fff;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* HOVER */
.service-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    background: #8F7B20;
    color: #ffffff;
}

.service-card:hover p {
    font-size: 14px;
    color: #fff;
}

/* ✅ RESPONSIVE FIX */

@media (max-width: 992px) {
    .service-card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .service-card {
        flex: 0 0 80%;
        max-width: 80%;
    }
}


a.whatsapp-float {
    bottom: 15px;
    right: 10px;
    position: fixed;
    width: 40px;
    height: 40px;
    background: #007740;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
    text-decoration: none;
}

/* Services Page  Css Start*/

 .services-hero {
      background-color: #f5f6f7;
      padding: 80px 0;
      padding-top: 150px;
    }

    .breadcrumb-custom {
      font-size: 16px;
      color: #6c757d;
    }

    .breadcrumb-custom a {
      text-decoration: none;
      color: #0d1b2a;
      font-weight: 500;
    }

    .breadcrumb-custom span {
      margin: 0 8px;
    }

    .services-hero .services-title {
      font-size: 48px;
      font-weight: 700;
      color: #0d1b2a;
      margin-top: 20px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .services-hero {
        padding: 50px 0;
      }

      .services-title {
        font-size: 36px;
      }

      .breadcrumb-custom {
        font-size: 14px;
      }
    }


    .services-hero {
  background: #f5f6f7;
  padding: 120px 0 60px;
}

.breadcrumb-custom {
  font-size: 15px;
  color: #666;
}



/* ================= SERVICES ================= */
.services-grid-section {
  background: #f8f8f8;
  padding: 80px 0;
}

.section-subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  color: #666;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* CARD */
.service-box {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #eee;
  background: #fff;
  overflow: hidden;
  transition: 0.4s ease;
  height: 100%;
}

/* ICON */
.service-box i {
  font-size: 32px;
  margin-bottom: 15px;
  color: #0f172a;
}

/* TEXT */
.service-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 14px;
  color: #666;
}

/* IMAGE LAYER */
.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: 0.5s ease;
  z-index: 1;
}

/* GREEN OVERLAY */
.service-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 77, 74, 0.85);
  opacity: 0;
  transition: 0.4s;
  z-index: 2;
}

/* KEEP CONTENT ABOVE */
.service-box * {
  position: relative;
  z-index: 3;
}

/* HOVER */
.service-box:hover::before {
  opacity: 1;
  transform: scale(1);
}

.service-box:hover::after {
  opacity: 1;
}

/* TEXT COLOR CHANGE */
.service-box:hover h5,
.service-box:hover p,
.service-box:hover i {
  color: #fff;
}

/* CARD LIFT */
.service-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* DIFFERENT IMAGES */
.image-1::before {
  background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f');
}

.image-2::before {
  background-image: url('https://images.unsplash.com/photo-1565514020179-026b92b2d0a4');
}

.image-3::before {
  background-image: url('https://images.unsplash.com/photo-1556745757-8d76bdb6984b');
}

.image-4::before {
  background-image: url('https://images.unsplash.com/photo-1526304640581-d334cdbbf45e');
}

.image-5::before {
  background-image: url('https://images.unsplash.com/photo-1581090700227-1e8a7aef3b92');
}

.image-6::before {
  background-image: url('https://images.unsplash.com/photo-1518779578993-ec3579fee39f');
}

.image-7::before {
  background-image: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df');
}

.image-8::before {
  background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0');
}

/* RESPONSIVE */
@media (max-width:768px){
  .services-title { font-size:36px; }
  .section-title { font-size:26px; }
}

/* Services Page  Css End*/

/* Single Services Page  Css Start*/

.single-service-section {
  padding: 60px 0;
  background: #f5f6f7;
}

/* SIDEBAR */
.service-sidebar {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
}

.sidebar-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-size: 16px;
}

.service-list li.active {
  color: #8F7B20;
  font-weight: 600;
}

/* CONTACT */
.contact-box {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.contact-box i {
  width: 40px;
  height: 40px;
  background: #8F7B20;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* VIDEO */
.video-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.video-card img {
  width: 100%;
  border-radius: 15px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1f4d4a;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT CONTENT */
.service-detail {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
}

.main-img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

.side-img {
  width: 100%;
  border-radius: 10px;
}

/* CHECK LIST */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1f4d4a;
}

.custom-accordion {
  margin-top: 20px;
}

/* ITEM */
.acc-item {
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e5e5e5;
  margin-bottom: 15px;
  overflow: hidden;
  transition: 0.3s;
}

/* HEADER */
.acc-header {
  width: 100%;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  background: #fff;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
.acc-header .icon {
  width: 55px;
  height: 35px;
  background: #8F7B20;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ACTIVE HEADER */
.acc-item.active .acc-header {
  background: #4B4116;
  color: #fff;
}

/* ACTIVE ICON */
.acc-item.active .icon {
  background: #8F7B20;
  color: #000;
}

/* BODY */
.acc-body {
  padding: 20px 25px;
  font-size: 15px;
  color: #555;
  background: #f5f6f7;
  display: none;
}

/* SHOW ACTIVE */
.acc-item.active .acc-body {
  display: block;
}

.acc-body {
  transition: all 0.3s ease;
}
/* Single Services Page  Css End*/

/* Contact Us Page Start*/
/* CONTACT DETAIL SECTION */

.contact-detail-section {
  padding: 80px 0;
  background: #f5f5f5;
}

/* LEFT */
.contact-small {
  font-size: 13px;
  letter-spacing: 2px;
  color: #666;
}

.contact-heading {
  font-size: 42px;
  font-weight: 700;
  margin: 10px 0 15px;
}

.contact-desc {
  color: #666;
  margin-bottom: 30px;
}

/* FORM */
.contact-detail-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-detail-form input,
.contact-detail-form textarea {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
  background: #fff;
}

.contact-detail-form textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.contact-send-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #4B4116;
  color: #fff;
  padding: 6px 15px;
  border-radius: 40px;
  border: none;
  width: 200px;
  font-weight: 500;
}

.contact-send-btn span {
  width: 38px;
  height: 38px;
  background: #0f172a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT IMAGE */
.contact-image-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.contact-image-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* OVERLAY */
.contact-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
}

.contact-overlay h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-overlay p {
  font-size: 14px;
  opacity: 0.9;
}

/* DOTS */
.dots {
  margin-top: 15px;
}

.dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin-right: 6px;
}

.dots .active {
  background: #fff;
}

.nav-bookbtn.ms-3 {
    max-width: 230px;
}
/* RESPONSIVE */
@media(max-width:768px){
  .contact-heading {
    font-size: 30px;
  }

  .contact-image-card img {
    height: 350px;
    margin-top: 20px;
  }
}
/* Contact Us Page End*/
@media(min-width:992px) and (max-width:1199.9px){
.custom-nav .nav-link {
    margin: 0 0px;
}
}

@media(min-width:576px) and (max-width:767.9px){
.hero {
    height: calc(125vh);
}
}

@media(min-width:426px) and (max-width:575.9px){
    
.hero-features {
        font-size: 13px;
        width: 100%;
        display: inline-grid;
    }

    .hero {
    height: calc(150vh);
    }
    .quote-box {
    position: relative;

}
.assurance-badge {
    position: absolute;
    left: -20px;
    }
}


@media(min-width:376px) and (max-width:425.9px){
    
.hero-features {
        font-size: 13px;
        width: 100%;
        display: inline-grid;
    }

    .hero {
    height: calc(150vh);
    }
    .quote-box {
    position: relative;

}
.assurance-badge {
    position: absolute;
    left: -20px;
    }
}
/* For very small screens, stack cards vertically */
@media(min-width:321px) and (max-width:375.9px){
    
.newsletter-box button {
    width: 95px;
}
      .newsletter-box input {
    max-width: 200px;
}
.hero-features {
        font-size: 13px;
        width: 100%;
        display: inline-grid;
    }

    .hero {
    height: calc(150vh);
    }
    .quote-box {
    position: relative;

}
.assurance-badge {
    position: absolute;
    left: -20px;
    }
}
/* Fix for rotating badge on small screens */
@media(max-width:320px){
    .assurance-badge {
    position: absolute;
    left: -20px;
    }
    .newsletter-box input {
    max-width: 200px;
}
.hero-features {
        font-size: 13px;
        width: 100%;
        display: inline-grid;
    }

    .hero {
    height: calc(150vh);
    }
    .quote-box {
    position: relative;

}
}

/* CONTACT US PAGE PT*/
/* ========================================
   GLOBAL COMMON STYLES (ALL PAGES)
======================================== */

body{
  font-family: 'Poppins', sans-serif;
  margin:0;
  padding:0;
}

.section-title{
  font-size:36px;
  font-weight:700;
}

.section-subtitle{
  font-size:13px;
  letter-spacing:2px;
  opacity:.8;
  margin-bottom:10px;
}

img{
  max-width:100%;
  display:block;
}

/* ========================================
   COMMON HERO BANNER (ABOUT / SERVICES / CONTACT)
======================================== */

.about-hero-banner,
.services-hero-banner,
.contact-hero-banner{
  position:relative;
  height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background-size:cover;
  background-position:center;
}

/* DIFFERENT BACKGROUNDS */

.about-hero-banner{
  background:url('https://images.unsplash.com/photo-1551836022-d5d88e9218df') center/cover no-repeat;
}

.services-hero-banner{
  background:url('https://images.unsplash.com/photo-1556745757-8d76bdb6984b') center/cover no-repeat;
}

.contact-hero-banner{
  background:url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d') center/cover no-repeat;
}

/* OVERLAY */

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

/* HERO CONTENT */

.hero-content{
  position:relative;
  color:#fff;
  max-width:750px;
  text-align:center;
}

.hero-subtitle{
  letter-spacing:2px;
  font-size:13px;
  opacity:.85;
  margin-bottom:15px;
}

.hero-title{
  font-size:42px;
  font-weight:700;
  line-height:1.3;
}

.hero-title span{
  color:#4B4116;
}

.hero-desc{
  margin-top:15px;
  opacity:.9;
}

/* ========================================
   ABOUT PAGE
======================================== */

.about-section{
  padding:80px 0;
}

.about-img{
  border-radius:20px;
}

.about-text{
  color:#666;
}

.about-stats{
  display:flex;
  gap:30px;
  margin-top:20px;
}

.about-stats h3{
  color:#4B4116;
}

/* MISSION */

.mission-section{
  padding:60px 0;
  background:#f8f9fb;
}

.mission-box{
  background:#fff;
  padding:30px;
  border-radius:15px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.3s;
}

.mission-box:hover{
  transform:translateY(-8px);
}

.mission-box i{
  font-size:30px;
  color:#4B4116;
  margin-bottom:10px;
}

/* ========================================
   SERVICES PAGE
======================================== */

.services-section-new{
  padding:80px 0;
}

.service-card-new{
  background:#fff;
  padding:30px;
  border-radius:15px;
  transition:0.3s;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  height:100%;
}

.service-card-new:hover{
  transform:translateY(-10px);
}

.service-card-new i{
  font-size:30px;
  color:#4B4116;
  margin-bottom:10px;
}

/* WHY SECTION */

.why-section{
  padding:80px 0;
  background:#f8f9fb;
}

.why-list{
  list-style:none;
  padding:0;
}

.why-list li{
  margin-bottom:10px;
  font-size:15px;
}

/* ========================================
   CONTACT PAGE
======================================== */

.contact-section-new{
  padding:80px 0;
  background:#f8f9fb;
}

.contact-wrapper{
  margin-top:-80px;
  position:relative;
  z-index:2;
}

/* LEFT INFO */

.contact-info-new{
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color:#fff;
  padding:40px;
  border-radius:20px;
  height:100%;
}

.contact-info-new h3{
  margin-bottom:10px;
}

.contact-info-new p{
  opacity:0.85;
}

.info-item{
  display:flex;
  align-items:flex-start;
  gap:15px;
  margin-top:25px;
}

.icon-box{
  width:45px;
  height:45px;
  background:#4B4116;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
}

/* FORM */

.contact-form-new{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.contact-form-new h3{
  margin-bottom:20px;
}

.contact-form-new input,
.contact-form-new textarea{
  width:100%;
  padding:14px;
  border:1px solid #ddd;
  border-radius:10px;
  outline:none;
  transition:0.3s;
  font-size:14px;
}

.contact-form-new input:focus,
.contact-form-new textarea:focus{
  border-color:#4B4116;
  box-shadow:0 0 0 2px rgba(75,65,22,0.1);
}

/* BUTTON */

.btn-send{
  background:#4B4116;
  color:#fff;
  border:none;
  padding:12px 25px;
  border-radius:50px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:0.3s;
}

.btn-send:hover{
  background:#8F7B20;
}

/* MAP */

.contact-map iframe{
  width:100%;
  height:350px;
  border:none;
}

/* ========================================
   RESPONSIVE (IMPORTANT)
======================================== */

@media(max-width:992px){

  .hero-title{
    font-size:34px;
  }

}

@media(max-width:768px){

  .about-hero-banner,
  .services-hero-banner,
  .contact-hero-banner{
    height:50vh;
  }

  .hero-title{
    font-size:26px;
  }

  .hero-desc{
    font-size:14px;
  }

  .about-stats{
    flex-direction:column;
  }

  .contact-wrapper{
    margin-top:0;
  }

  .contact-info-new,
  .contact-form-new{
    padding:25px;
  }

}
/* ========================================
   COMMON INNER PAGE CONTENT
======================================== */

.inner-page-section{
  padding:80px 0;
}

.inner-img{
  border-radius:20px;
}

.inner-text{
  color:#666;
  line-height:1.7;
}

/* FEATURES BOX */

.feature-box{
  background:#fff;
  padding:25px;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.3s;
  height:100%;
}

.feature-box:hover{
  transform:translateY(-8px);
}

.feature-box i{
  font-size:28px;
  color:#4B4116;
  margin-bottom:10px;
}

/* CTA SECTION */

.cta-section{
  background:#0f172a;
  color:#fff;
  padding:60px 0;
  text-align:center;
}

.cta-section h2{
  font-size:32px;
  margin-bottom:15px;
}

.cta-btn{
  background:#4B4116;
  color:#fff;
  padding:12px 25px;
  border-radius:40px;
  display:inline-block;
  margin-top:15px;
}

.cta-btn:hover{
  background:#8F7B20;
}



/* services */
.services-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.services-slider::-webkit-scrollbar {
  display: none;
}

.service-card {
  min-width: 280px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* review */
.review-section {
    background: #f8f9fb;
    padding: 80px 0;
}

/* SCROLL AREA */
.review-wrapper {
 
      overflow-x: auto;
    scroll-behavior: smooth;
    cursor: grab;

    scroll-snap-type: x mandatory;

    /* HIDE SCROLLBAR */
    -ms-overflow-style: none;  /* IE */
    scrollbar-width: none;     /* Firefox */
}

/* HIDE SCROLLBAR */
.review-wrapper::-webkit-scrollbar {
    display: none;
}

/* TRACK */
.review-track {
    display: flex;
    gap: 25px;
    padding: 10px;
}

/* CARD */
.review-card {
    min-width: 480px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: 0.3s;

    /* SNAP */
    scroll-snap-align: start;
}

.review-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.review-img {
    width: 110px;
    height: 110px;
    min-width: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #0d6efd;
}

.review-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.review-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.review-content h6 {
    margin: 0;
    font-weight: 600;
}

.review-content span {
    font-size: 13px;
    color: #888;
}

.stars {
    color: #ffc107;
    margin-bottom: 8px;
}

/* DRAG CURSOR */
.review-wrapper:active {
    cursor: grabbing;
}
.review-wrapper.dragging {
    cursor: grabbing;
}






/* service page extra css */
.ica-sidebar-card {
    background: #0f172a;
    color: #fff;
    padding: 35px;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ica-sidebar-title {
    margin-bottom: 20px;
    font-weight: 700;
    border-left: 4px solid #4B4116;
    padding-left: 15px;
}

.ica-sidebar-text {
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.ica-sidebar-hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 25px 0;
}

.ica-feature-list {
    list-style: none;
    padding: 0;
    line-height: 2;
}

.ica-feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ica-feature-list li i {
    color: #FFD700;
    margin-right: 10px;
}

.ica-stats-row {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.ica-stat-val {
    color: #4B4116;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.ica-service-card {
    position: relative;
    min-height: 180px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.3s ease;
}

.ica-service-card:hover {
    transform: translateY(-5px);
}

.ica-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
}

.ica-card-body {
    position: relative;
    z-index: 2;
    padding: 25px;
}

.ica-offer-section {
    padding: 100px 0;
    background: #f4f7fa;
    position: relative;
    overflow: hidden;
}

.ica-circle-bg {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(75, 65, 22, 0.05);
    border-radius: 50%;
}

.ica-offer-img-box {
    position: relative;
}

.ica-offer-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px #0f172a;
}

.ica-offer-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #4B4116;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.ica-quote-box {
    margin-top: 30px;
    padding: 25px;
    background: #fff;
    border-left: 6px solid #4B4116;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ica-growth-card {
    background: #f8f9fb;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
    height: 100%;
}

.ica-growth-card:hover {
    background: #0f172a;
    color: #fff;
}

.ica-growth-card:hover i {
    color: #fff !important;
}

/* about page extra css */
/* Prefix 'al-' to ensure uniqueness */

.al-about-hero {
    position: relative;
    padding: 100px 0;
    background: #0f172a; /* Fallback */
    color: #fff;
}

.al-section-subtitle {
    color: #ffc107;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.al-main-heading {
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

.al-text-justify {
    text-align: justify;
    line-height: 1.8;
    color: #555;
}

/* Vision Mission Ambition Boxes */
.al-info-card {
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: 0.3s;
}

.al-card-vision { border-left: 6px solid #ffc107; }
.al-card-mission { border-left: 6px solid #0d6efd; }
.al-card-ambition { border-left: 6px solid #198754; }

.al-card-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 10px;
}

/* Chairman Section */
.al-chairman-section {
    background: #0f172a;
    color: #fff;
    padding: 80px 0;
}

.al-chairman-img-wrapper {
    border: 2px solid #ffc107;
    padding: 10px;
    border-radius: 20px;
    display: inline-block;
}

.al-chairman-img {
    border-radius: 15px;
    max-height: 450px;
    width: 100%;
    object-fit: cover;
}

.al-chairman-name {
    color: #ffc107;
    font-weight: 800;
    margin-top: 20px;
}

.al-msg-highlight {
    font-size: 1.2rem;
    color: #ffc107;
    font-weight: 700;
    margin: 25px 0;
    text-transform: uppercase;
}

.al-msg-para {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Footprint Section */
.al-footprint-section {
    padding: 80px 0;
    background: #fff;
}

.al-quote-box {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-top: 4px solid #0f172a;
}

.al-quote-text {
    font-style: italic;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
}
/* Unique Team Section Styles */
.al-team-intro-section {
    padding: 80px 0;
    background: #fff;
}

.al-hexagon-wrapper {
    max-width: 400px;
    margin: 0 auto 30px;
    position: relative;
}

.al-hexagon-img {
    width: 100%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    border: 5px solid #ffc107;
}

.al-team-grid {
    padding: 60px 0;
    background: #fdfdfd;
}

.al-member-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    border-left: 5px solid #ffc107;
    transition: 0.3s;
}

.al-member-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.al-member-img-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 25px;
    border: 3px solid #ffc107;
    flex-shrink: 0;
}

.al-member-info h4 {
    color: #ffc107;
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 1.25rem;
}

.al-member-info h6 {
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.al-member-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.al-team-quote {
    color: #ffc107;
    font-style: italic;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 15px;
}

/* accounting service internal page css */

.ica-acc-hero-overlay {
    background: rgba(15, 23, 42, 0.85);
}

.ica-acc-img-container {
    position: relative;
}

.ica-acc-main-img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px #4B4116;
}

.ica-acc-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #0f172a;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    border-left: 5px solid #4B4116;
    z-index: 2;
}

.ica-acc-justify-text {
    text-align: justify;
    line-height: 1.8;
}

.ica-acc-feature-box {
    border-radius: 15px;
}

.ica-acc-heading-gold {
    color: #4B4116;
}

.ica-acc-objective-card {
    transition: all 0.3s ease;
}

.ica-acc-objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.ica-acc-title-line {
    width: 60px;
    height: 3px;
    background: #4B4116;
    margin: 15px auto;
}

.ica-acc-cta-section {
    background: #0f172a;
}

/* tax corporate service internal page css */
.ica-tax-hero-overlay {
    background: rgba(15, 23, 42, 0.88);
}

.ica-tax-card-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-top: 5px solid #4B4116;
}

.ica-tax-img-frame {
    position: relative;
    z-index: 1;
}

.ica-tax-img-frame img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px #4B4116;
}

.ica-tax-law-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #0f172a;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.ica-tax-feature-box {
    background: #f8fafc;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.ica-tax-feature-box:hover {
    border-bottom: 3px solid #4B4116;
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.ica-tax-icon-circle {
    width: 50px;
    height: 50px;
    background: #4B4116;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.ica-tax-obj-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.ica-tax-obj-item:hover {
    border-color: #4B4116;
    background: #fcfbf7;
}

.ica-tax-faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ica-tax-faq-accordion .accordion-button {
    font-weight: 700;
    padding: 20px;
    color: #0f172a;
    background: #fff;
}

.ica-tax-faq-accordion .accordion-button:not(.collapsed) {
    background: #fcfbf7;
    color: #4B4116;
    box-shadow: none;
}

.ica-tax-cta {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1454165205744-3b78555e5572') center/cover;
    padding: 80px 0;
    border-radius: 30px;
}

/* vat advisory service internal page css */
.ica-vat-hero-overlay {
    background: rgba(15, 23, 42, 0.85);
}

.ica-vat-card-main {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.ica-vat-img-wrapper {
    position: relative;
}

.ica-vat-img-wrapper img {
    border-radius: 20px;
    box-shadow: -20px 20px 0px #4B4116;
}

.ica-vat-law-tag {
    position: absolute;
    top: -15px;
    left: -15px;
    background: #4B4116;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
}

.ica-vat-service-box {
    background: #f8fafc;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

.ica-vat-service-box:hover {
    border-top: 4px solid #4B4116;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.ica-vat-icon {
    font-size: 35px;
    color: #4B4116;
    margin-bottom: 15px;
    display: block;
}

.ica-vat-obj-card {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    border-right: 4px solid #e2e8f0;
}

.ica-vat-obj-card:hover {
    border-right: 4px solid #4B4116;
}

.ica-vat-faq-item .accordion-button {
    font-weight: 700;
    color: #0f172a;
    padding: 20px;
}

.ica-vat-faq-item .accordion-button:not(.collapsed) {
    background-color: #fcfbf7;
    color: #4B4116;
}

.ica-vat-alert-box {
    background: #fff9e6;
    border-left: 5px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

/* Audit & Assurance service internal page css */
.ica-audit-hero-overlay {
    background: rgba(15, 23, 42, 0.88);
}

.ica-audit-img-wrapper {
    position: relative;
    padding: 10px;
}

.ica-audit-img-wrapper img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px #4B4116;
}

.ica-audit-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #0f172a;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    border-left: 5px solid #4B4116;
}

.ica-audit-service-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.ica-audit-service-card:hover {
    border-bottom: 3px solid #4B4116;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.ica-audit-icon-box {
    width: 60px;
    height: 60px;
    background: #4B4116;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.ica-audit-obj-list {
    list-style: none;
    padding: 0;
}

.ica-audit-obj-list li {
    background: #fff;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 10px;
    border-left: 4px solid #e2e8f0;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.ica-audit-obj-list li:hover {
    border-left-color: #4B4116;
    background: #fcfbf7;
}

.ica-audit-faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ica-audit-faq-accordion .accordion-button {
    font-weight: 700;
    color: #0f172a;
    padding: 20px;
}

.ica-audit-faq-accordion .accordion-button:not(.collapsed) {
    background: #fcfbf7;
    color: #4B4116;
}

.ica-audit-cta-banner {
    background: #0f172a;
    padding: 60px 0;
    border-radius: 20px;
    margin-top: 50px;
}
/* Compliance Control service internal page css */
.ica-ctrl-hero-overlay {
    background: rgba(15, 23, 42, 0.9);
}

.ica-ctrl-img-wrapper {
    position: relative;
    padding: 10px;
}

.ica-ctrl-img-wrapper img {
    border-radius: 20px;
    box-shadow: -20px 20px 0px #4B4116;
}

.ica-ctrl-status-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #0f172a;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    border-right: 5px solid #4B4116;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.ica-ctrl-service-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ica-ctrl-service-card:hover {
    border-top: 4px solid #4B4116;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.ica-ctrl-icon-box {
    width: 55px;
    height: 55px;
    background: #4B4116;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.ica-ctrl-obj-card {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    transition: 0.3s;
    height: 100%;
}

.ica-ctrl-obj-card:hover {
    border-color: #4B4116;
    background: #fcfbf7;
    transform: scale(1.02);
}

.ica-ctrl-faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ica-ctrl-faq-accordion .accordion-button {
    font-weight: 700;
    color: #0f172a;
    padding: 20px;
}

.ica-ctrl-faq-accordion .accordion-button:not(.collapsed) {
    background: #fcfbf7;
    color: #4B4116;
}

.ica-ctrl-cta-banner {
    background: linear-gradient(rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85') center/cover;
    padding: 70px 0;
    border-radius: 25px;
}
/* CBusiness Incorporation service internal page css */
/* Unique Prefix 'ica-biz-' for Business Incorporation Page */
.ica-biz-hero-overlay {
    background: rgba(15, 23, 42, 0.85);
}

.ica-biz-img-wrapper {
    position: relative;
    padding: 10px;
}

.ica-biz-img-wrapper img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px #4B4116;
}

.ica-biz-setup-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #0f172a;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    border-left: 5px solid #4B4116;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.ica-biz-service-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ica-biz-service-card:hover {
    border-bottom: 4px solid #4B4116;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.ica-biz-icon-box {
    width: 60px;
    height: 60px;
    background: #4B4116;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.ica-biz-obj-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.ica-biz-obj-item:hover {
    border-color: #4B4116;
    background: #fcfbf7;
    transform: translateX(10px);
}

.ica-biz-faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ica-biz-faq-accordion .accordion-button {
    font-weight: 700;
    color: #0f172a;
    padding: 20px;
}

.ica-biz-faq-accordion .accordion-button:not(.collapsed) {
    background: #fcfbf7;
    color: #4B4116;
}

.ica-biz-cta-banner {
    background: linear-gradient(45deg, #0f172a, #1e293b);
    padding: 60px 0;
    border-radius: 20px;
}

/* Liquidation Services service internal page css */
.ica-liq-hero-overlay {
    background: rgba(15, 23, 42, 0.88);
}

.ica-liq-img-wrapper {
    position: relative;
    padding: 10px;
}

.ica-liq-img-wrapper img {
    border-radius: 20px;
    box-shadow: -20px 20px 0px #4B4116;
}

.ica-liq-law-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #0f172a;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    border-right: 5px solid #4B4116;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.ica-liq-service-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ica-liq-service-card:hover {
    border-top: 4px solid #4B4116;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.ica-liq-icon-box {
    width: 60px;
    height: 60px;
    background: #4B4116;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.ica-liq-obj-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.ica-liq-obj-item:hover {
    border-color: #4B4116;
    background: #fcfbf7;
    transform: translateX(10px);
}

.ica-liq-faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ica-liq-faq-accordion .accordion-button {
    font-weight: 700;
    color: #0f172a;
    padding: 20px;
}

.ica-liq-faq-accordion .accordion-button:not(.collapsed) {
    background: #fcfbf7;
    color: #4B4116;
}

.ica-liq-alert-box {
    background: #fff5f5;
    border-left: 5px solid #dc3545;
    padding: 20px;
    border-radius: 10px;
}

.ica-liq-cta-banner {
    background: linear-gradient(45deg, #0f172a, #1e293b);
    padding: 60px 0;
    border-radius: 20px;
}

/* Consultancy Services internal page css */
.ica-cons-hero-overlay {
    background: rgba(15, 23, 42, 0.85);
}

.ica-cons-img-wrapper {
    position: relative;
    padding: 10px;
}

.ica-cons-img-wrapper img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px #4B4116;
}

.ica-cons-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #0f172a;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    border-left: 5px solid #4B4116;
    z-index: 2;
}

.ica-cons-card-box {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ica-cons-card-box:hover {
    border-top: 4px solid #4B4116;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ica-cons-quote-box {
    background: #FFD700;
    color: #0f172a;
    padding: 25px;
    border-radius: 15px 15px 50px 15px;
    font-weight: 800;
    font-size: 1.2rem;
    margin-top: 30px;
    display: inline-block;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.05);
}

.ica-cons-offer-section {
    background: #0f172a;
    color: #fff;
    padding: 80px 0;
    border-radius: 30px;
    margin: 50px 0;
}

.ica-cons-list-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 3px solid #4B4116;
}
/* Baanking services internal page css */
.ica-bnk-hero-overlay {
    background: rgba(15, 23, 42, 0.85);
}

.ica-bnk-img-wrapper {
    position: relative;
    padding: 10px;
}

.ica-bnk-img-wrapper img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px #4B4116;
}

.ica-bnk-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #0f172a;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    border-left: 5px solid #4B4116;
    z-index: 2;
}

.ica-bnk-card-box {
    background: #f8fafc;
    border-radius: 15px;
    padding: 35px;
    height: 100%;
    border-top: 4px solid #4B4116;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ica-bnk-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.ica-bnk-list li {
    background: #fff;
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    border-left: 3px solid #FFD700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.ica-bnk-info-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.ica-bnk-offer-bg {
    background: #0f172a;
    color: #fff;
    padding: 80px 0;
    border-radius: 30px;
    margin: 50px 0;
}

.ica-bnk-quote-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #4B4116;
    margin-top: 30px;
}

/* Mortgage Finance services internal page css */
.ica-fin-hero-overlay {
    background: rgba(15, 23, 42, 0.85);
}

.ica-fin-img-wrapper {
    position: relative;
    padding: 10px;
}

.ica-fin-img-wrapper img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px #4B4116;
}

.ica-fin-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #0f172a;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    border-left: 5px solid #4B4116;
    z-index: 2;
}

.ica-fin-content-box {
    background: #f8fafc;
    border-radius: 15px;
    padding: 35px;
    height: 100%;
    border-top: 4px solid #4B4116;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ica-fin-text-justify {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.ica-fin-offer-dark {
    background: #0f172a;
    color: #fff;
    padding: 80px 0;
    border-radius: 30px;
    margin: 50px 0;
}

.ica-fin-quote-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #4B4116;
    margin-top: 30px;
}

.ica-fin-highlight {
    color: #FFD700;
    font-weight: 700;
}

/* business planning services internal page css */
.ica-plan-hero-overlay {
    background: rgba(15, 23, 42, 0.85);
}

.ica-plan-img-wrapper {
    position: relative;
    padding: 10px;
}

.ica-plan-img-wrapper img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px #4B4116;
}

.ica-plan-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #0f172a;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    border-left: 5px solid #4B4116;
    z-index: 2;
}

.ica-plan-text-justify {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.ica-plan-offer-dark {
    background: #0f172a;
    color: #fff;
    padding: 80px 0;
    border-radius: 30px;
    margin: 50px 0;
}

.ica-plan-warning-box {
    background: #fff9e6;
    border-left: 5px solid #ffc107;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    color: #856404;
}

.ica-plan-highlight {
    color: #FFD700;
    font-weight: 700;
}

.ica-plan-quote-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #4B4116;
    margin-top: 30px;
}
/* Business Valuation services internal page css */
/* Unique Prefix 'ica-val-' for Business Valuation Page */
.ica-val-hero-overlay {
    background: rgba(15, 23, 42, 0.85);
}

.ica-val-img-wrapper {
    position: relative;
    padding: 10px;
}

.ica-val-img-wrapper img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px #4B4116;
}

.ica-val-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #0f172a;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    border-left: 5px solid #4B4116;
    z-index: 2;
}

.ica-val-card-box {
    background: #f8fafc;
    border-radius: 15px;
    padding: 35px;
    height: 100%;
    border-top: 4px solid #4B4116;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ica-val-text-justify {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.ica-val-offer-dark {
    background: #0f172a;
    color: #fff;
    padding: 80px 0;
    border-radius: 30px;
    margin: 50px 0;
}

.ica-val-quote-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #4B4116;
    margin-top: 30px;
}

.ica-val-feature-item {
    background: #fff;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 3px solid #FFD700;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

/* Revenue & Certifications services internal page css */
.ica-rev-hero-overlay {
    background: rgba(15, 23, 42, 0.88);
}

.ica-rev-img-wrapper {
    position: relative;
    padding: 10px;
}

.ica-rev-img-wrapper img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px #4B4116;
}

.ica-rev-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #0f172a;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    border-left: 5px solid #4B4116;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.ica-rev-feature-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ica-rev-feature-card:hover {
    border-top: 4px solid #4B4116;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.ica-rev-icon-box {
    width: 50px;
    height: 50px;
    background: #4B4116;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.ica-rev-trust-section {
    background: #0f172a;
    color: #fff;
    padding: 80px 0;
    border-radius: 30px;
    margin: 50px 0;
}

.ica-rev-authority-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.ica-rev-authority-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 13px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.ica-rev-quote-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #4B4116;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Golden Visa services internal page css */
/* Unique Prefix 'ica-gv-' for Golden Visa Page */
.ica-gv-hero-overlay {
    background: rgba(15, 23, 42, 0.88);
}

.ica-gv-img-wrapper {
    position: relative;
    padding: 10px;
}

.ica-gv-img-wrapper img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px #4B4116;
}

.ica-gv-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #0f172a;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    border-left: 5px solid #4B4116;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.ica-gv-info-box {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ica-gv-info-box:hover {
    border-top-color: #4B4116;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ica-gv-quote-card {
    background: #0f172a;
    color: #fff;
    padding: 40px;
    border-radius: 30px;
    margin: 50px 0;
    position: relative;
}

.ica-gv-feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 12px;
    border-left: 3px solid #FFD700;
    font-size: 15px;
}

.ica-gv-stat-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #FFD700;
    margin-top: 20px;
    display: block;
}

/* Mortgage Finance services internal page css */