*{
    margin:0px;
    padding:0px;
    box-sizing: border-box;
}
:root{
    --color-primary:#0E456D;
    --color-secondary:#1A8FE3;
    ---color-orange:#F17105;
    --bg-primary:#0E456D;
    --bg-secondary:#1A8FE3;
    ---bg-orange:#F17105;
    --txt-head:60px;
    --txt-sub-head:50px;
    --txt-para:18px;
    --border-radius:10px;
    --box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
.bg-theme-primary{background: var(--bg-primary) !important;}
.bg-theme-secondary{background: var(--bg-secondary) !important;}
.txt-theme-primary{color:var(--color-primary) !important;}
.txt-theme-secondary{color:var(--color-secondary) !important;}
body{
    line-height: 1.6;
    font-family: 'Satoshi', sans-serif !important;
    font-weight: 400;
    box-sizing: border-box;
    overflow-x: hidden !important;
    position: relative;
}
img {
  -webkit-user-drag: none;
   user-drag: none;
}
.bdr-radi{
    border-radius: var(--border-radius) !important;
}



/* Subtle floating animation for the rating image */
.rating-img {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-6px); } /* small upward movement */
    100% { transform: translateY(0px); }
}

#reviews {
  display: flex;
  gap:30px;
  flex-direction: row;
  justify-content: space-between;
  animation: scrollReviews 14s linear infinite;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

/* Make carousel arrows fully visible and darker by default */
#feefoCarousel .carousel-control-prev,
#feefoCarousel .carousel-control-next {
    opacity: 1; /* remove default transparency */
    filter: brightness(1.2); /* slightly darker/brighter if needed */
    transition: none; /* disable hover transition if you want static color */
}

.carousel-control-prev,
.carousel-control-next {
    position: relative !important;
    width: auto !important;
}

/* Style arrows */
.custom-arrow {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 0 10px; /* spacing between icons */
}

/* Change arrow icons color */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(25%) sepia(92%) saturate(2381%) hue-rotate(182deg) brightness(90%) contrast(95%);
    /* This filter matches color #0e456d  */
    width: 30px;
    height: 30px;
}

/* Better spacing on small screens */
@media (max-width: 576px) {
    .custom-arrow {
        padding: 10px;
        margin: 0 15px; /* More gap on small screens */
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 26px;
        height: 26px;
    }
}


/* parent */
.testimonial-carousel {
  height: 55vh;
  overflow: hidden;
  position: relative;
  -webkit-overflow-scrolling: touch; /* helps Safari */
}
@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonial-carousel:hover #reviews {
  animation-play-state: paused;
}
.head-1{
    font-size: var(--txt-head);
}
.sub-head{
    font-size: var(--txt-sub-head);
}
.txt-para{
    font-size: var(--txt-para);
}
.navbar-logo {
    width: 210px;
    height: 60px;
    height: 48px; 
    width: auto;  
    object-fit: contain; 
    display: block;
}
.feat-card-bg{
    padding:20px;
    background:#ffffff;
    border-radius:var(--border-radius);
    height:auto;
    cursor: pointer;
}
.feat-card-bg {
    padding: 20px;
    background: #ffffff;
    border-radius: var(--border-radius);
    border: 4px solid transparent;
    transition: 
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
    box-shadow: 0 0 0 rgba(0,0,0,0);
}

.feat-card-bg:hover {
    border-color: var(--bg-secondary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transform: translateY(-8px);
}

.feat-card-head{
    color:var(--bg-primary);
}
.feat-card-desc{
    color:#000;
}
.feat-card-icons{
    height:100px;
    width: 100px;
}
a{
    text-decoration: none !important;
}
.contact-btn{
    background:var(--bg-secondary) !important;
    transition: background 0.4s ease;
}
.contact-btn:hover{
    background:#32CD32 !important;
}
.nav-link-navbar {
    padding: 0.5rem 1rem;  /* top-bottom, left-right */
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: 18px;
    font-weight: 600 !important;
    color: var(--color-primary) !important;
    text-decoration: none !important;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.nav-item-navbar .nav-link-navbar.active {
  text-decoration: underline !important;
  text-decoration-color: var(--bg-secondary) !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 4px !important;
}
/* style applied to links while keeping Bootstrap behavior */
.navbar-nav .nav-link.nav-link-navbar {
  padding: 0.5rem 1rem;           /* safe explicit padding */
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary) !important;
  text-decoration: none !important;
  transition: color .15s ease-in-out, background-color .15s ease-in-out;
}
/* active underline (matches your visual style) */
.navbar-nav .nav-link.nav-link-navbar.active {
  text-decoration: underline !important;
  text-decoration-color: var(--bg-secondary) !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 4px !important;
}
/* highlight current page */
.nav-link-navbar.active,
.dropdown-item.active {
  text-decoration: underline !important;
  text-decoration-color: var(--bg-secondary) !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 4px !important;
  color: var(--color-primary) !important;
}
/* when parent dropdown is active */
.dropdown-toggle.active {
  color: var(--color-primary) !important;
  font-weight: 700 !important;
}
/* highlight active dropdown item background */
.dropdown-menu .active {
  background-color: #f1f1f1 !important;
}

/* dropdown menu items (use Bootstrap .dropdown-item but adapt color) */
.dropdown-menu .dropdown-item {
  color: var(--color-primary) !important;
  font-weight: 500;
}

/* give dropdown items hover color */
.dropdown-menu .dropdown-item:hover {
  color: #062f49 !important;
}

/* toggler color */
.navbar-toggler { border-color: var(--color-primary) !important; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%230E456D' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}
/* #breadcrumb-bg{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1008%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='%230e2a47'%3e%3c/rect%3e%3cpath d='M1202.223543850186 76.66693254814624L1235.6089052686737 30.715924683343886 1149.9897127622262 3.6133864880135036z' fill='rgba(28%2c 83%2c 142%2c 0.4)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M356.95791631049644 211.69432603894884L317.99782283531374 131.81429671849327 238.1177935148582 170.77439019367597 277.07788699004084 250.65441951413152z' fill='rgba(28%2c 83%2c 142%2c 0.4)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M689.6373790107218 339.41992455625586L630.8970369719376 274.18216556263474 565.6592779783165 332.922507601419 624.3996200171007 398.1602665950401z' fill='rgba(28%2c 83%2c 142%2c 0.4)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M1160.7148184990378 392.4953310250586L1107.862718668275 300.9528088314747 996.9749852932807 426.00221967441104z' fill='rgba(28%2c 83%2c 142%2c 0.4)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M1077.0000079610206 130.80269209811655L1124.0593256557993 227.288591949822 1245.2585165859682 108.4566654818012z' fill='rgba(28%2c 83%2c 142%2c 0.4)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M989.1596110126528 153.87037838003596L973.7967798439483 28.750159227621268 848.6765606915337 44.1129903963257 864.0393918602381 169.2332095487404z' fill='rgba(28%2c 83%2c 142%2c 0.4)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M375.001623515752 200.96600342806406L295.8254061543953 262.8252440136636 428.202375713473 350.65994976289886z' fill='rgba(28%2c 83%2c 142%2c 0.4)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M286.6197638906595 520.8103137716516L358.9538313909354 585.9402006894129 351.7496508084208 448.4762462713757z' fill='rgba(28%2c 83%2c 142%2c 0.4)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M379.20663161986465 59.31656585515013L291.52936331630985 22.09977350623855 279.54280894471987 172.22407213602645z' fill='rgba(28%2c 83%2c 142%2c 0.4)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M817.8656586613962 439.7894971654486L802.5620752441191 585.3933672530204 948.1659453316909 600.6969506702975 963.469528748968 455.09308058272575z' fill='rgba(28%2c 83%2c 142%2c 0.4)' class='triangle-float1'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1008'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cstyle%3e %40keyframes float1 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-10px%2c 0)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float1 %7b animation: float1 5s infinite%3b %7d %40keyframes float2 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-5px%2c -5px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float2 %7b animation: float2 4s infinite%3b %7d %40keyframes float3 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(0%2c -10px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float3 %7b animation: float3 6s infinite%3b %7d %3c/style%3e%3c/defs%3e%3c/svg%3e");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    margin-top:100px !important;
} */
.bcrumb-icon{
    height: 25px;
    width: 25px;
    margin-bottom:4px;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: ""; 
}
.breadcrumb-home{
    position: relative;
}
#breadcrumb-bg .breadcrumb-item + .breadcrumb-item {
    padding-left: 0 !important;
}

#hero-section{
    background: url(../images/hero-bg.webp) no-repeat center center;
    background-size: cover;
    width:100%;
    height:80vh;   
}
.hero-head{
    font-size: 70px;
    color:#ffffff;
    font-weight:700;
}
.hero-para{
    font-size:25px;
    color:#ffffff;
}
.hero-link-bold{
    color:#ffffff;
}
.hero-link-bold-a{
    color:#ffffff;
    font-weight:700;
    font-size:28px;
}
.hero-link-bold-a-mob{
    font-size: 23px !important;
    color:#ffffff !important;
    font-weight:500;
}
.hero-contact-btn {
    position: relative;
    color: #ffffff;
    background: var(--bg-secondary);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    border: none;
    transition: color 0.4s ease;
}
.hero-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
    transition: all 0.4s ease;
}
.hero-contact-btn:hover::before {
    left: 0;
}
.hero-contact-btn:hover {
    color: var(--bg-secondary);
}
.section-container{
    padding: 40px 0px 40px;
    position: relative;
}
.typewriter-wrapper {
  display: inline-block;
  position: relative;
}
.typewriter-text {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #1A8FE3; /* cursor */
}
.typing {
  display: inline-block;
  animation: typing 2.5s steps(30, end), blink 0.75s step-end infinite;
}
@keyframes typing {
  from { width: 0 }
  to { width: 100% }  /* only as wide as this text */
}

@keyframes blink {
  50% { border-color: transparent; }
}
.typewriter {
  font-family: monospace;
  font-size: 1.2em;
}
.typewriter-wrapper .typed::after {
  content: "|";           /* blinking cursor */
  animation: blink 0.7s infinite;
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
ul{
        padding-left: 0px !important;
    }
.section-stamps{
    color:var(---color-orange);
    font-weight:600;
    font-size:14px;
    text-align: center;
    letter-spacing: 1px;
    padding:5px 20px;
    border:1px solid var(---bg-orange);
    display: inline-block;
    border-radius:5px;
}
.home-head-margin{
    margin-bottom:30px;
}
.section-head{
    font-size: 45px;
    color:var(--bg-primary);
    font-weight:400;
    margin-top:20px;
}
.review-card-bg{
    background:#ffffff;
    min-width: 200px;
    border:5px solid #F2F6FA !important;
    border-radius:var(--border-radius);
    padding:20px;
    box-shadow: var(--box-shadow);
    position: relative;
    min-height: 450px;
}
.read-review{
   background: #0E456D;
    color: #ffffff;
    padding: 10px 18px;
    /* margin-top: 26px; */
    border-radius: 5px;
    font-size: 22px;
}
.ratings-pack{
    width:30%;
    margin-top:20px;

}
.review-head{
    margin-top:20px;
    color: var(--bg-primary);
    font-weight:800;
    font-size:25px;
}
.review-para{
    font-size:20px;
    font-style: italic;
    font-weight:400;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cmt-author{
    color: var(--color-primary);
    font-size:20px;
    font-weight:600;
}
.author-location{
    color: var(--color-primary);
    margin-left:0px;
    font-weight: 500;
}


.cmt-date{
    color: var(--color-primary);
    margin-left:5px;
    font-weight: 500;
}
.review-avatar{
    margin-right:8px !important;
}
.feefo-redirect-btn {
  position: absolute;
  top: -35px;         
  right: -35px;       
  z-index: 10;
  width:200px;    
  height:100px; 
}
.feefo-img{
    height:20px;
    width:20px;
    border-radius:5px;
}
.feefo-inner{
    height:55vh !important;
}
.carousel-inner.feefo-inner img{
    width:40px;
}

.milestone-txt{
    font-size:40px;
    font-weight:400;
}
.milestone-count{
    font-size:110px;
    font-weight:600;
    color:var(--bg-secondary);
}
.counter-box{
    margin-top:10px;
    border-bottom: 1px solid #d9d9d9;
}
.feature-box{
    height:450px;
    display: flex;
    flex-direction: column;
    justify-content:space-evenly;
    align-items: center;
    border-radius:10px;
    cursor: pointer;
    margin-bottom:50px;
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth animation */
}
.feature-box:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    transform: translateY(-5px);
}
.overlay-sheet {
    height: 0;
    width: 100%;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    opacity: 0;
    padding: 20px;
    transition: height 0.5s ease, opacity 0.5s ease;
}
.feature-box:hover .overlay-sheet {
    height: 40%;
    opacity: 1;
}
.feature-1{
    background-image: url(../images/feature-1-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.feature-2{
    background-image: url(../images/feature-2-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.feature-3{
    background-image: url(../images/feature-3-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.feature-head{
    background:var(--bg-primary);
    padding:10px 20px;
    color: #ffffff;
    border-radius: var(--border-radius);
    font-weight:500;
    font-size:24px;
}
.feature-desc{
    color:#ffffff;
    z-index:9;
    font-size: 22px;;
}
.feature-box:hover .overlay-sheet{
    height: 40%;
    padding:20px;
    opacity: 1;
    transition: height 0.5s ease;
}
.overlay-sheet > * {
    transform: translateY(20px);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}
.feature-box:hover .overlay-sheet > * {
    transform: translateY(0);
    opacity: 1;
}
.img-div{
    height:100px !important;
}
.offer-images{
    height:50% !important;
}
.offer-txt{
    font-size:22px;
    margin-top:40px;
}
.offer-item{
    height:100% !important;
    padding: 10px;
}
.item-content-div{
    height:60vh !important;
    overflow-y: auto;
}
.nav-link-offer{
    font-size: 22px;
    padding:10px;
    color:var(--color-primary) !important;
    font-weight: 500 !important;
    border-radius: var(--border-radius);
}   
.nav-link-offer.active{
    background-color:#0E456D !important;
    color: #ffffff !important;
}
.scroll-container {
  scroll-snap-type: y mandatory;
}
.offer-item {
  scroll-snap-align: start;
}
.scroll-container {
  height: 50vh;        
  overflow-y: scroll;  
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroll-container::-webkit-scrollbar {
  display: none;
}
.section-para{
    font-size:22px;
}
.offer-imgs{
    height:70%;
    width:100%;
    object-fit: cover;
    border-radius:10px;
}
.offer-panel-head{
    margin-top:15px;
}
.offer-panel-desc{
    width:80%;
    margin-top:15px;
    font-size: 20px !important;
}
.offer-link{
    background: var(--bg-primary);
    color:#ffffff;
    padding:8px;
    border-radius: var(--border-radius);
    font-weight:500;
}
.bg-color{
    background:#E6ECF0;/*rename the class*/
}
.principle-head{
    font-size:24px;
    color:var(--bg-primary);
    font-weight:600;
}
.principle-desc{
    color:#000000;
    font-size: 20px;
    font-weight: 400;
}
.core-value-1{
    background-image: url(../images/core-1-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.core-value-2{
    background-image: url(../images/core-2-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.core-value-3{
    background-image: url(../images/core-3-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.core-values-mob-icons{
    height:84px;
    width:84px;
    margin-top:10px;
}
.cta-bg-home {
  background-image: url(../images/cta-bg-home.svg) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
/* .cta-bg-home {
  background-image: url(../images/cta-bg-home.svg) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
} */
.section-head-cta{
    font-size: 50px;
}
.cta-redirect{
    color:#ffffff;
    background:#32CD32;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-size: 25px;
    font-weight: 700;
    border:1px solid var(--bg-primary);
    cursor: pointer;
}
.cta-redirect-page {
    color: #ffffff;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 500;
    transition: .2s linear;
}
.cta-redirect-page:hover{
    background:#32CD32 !important;
}
.cta-tagline{
    color:var(--color-primary);
    font-size: 45px;
    font-weight: 600;
}
.cta-para{
    font-size: 35px;
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  white-space: nowrap;
  font-weight: 600;
  font-size: 1.2rem;
}
.resources-imgs{
    height:200px;
    width:300px;
}

/* Mobile screen carousel for tools */

.carousel-inner {
    height: 300px;
}

.carousel-inner img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}
.carousel-inner{
    align-items: center !important;
}


@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

:root {
  --marquee-width: 80vw;
  --marquee-height: 40vh;
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}
.marquee {
  width: var(--marquee-width);
  height: var(--marquee-height);
  background: #ffffff;
  overflow: hidden;
  position: relative;
}
.marquee:before, .marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}
.marquee:before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}
.marquee:after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}
.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}
@keyframes scrolling {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}
.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  font-size: calc(var(--marquee-height)*3/4); /* 5rem; */
  white-space: nowrap;
}
.marquee-content li img {
  width: 100%;
}
.blog-card{
    background:#ffffff;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}
.blog-title{
    color: var(--bg-primary);
    font-size: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-title-open{
    color: var(--bg-primary);
    font-size: 28px;
}
.blog-calendar-icon{
    width:20px;
    height:20px;
}
.blog-date{
    margin-left: 8px;
    color: var(--bg-primary);
    font-weight: 400;
    margin-bottom:0px;
}
.blog-redirect{
    color:#ffffff;
    background: var(--bg-primary);
    padding:8px 15px;
    border-radius: var(--border-radius);
}
.blog-open-sub-heading{
    color:var(--color-primary);
    font-size: 20px;
    font-weight: 500;
    margin:15px 0px 15px;
}
.blog-open-para{
    font-size: 18px;
}
.form-bg{
    background:#f9f9f9;
}
.blog-side-links{
    color:var(--color-primary) !important;
    font-size: 18px;
    font-weight: 400;
}
.blog-links-li{
    margin-top:10px; 
}
.blog-icons{
    height:24px;
    width:24px;
    margin-right:10px;
}
.blog-cmt-post-btn{
    background:var(--bg-primary);
}
.blog-cmt-post-btn:hover{
    background:#32CD32;
}
.blog-category-stamp{
    outline:1px solid #000000;
    padding:5px;
    margin-bottom:0px;
    border-radius: 3px;
    margin-left:10px;
}
.blog-open-para li{
    margin-left: 20px;
    list-style: disc;
}
.pagination .page-item.active .page-link {
    background-color: #0e456d;
    border-color: #0e456d;
    color: #fff;
}
.contact-highlight{
    color: var(--bg-secondary);
    font-weight: 700;
}
.contact-bg {
 background: url(../images/contact-bg.svg) no-repeat center center;
  background-size: contain;
  width: 100%;
  /* height: 70vh; */
  background-color: var(--bg-primary);
}
.contact-card{
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height:250px;
}
.contact-link{
    color:#000000;
    font-weight:400;
    font-size: 28px;
    margin-top: 40px;
}
.footer-logo {
    margin-bottom: 45px;
}
.footer-comp-desc{
    font-size: 22px;
    color: var(--bg-primary);
}
.shadow-top {
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1),
              0 -2px 4px -1px rgba(0, 0, 0, 0.06);
}
.shadow-bottom {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
              0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.foot-link-head{
    color:var(--bg-primary);
    font-weight: 600;
    font-size: 22px;
    margin-top:50px;
    text-decoration: underline;
    text-decoration-color: #1A8FE3;
    text-underline-offset: 10px;
    text-decoration-thickness: 5px;
}
ul li{
    list-style:none ;
}
.foot-link-li{
    margin-top:30px;
}
.foot-links {
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  background: linear-gradient(to right, #1A8FE3 50%, var(--bg-primary) 50%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transition: background-position 0.5s ease;
}
.foot-links:hover {
  background-position: right center; /* slide the gradient to fill from left to right */
}
.foot-hr{
    background:var(--bg-primary);
}
.copyright-txt{
    color: var(--bg-primary);
    font-size: 22px;
    font-weight: 500;
}
.foot-social-text{
    font-size: 22px;
    font-weight:500;
    color: var(--bg-primary);
}
.feature-card-mob{
    background:#ffffff;
    border-radius: var(--border-radius);
    box-shadow:var(--box-shadow);
    padding:0px 15px 20px 15px;
}
.feature-head-mob{
    background: var(--bg-secondary);
    color: #ffffff;
    font-size: 18px;
    font-weight:600;
    padding:8px;
    text-align: center;
    border-radius:0px 0px 10px 10px;
}
.feat-mob-redirect{
    color: #ffffff;
    background: var(--bg-primary);
    border-radius:5px;
    padding:8px 20px;
    font-size: 16px;
    font-weight: 400;
}
.feature-desc-mob{
    margin: 35px 0px 35px;
    font-size: 16px;
    font-weight: 400;
}
.redirect-arrow{
    height:20px;
    width:20px;
    margin-bottom:2px;
}
.offer-panel-head-mob{
    font-size: 20px;
    margin:20px 0px 15px;
    color: var(--bg-primary);
    font-weight: 600;
}
.offer-panel-desc-mob{
    font-size: 16px;
    margin-top:15px;
}
.offer-mob-redirect{
    color: #ffffff;
    background: var(--bg-primary);
    border-radius:5px;
    padding:8px 20px;
    font-size: 16px;
    font-weight: 400;
}
.img-bdr{
    border-radius: var(--border-radius);
}
.content-para{
    font-size: 18px;
    color:#000000;
}
/* About Page */
.abt-sec-card{
    padding:15px;
    background:#ffffff;
    border-radius:var(--border-radius);
    height:235px;
}
.abt-card-head{
    color: var(--bg-primary);
    font-size:22px;
    font-weight:500;
}
.abt-card-desc{
    color: #000000;
    font-size: 18px;
}
#abt-card-1{
    background-color: var(--bg-primary) !important;
}
#abt-card-1 .abt-card-head,
#abt-card-1 .abt-card-desc {
    color: var(--txt-theme-primary) !important; /* your normal text color */
}
/* Self Assessment Tax Returns */
.work-method-card{
    padding:15px;
    background:#ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.wm-card-title{
    color:var(--bg-primary);
    font-size:25px;
    font-weight:500;
}
.wm-card-desc{
    font-size: 18px;
}
.tbl-head{
    font-size:22px;
    font-weight: 500;
}
.tbl-col-head{
    font-size:18px;
    color:var(--bg-primary) !important;
    font-weight:500;
}
.tbl-col-desc{
    font-size:18px;
}
.section-sub-head{
    font-size: 28px;
    font-weight: 500;
    color: var(--color-primary);
}
.vap-li{
    font-size: 20px;
    font-weight: 500;
    color:#000000;
}
ul {
    list-style: none;
    padding-left: 0;
}
.vap-li {
    position: relative;
    padding-left: 50px; 
    margin-bottom: 10px;
    margin-top:15px;
}
.vap-li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url('../images/vap-li-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.6; /* initial opacity */
    transition: opacity 0.3s ease;
    background: #1A8FE3;
}
#scrollTopBtn:hover {
    opacity: 1; /* full opacity on hover */
}
  /* WhatsApp Button */
#whatsappBtn {
    position: fixed;
    bottom: 20px; /* above scroll-to-top button */
    right: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}
#whatsappBtn img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
#whatsappBtn img:hover {
    transform: scale(1.1);
}
.byct-btn{
    background: var(--bg-primary);
    padding:12px 20px;
    color:#ffffff;
    font-size: 20px;
    font-weight: 400;
    border-radius: var(--border-radius);
}
.accordion{
    background:black !important;
    outline:none !important;
}
.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}
.faqs-question{
    font-size:22px;
    font-weight:500;
    color:var(--bg-secondary);
}
.faqs-answer{
    font-size:20px;
    font-weight:400;
    color: var(--bg-primary);
}
.accordion{
    background: #ffffff !important;
    border:none !important;
    outline: none !important;
}
.accordion-item{
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    background: none;
}
.accordion-button{
    border-radius: var(--border-radius) !important;
    outline:2px solid #f1f1f1;
}
.child-accordion {
    margin-top: 20px;
}
.accordion-button{
    box-shadow: var(--box-shadow);
}
/* Remove blue background when accordion is open */
.accordion-button:not(.collapsed) {
    background-color: #fff !important;
    box-shadow: var(--box-shadow);
}
.accordion-button:not(.collapsed) .accordion-header{
    background-color: #fff !important;
    box-shadow: var(--box-shadow);
}
/* Optional: Remove focus outline */
.accordion-button:focus {
    box-shadow: none;
}
/* ensure top + bottom borders remain visible at all times */
.accordion-button {
  border: 2px solid #f1f1f1 !important; /* replace outline with border for consistency */
  border-radius: var(--border-radius) !important;
  box-shadow: var(--box-shadow);
  background-color: #fff;
  position: relative;
  z-index: 1;
}
/* when open, keep same border — prevent top disappearing */
.accordion-button:not(.collapsed) {
  border-color: #f1f1f1 !important;
  background-color: #fff !important;
  position: relative;
  z-index: 2;
}
/* remove Bootstrap’s default border removal */
.accordion-button::after {
  border: none !important;
}
/* optional – maintain slight spacing between items */
.accordion-item {
  overflow: hidden;
  border-radius: var(--border-radius);
}
/* Dropdown background and shadow */
.navbar .dropdown-menu {
  background-color: #fff; /* your theme color */
  border: none;
  color:#0E456D;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
}
/* Dropdown link styling */
.navbar .dropdown-menu .dropdown-item {
  color: #fff; /* text color */
  padding: 10px 20px;
  transition: background 0.3s ease;
}
/* Hover/active states */
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
  background-color: #08314F !important; /* slightly darker */
  color: #fff !important;
}
/* Bookkeeping */
.commit-head{
    color:var(--color-primary);
    font-size: 22px;
}
.commit-desc{
    color:#000000;
    font-weight:400;
    font-size: 22px;
}
.section-sub-head .mtd-blt-icon{
    height:32px !important;
    width:32px !important;
    margin-bottom:5px;
    margin-right: 15px;
}
.bkeep-sec-card{
    padding:15px;
    background:#ffffff;
    border-radius:var(--border-radius);
    height:auto;
    position: relative;
}
.service-hl{
    color: var(---color-orange);
    font-weight: 500;
    font-size:18px;
    background:white;
    border-radius: 10px 10px 0px 0px;
    padding:5px 20px;
    position:absolute;
    left:0;
    top:-30px;
}
.abt-card-head{
    margin-top:20px;
}
/* Peronal Tax */
.htags-method{
    color:var(---bg-orange);
    font-size: 16px;
    margin-left: auto;
}
/* Bespoke Accounting Approach*/
.custom-service-card{
    background:var(--bg-primary);
    padding:15px;
    height:100px;
    position:relative;
}
.custom-card-head{
    color:white;
    font-weight: 400;
    font-size:28px;
}
.plus-mark{
    position: absolute;
    height: 18px;
    width: 18px;
    top: 15px;
    right: 15px;
}
.feature-star{
    height:24px;
    width:24px;
}
.bespoke-sec-card{
    padding:15px;
    background:#ffffff;
    border-radius:var(--border-radius);
    height:270px;
}
#cta-div{
    background: url('../images/cta-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center ;
}
/* Price Page */
.price-card-title{
    font-size: 30px;
    margin-top:30px;
    color:var(--color-primary);
}
.price-txt{
    font-weight: 600;
    color:#1A8FE3;
    font-size: 60px;
    margin-top:20px;
}
.price-type{
    font-size: 16px;
}
.chk-mark-span{
    margin-right:10px;
}
.price-card-features{
    font-size: 18px;
    font-weight: 400;
}
.card{
    border:none !important;
}
.price-buy {
    font-size: 16px;
  transition: background-color 0.5s ease-in-out;
}
.price-buy:hover {
  background: var(--bg-secondary) !important;
}
.price-page-links {
    color:#000000;
    font-weight: 500;
}
#pricing-bg{
    background-size:cover;
    background-position: center center;
}
.dashed-bdr{
    border: 3px dashed #f1f1f1;
    border-radius:5px;
}
/*Privacy Policy Page*/ 
.privacy-bullets li{
    list-style: disc !important;
    margin-left: 20px !important;
    
}
/*Contact Us Page*/
.cnt-icons{
    height:45px;
    width:45px;
    margin-right:10px;
}

.foot-social-icons {
    height: 48px !important;
    width: 48px !important;
}

/* Financial Director Page */

.FD-icons{
    height:64px;
    width: 64px;
}
.card-number{
    font-size:80px;
    font-weight:600;
    color:#0e456d;
    opacity:0.5;
}

.bkeep-sec-card {
    padding: 15px;
    background: #ffffff;
    border-radius: var(--border-radius);
    height: auto;
    position: relative;
    color:#000000;
    transition: 0.3s ease; /* smooth transition */
}
.bkeep-sec-card .abt-card-head{
    color: var(--bg-primary); /* optional: text color becomes white */
}
.bkeep-sec-card .abt-card-desc{
    color: #000000; /* optional: text color becomes white */
}
.bkeep-sec-card:hover {
    background-color: var(--bg-primary) !important;
    color: #fff; /* optional: text color becomes white */
}

.bkeep-sec-card:hover .abt-card-head,
.bkeep-sec-card:hover .abt-card-desc {
    color: #fff;
}
/* Default highlight */
#abt-card-1 {
    background-color: var(--bg-primary) !important;
    color: #fff;
}

/* When hovering ANY other card, remove highlight from card 1 */
.container:has(.bkeep-sec-card:hover):not(:has(#abt-card-1:hover)) #abt-card-1 {
    background-color: #ffffff !important;
    color: var(--bg-primary); /* or your default text color */
}
.container:has(.bkeep-sec-card:hover):not(:has(#abt-card-1:hover)) 
#abt-card-1 .abt-card-desc {
    color: #000 !important; /* or var(--text-primary) */
}

/* Virtual CFO Page */

.vap-li-chk {
    position: relative;
    padding-left: 50px; 
    margin-bottom: 10px;
    margin-top:15px;
}
.vap-li-chk::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    background-image: url('../images/vap-li-icon-wchk.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
.bdr-secondary-dashed{
    border: 4px dashed #baddf6;
    border-radius: 10px;
}
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
  
}

.styled-table thead tr th{
    background-color: #0A3A63 !important;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 14px 18px;
    border: 1px solid #ddd;
    vertical-align: top;
}
.feature-cards-icons{
    height: 74px;
    width: 74px;
    margin-top:40px;
}

#loadingOverlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(3px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: fadeIn 0.4s ease-in-out;
}

#successMessage {
  display: none;
  color: green;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}















/* Default: Desktop / Large screens (no media query needed) */
/* Large tablets & small desktops */
@media (max-width: 1200px) {

    
    
}

/* Cookie consent banner */
.cookie-consent {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: min(420px, calc(100% - 2rem));
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(14, 69, 109, 0.25);
    padding: 1.5rem;
    z-index: 1080;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    border: 1px solid #e6ebf2;
}
.cookie-consent[aria-hidden="true"] {
    opacity: 0;
    visibility: hidden;
    transform: translateY(25px);
    pointer-events: none;
}
.cookie-consent.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
@media (max-width: 576px) {
    .cookie-consent {
        right: 1rem;
        left: 1rem;
        bottom: 1rem;
        width: auto;
        padding: 1.25rem;
    }
}
.cookie-consent__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--bg-primary);
}
.cookie-consent__text {
    font-size: 0.95rem;
    color: #4c5c6b;
    margin-bottom: 1rem;
}
.cookie-consent__btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.cookie-btn {
    border: none;
    border-radius: 10px;
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
    font-size: 0.95rem;
}
.cookie-btn.primary {
    background: var(--bg-primary);
    color: #fff;
}
.cookie-btn.primary:hover {
    background: #082f4e;
}
.cookie-btn.outline {
    background: #fff;
    border: 1px solid var(--bg-primary);
    color: var(--bg-primary);
}
.cookie-btn.outline:hover {
    background: rgba(14, 69, 109, 0.08);
}
.cookie-btn.ghost {
    background: transparent;
    color: #6b7785;
    border: 1px dashed #cbd4e1;
}
.cookie-btn.ghost:hover {
    border-color: var(--bg-primary);
    color: var(--bg-primary);
}
.cookie-consent__panel {
    display: none;
    border-top: 1px solid #e6ebf2;
    margin-top: 1rem;
    padding-top: 1rem;
}
.cookie-consent__panel.is-open {
    display: block;
}
.cookie-consent__panel-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.cookie-consent__toggle {
    margin-bottom: 0.75rem;
}
.cookie-consent__toggle label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #0a2340;
}
.cookie-consent__toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
}
.cookie-consent__toggle small {
    display: block;
    margin-left: 1.8rem;
    color: #6b7785;
    font-size: 0.85rem;
}
.cookie-consent__panel-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.cookie-consent__legal {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: #6b7785;
}
.cookie-consent__legal a {
    color: var(--bg-primary);
    font-weight: 600;
}

/* High-specificity overrides so banner always keeps the intended layout */
#cookieConsent.cookie-consent {
    position: fixed !important;
    inset: auto 1.5rem 1.5rem auto;
    max-width: 420px;
    width: calc(100% - 2rem);
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(14, 69, 109, 0.25);
    border: 1px solid #e6ebf2;
    background: #fff;
    z-index: 1080;
}
@media (max-width: 576px) {
    #cookieConsent.cookie-consent {
        inset: auto 1rem 1rem 1rem;
        width: auto;
    }
}
#cookieConsent .cookie-consent__content {
    display: flex;
    flex-direction: column;
}
#cookieConsent .cookie-consent__btn-group {
    gap: 0.65rem;
}
#cookieConsent .cookie-btn {
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
}
#cookieConsent .cookie-btn.primary {
    background: var(--bg-secondary);
    color: #fff;
}
#cookieConsent .cookie-btn.outline {
    border: 1px solid var(--bg-primary);
    color: var(--bg-primary);
    background: transparent;
}
#cookieConsent .cookie-btn.ghost {
    border: 1px dashed #cbd4e1;
    color: #6b7785;
    background: transparent;
}
#cookieConsent .cookie-consent__panel {
    background: #f6f9fc;
    border-radius: 14px;
    padding: 1rem;
    border: 1px solid #e1e7ef;
}
#cookieConsent .cookie-consent__toggle label {
    font-weight: 600;
}
#cookieConsent .cookie-consent__toggle small {
    margin-left: 2rem;
}
#cookieConsent .cookie-consent__panel-actions .cookie-btn {
    min-width: 130px;
}


@media (max-width: 1024px) {
    .hero-head{
        font-size:45px;
    }
    .navbar-logo {
        width: 200px;
        height: 65px;
    }
    .no-pad-mob{
        padding:0px;
    }
    .nav-link-navbar{
        font-size: 16px;
    }
}
/* Show dropdown on hover (desktop only) */
@media (min-width: 992px) { /* only on lg+ screens */
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .dropdown-item{
    padding:10px;
  }
}
/* Large phones / small tablets */
@media (max-width: 768px) {
  #breadcrumb-bg::before {
    transform: translateY(0); /* fallback for small screens */
  }
  .hero-head {
        font-size:60px;
        color: #ffffff;
        font-weight: 700;
    }
    .hero-para {
        font-size: 22px;
        color: #ffffff;
        text-align: center;
    }
    #hero-section{
        height:auto;
    }
    .ms-auto {
        margin-left: 0 !important;
    }
    .rating-img{
        margin-top:40px;
    }
    .section-stamps{
        font-size: 14px;
    }
    .milestone-txt{
        font-size: 28px;
    }
    .milestone-count{
        font-size:70px;
    }
    .feature-head{
        font-size: 20px;
    }
    .feature-desc{
        font-size: 18px;
    }
    .feature-box{
        height:330px;
    }
    .offer-panel-head-mob {
        font-size: 25px;
    }
    .principle-imgs{
        height:40px;
        width:40px;
    }
    .principle-head {
        font-size: 22px;
    }
    .principle-imgs {
        height: 80px;
        width: 80px;
    }
    .principle-desc {
        font-size: 18px;
    }
    .offer-panel-desc-mob {
        font-size: 18px;
        margin-top: 15px;
    }
    .section-head-cta{
        font-size: 25px;
    }
    .cta-tagline{
        font-size: 22px;
    }
    .cta-redirect {
        padding: 15px 25px;
        font-size: 18px;
    }
    .cta-para {
        font-size: 20px;
    }
    .contact-bg{
        height: auto;
        background:var(--bg-primary);
    }
    .foot-link-head{
        margin-top: 0px;
    }
    .footer-comp-desc {
        font-size: 20px;
        color: var(--bg-primary);
    }
    .foot-social-text{
        font-size: 18px;
    }
    .foot-social-icons{
        height:30px;
        width:30px;
    }
    .copyright-txt{
        font-size: 20px;
    }
    .blog-title {
        font-weight: 500;
    }
     .dropdown-menu.show {
        border: none;
        margin-left:15px;
    }
    .footer-logo {
        margin-bottom: 20px;
    }
/* Portrait phones */
@media (max-width: 600px) {
   
  html { font-size: 12px; }
  :root {--marquee-width: 100vw;--marquee-height: 70vh;--marquee-elements-displayed: 3;}
    #hero-section{
        height:auto !important;
    }
    .hero
    .marquee:before, .marquee:after { 
        width: 5rem;    
    }
    .carousel-inner {
        height: 270px;
    }
    .section-stamps{
        font-size: 16px;
        border: 1px solid #F17105;
    }
    .section-head{
        font-size: 30px;
        font-weight:500;
    }
    .milestone-txt {
        font-size: 20px;
        text-align: center;
    }
    .milestone-count {
        font-size: 60px;
        font-weight: 700;
        text-align: center;
        color: var(--bg-secondary);
    }
    .section-para {
        font-size: 18px;
    }
    .hero-head {
        font-size: 35px;
        color: #ffffff;
        font-weight: 700;
        text-align: center;
    }
    .rating-img{
        margin-top:30px;
    }
    .offer-panel-desc-mob{
        font-size: 18px;
    }
    .feature-desc-mob{
        font-size: 18px;
    }
    .principle-head{
        text-align: center;
        margin-top:15px;
    }
    .principle-desc{
        text-align: center;
    }
    .principle-imgs{
        height:84px;
        width:84px;
    }
    .hero-para{
        font-size: 16px;
        color: #ffffff;
        text-align: center;
    }
    .section-head-cta {
        font-size: 35px;
    }
    .cta-tagline {
        color: var(--color-primary);
        font-size: 25px;
        font-weight: 600;
    }
    .cta-redirect {
        color: #ffffff;
        background: #32CD32;
        padding: 15px 25px;
        border-radius: var(--border-radius);
        font-size: 18px;
        font-weight: 600;
        margin-block: 20px;
        border: 1px solid var(--bg-primary);
    }
    .cta-para{
        font-size: 18px;
    }
    .contact-bg{
        height:auto;
    }
    .contact-link {
        color: #000000;
        font-weight: 500;
        font-size: 18px;
        margin-top: 40px;
    }
    .footer-comp-desc{
        font-size: 18px;
    }
    .foot-link-head{
        margin-top:20px;
    }
    .foot-links {
        font-size: 18px;
        color: var(--bg-primary);
        font-weight: 400;
    }
    .foot-social-text {
        font-size: 20px;
        font-weight: 500;
        color: var(--bg-primary);
    }
    .copyright-txt {
        color: var(--bg-primary);
        font-size: 18px;
        font-weight: 500;
        text-align: center;
    }
    .blog-date{
        font-size: 16px;
    }
    .blog-redirect{
        font-size: 16px;
    }
    .vap-li::before{
        top:25%;
    }
    .commit-head{
        color:var(--color-primary);
        font-size: 18px !important;
    }
    .commit-desc{
        color:#000000;
        font-weight:400;
        font-size: 18px !important;
    }
    .hero-contact-btn {
        color: #ffffff;
        background: var(--bg-secondary);
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 18px  !important;
        font-weight: 600;
        cursor: pointer;
        text-transform: capitalize;
    }
    .navbar-logo {
        width: 180px;
        height: 60px;
    }
    .rating-img{
        margin-block:40px;
    }
    .bespoke-sec-card {
        height: auto;
    }
    .review-star{
        height:24px;
        width:24px;
    }
    .review-head{
        font-size: 20px;
    }
    .review-para{
        font-size: 18px;
    }
    .review-avatar{
        height:40px;
        width:40px;
    }
    .cmt-author{
        font-size: 16px;
    }
    .section-head{
        margin-bottom:40px;
    }
    .section-stamps{
        margin-top: 50px;
    }
    #cta-div{
        height:auto !important;
        background:linear-gradient(#062f49,#0E456D);
    }
    .cta-redirect-page{
        color: #ffffff;
        padding: 12px 10px;
        border-radius: var(--border-radius);
        font-size: 16px;
    }
    .cta-btn-div{
        margin:40px 0px 30px !important;
    }
    .cta-div-para{
        width:100% !important;
    }
    .vap-li::before {
        transform: translateY(-20%);
    }
    .faqs-question, .faqs-answer{
        font-size: 18px;
    }
    .cta-svg-icon{
        height:20px;
        width:20px;
    }
    .abt-sec-card{
        height:auto;
    }
    .breadcrumb-item + .breadcrumb-item::before {
        display: none;
    }
    .section-sub-head{
        font-size: 25px;
        font-weight: 500;
        color: var(--color-primary);
    }
    .dropdown-menu.show {
        border: none;
        margin-left:15px;
    }
    .dropdown-item.nav-link-navbar{
        padding:0px 15px;
    }
    #breadcrumb-bg{
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='600' height='560' preserveAspectRatio='none' viewBox='0 0 600 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1012%26quot%3b)' fill='none'%3e%3crect width='600' height='560' x='0' y='0' fill='%230e2a47'%3e%3c/rect%3e%3cpath d='M90.73 347.17 a120.48 120.48 0 1 0 240.96 0 a120.48 120.48 0 1 0 -240.96 0z' fill='rgba(14%2c 69%2c 109%2c 1)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M358.66 169.58 a98.56 98.56 0 1 0 197.12 0 a98.56 98.56 0 1 0 -197.12 0z' fill='rgba(14%2c 69%2c 109%2c 1)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M204.1726750819073 249.96861815372492L197.80987148953068 371.3781432170316 319.21939655283734 377.74094680940823 325.58220014521396 256.33142174610157z' fill='rgba(14%2c 69%2c 109%2c 1)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M518.3688094082803 419.5779132511388L663.9429049748989 396.52124159906936 640.8862333228294 250.9471460324508 495.31213775621086 274.0038176845203z' fill='rgba(14%2c 69%2c 109%2c 1)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M-20.638589806087708 53.34107369652052L54.100194923269136 123.03611797624079 121.2733689781711-23.919581257654627z' fill='rgba(14%2c 69%2c 109%2c 1)' class='triangle-float1'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1012'%3e%3crect width='600' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cstyle%3e %40keyframes float1 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-10px%2c 0)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float1 %7b animation: float1 5s infinite%3b %7d %40keyframes float2 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-5px%2c -5px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float2 %7b animation: float2 4s infinite%3b %7d %40keyframes float3 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(0%2c -10px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float3 %7b animation: float3 6s infinite%3b %7d %3c/style%3e%3c/defs%3e%3c/svg%3e");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}
/* Extra small phones */
@media (max-width: 360px) {
    .nav-link-navbar{
        font-weight: 500 !important;
    }
    .section-container{
        height:auto !important;
        padding:30px 0px 20px;
    }
    .section-head{
        font-size: 30px !important;
        font-weight: 500;
    }
    .section-stamps{
        font-size: 14px;
        border:1px solid #F17105;
        padding: 3px 10px;
    }
    .section-para{
        font-size: 18px;
        text-align: left;
    }
    .hero-head{
        font-size:25px;
        text-align: center;
    }
    .hero-para{
        font-size:18px;
        text-align: center;
    }
    .rating-img{
        margin-block:40px;
    }
    .carousel-inner{
        padding:0px !important;
    }
    .milestone-txt{
        font-size: 18px;
        text-align: center;
    }
    .milestone-count{
        font-size: 50px;
        text-align: center;
        font-weight: 600;
        margin-bottom:30px !important;
    }
    .feature-head{
        font-size: 16px;
    }
    .feature-box{
        height:350px;
    }
    .feature-desc{
        font-size: 16px;
    }
    .feature-1, .feature-2, .feature-3{
        background-size: cover;
    }
    .navbar-logo{
        width:150px;
        height:90px;
    }
    .no-pad-mob{
        padding:0px !important;
    }
    .hero-link-bold-a{
        font-size: 20px;
    }
    .hero-contact-btn{
        font-size: 16px;
        padding:7px 12px;
    }
    .principle-head{
        margin-top:20px;
        font-size: 20px;
        text-align: center;
    }
    .principle-desc{
        font-size: 18px;
        text-align: center;
    }
    .principle-imgs{
        height:84px;
        width:84px;
    }
    .section-head-cta{
        font-size: 22px;
        font-weight: 700;
    }
    .cta-tagline{
        font-size:20px;
    }
    .cta-para{
        font-size: 18px;
    }
    .contact-link{
        font-size: 20px;
        font-weight:500;
    }
    .footer-comp-desc{
        font-size: 18px;
    }
    .foot-link-head{
        margin-top: 20px;
    }
    .foot-link-li{
        margin-top:20px;
    }
    .foot-links {
        font-size: 18px;
        font-weight: 500;
    }
    .copyright-txt{
        font-size: 18px;
        text-align: center;
    }
    .foot-social-text{
        font-size: 16px;
    }
    .foot-social-icons{
        height:32px;
        width:32px;
    }
    .blog-title{
        font-size: 18px;
    }
    .cta-redirect {
        color: #ffffff;
        background: #32CD32;
        padding: 10px 20px;
        border-radius: var(--border-radius);
        font-size: 15px;
        font-weight: 600;
        border:1px solid var(--bg-primary);
    }
    .faqs-question{
        font-size:18px;
        font-weight:500;
        color:var(--bg-secondary);
    }
    .faqs-answer{
        font-size:18px;
        font-weight:400;
        color:var(--bg-primary);
    }
    .bespoke-sec-card{
        height:auto;
    }
    .custom-card-head {
        color: white;
        font-weight: 400;
        font-size: 25px;
    }
    .breadcrumb-item + .breadcrumb-item::before {
        display: none;
    }
    .bcrumb-icon {
        height: 28px;
        width: 28px;
        margin-bottom: 15px;
        margin-right: 3px;
    }
    .navbar-logo {
        width: 140px;
        height: 60px;
    }
    .cta-redirect-page{
        font-size: 14px;
    }
    .dropdown-menu.show {
        border: none;
        margin-left:15px;
    }
    .chart-section{
        padding:0px;
    }    
    .blog-open-para {
        font-size: 16px;
    }
    .vap-li-chk {
        position: relative;
        padding-left: 50px; 
        margin-bottom: 10px;
        margin-top:15px;
    }
    .vap-li-chk::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        background-image: url('../images/vap-li-icon-wchk.svg');
        background-size: contain;
        background-repeat: no-repeat;
    }   
    .read-review {
        background: #0E456D;
        color: #ffffff;
        padding: 5px 8px;
        /* margin-top: 26px; */
        border-radius: 5px;
        font-size: 18px;
    }
    #feefoCarousel svg {
        height: 25px;
        width: 25px;
    }
    }
}
