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

:root {
  --primary:#b78933;
  --secondary:#051829;
  --white:#fff;
  --black:#000;
}
body {
    margin: 0;
    padding: 0 !important;
   font-family: "Rubik", sans-serif;
    scroll-behavior: smooth;
    overflow: inherit !important;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
    border: 1px solid transparent;
    padding: 15px 20px;
    color: #444;
    font-size: 15px;
    line-height: normal;
    margin: 0 0 12px;
    width: 100%;
    outline: 0;
    font-family: "Rubik", sans-serif;
    background: #F3F3FF;
    border-radius: 20px;
}
input[type="submit"] {
    color: var(--white);
    background: var(--primary) !important;
    text-transform: uppercase;
    border: none;
    padding: 15px 20px;
    font-size: 14px;
    border: 0;
    letter-spacing: 0.8px;
    cursor: pointer;
    outline: none;
    font-weight: 600;
    border-radius: 20px;
    font-family: "Rubik", sans-serif;
    width: 100%;
}
input[type="submit"]:hover {
  background: var(--secondary) !important;
  color: var(--white);
  transition: 0.8s;
}
textarea {
    height: 100px;
    margin-bottom: 0;
}
h1, h2, h3, h4, h5, h6 {
margin: 0 0 15px 0;
font-family: "Rubik", sans-serif;
    color: var(--black);
    font-weight: 600;
    text-transform: inherit;
    line-height: normal;
}
h1 {
  font-size:28px
}
h2 {
  font-size:24px
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size:18px
}
h6 {
  font-size:16px
}
p {
    padding: 0;
    margin: 0 0 10px 0;
    color: #444;
    font-weight: 400;
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    line-height: 25px;
}
ul, li, a{
  list-style-type: none;
font-family: "Rubik", sans-serif;
  color: #444;
    font-size: 16px;
    line-height: 25px;
}
a:hover {
  transition:0.8s;
  text-decoration:none;
}
.heading {
    margin-bottom: 40px;
    font-size: 35px;
    color: #0e1422;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}
.heading :first-letter{
	color:var(--primary);
}
.heading:before {
    content: '';
    position: absolute;
    border-top: solid 3px var(--primary);
    width: 60px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.subheading {
    margin: 0px auto 10px;
    font-size: 17px;
    color: var(--secondary);
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}
.zoomeffect {
    overflow: hidden;
    position: relative;
}
.zoomeffect img {
  transition: transform 0.8s ease-in-out;
}
.zoomeffect:hover img {
  transform: scale(1.1);
}

/* Loader */

/* Loader */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000000;
}
.pageloader .load {
    color: var(--white);
    letter-spacing: 6px;
    margin-top: 15px;
}
.overlay .overlayDoor:before, .overlay .overlayDoor:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: #111;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  transition-delay: 0.8s;
}
.overlay .overlayDoor:before {
  left: 0;
}
.overlay .overlayDoor:after {
  right: 0;
}
.overlay.loaded .overlayDoor:before {
  left: -50%;
}
.overlay.loaded .overlayDoor:after {
  right: -50%;
}
.overlay.loaded .overlayContent {
  opacity: 0;
  margin-top: -15px;
}
.overlay .overlayContent {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.pageloader .load a {
    background: var(--white);
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 50%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: dotted 3px #20940d;
    outline-offset: 8px;
}
.pageloader .load img {
    width: 100px;
}
.overlay .overlayContent .skip {
  display: block;
  width: 130px;
  text-align: center;
  margin: 50px auto 0;
  cursor: pointer;
  color: #fff;
  font-family: "Nunito";
  font-weight: 700;
  padding: 12px 0;
  border: 2px solid #fff;
  border-radius: 3px;
  transition: 0.2s ease;
}
.overlay .overlayContent .skip:hover {
  background: #ddd;
  color: #444;
  border-color: #ddd;
}

.loader {
  width: 128px;
  height: 128px;
  border: 3px solid #fff;
  border-bottom: 3px solid transparent;
  border-radius: 50%;
  position: relative;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader .inner {
  width: 64px;
  height: 64px;
  border: 3px solid transparent;
  border-top: 3px solid #fff;
  border-radius: 50%;
  -webkit-animation: spinInner 1s linear infinite;
          animation: spinInner 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinInner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-720deg);
  }
}
@keyframes spinInner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-720deg);
  }
}

/* TOPBAR SECTION CSS */

.topbar {
    padding: 10px 0;
}
.topbar .row {
	align-items: center;
}
.top-contact {
    display: flex;
    column-gap: 15px;
}
.top-contact p {
    margin: 0;
    column-gap: 10px;
}
.top-contact p a {
    color: var(--white);
}
.top-contact p i {
    color: var(--primary);
    font-size: 14px;
    background: #ffffff26;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}
.topbar p:last-child {
    padding: 0;
    margin: 0;
    border: none;
}
.smoicons ul {
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 5px;
}
.smoicons li i {
    font-size: 16px;
}
.smoicons ul li a {
    color: var(--white);
    font-size: 14px;
    background: #ffffff26;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all ease-in-out .5s;
}
.smoicons ul li a:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Header */

header {
    background: var(--secondary);
    padding: 0 15px;
}
header .row {align-items: center;}
header img {
    width: 250px;
}
header .col-sm-8 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.mainmenu.fixed {
    position: fixed;
    top: 0;
    z-index: 1111;
    width: 100%;
    left: 0;
}
.mainmenu.fixed .menubar {
    border-radius: 0 0 20px 20px;
}
.headercnt {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.headercnt h4 {
    font-size: 17px;
    margin: 0;
}
.headercnt h4 span {
    display: block;
}
.headercnt i {
    font-size: 35px;
    color: var(--primary);
}
.menubar {
    background: var(--primary);
    border-radius: 30px 30px 0 0;
    width: 100%;
}


/* SLIDER SECTION CSS */

.mainslider {
    background: #f3f3ff;
}
.mainslider figure{
	margin:0;
}
.mainslider video {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 0 0 20px 20px;
    filter: brightness(0.7);
}
.mainslider figure img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 30px;
    filter: brightness(0.8);
}
.mainslider .carousel-caption {
    top: 50%;
    left: 0;
    right: 50%;
    width: 100%;
    transform: translateY(-50%);
    text-align: left;
    bottom: inherit;
}
.mainslider .carousel-content {
    text-align: center;
    width: 50%;
    margin: 0 auto;
}
.mainslider .carousel-caption h1, .mainslider .carousel-caption p {
	color:var(--white);
}
.mainslider .carousel-caption h1 {
    letter-spacing: .5px;
    text-transform: capitalize;
    opacity: 0;
    animation: lts .5s ease-in-out .3s forwards;
    font-size: 53px;
    line-height: 60px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}
@keyframes lts{
0%{
	transform:translateX(-150px);
}
100%{
	opacity:1;
	transform:translateX(0px);
}
}
.mainslider .carousel-caption span {
    display: block;
    color: var(--white);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 4px;
    line-height: 30px;
    font-weight: 500;
    background: var(--secondary);
    width: fit-content;
    margin: 0 auto 20px;
    padding: 1px 30px;
    border-radius: 50px;
    border: solid 3px var(--primary);
}
.mainslider .carousel-caption p {
    font-size: 18px;
    opacity: 0;
    animation: lts .5s ease-in-out .6s forwards;
    margin: 15px 0 25px;
}
.mainslider .carousel-content .btn {
    opacity: 0;
    animation: lts .5s ease-in-out 1.2s forwards;
}
.mainslider .carousel-control {
	position: absolute;
	bottom: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	font-size: 18px;
	height: 45px;
	background: var(--blackcolor) !important;
	color: var(--whitecolor);
 transition: opacity .15s ease;
	border-radius: 50%;
}
.mainslider .carousel-control.right {
    right: 105px;
    left: auto;
}
.mainslider .left.carousel-control {
	left: 84% !important;
}
.mainslider button i {
    background: rgba(0,0,0,.5);
    font-size: 27px;
    width: 35px;
    height: 55px;
    line-height: 55px;
}

/* FEATURES SECTION CSS*/

.feature-details {
    background-color: #f3f3ff;
    padding: 60px 0 70px;
}
.about-features {
    background: var(--primary);
    padding: 25px 15px;
    border-radius: 30px;
    position: relative;
    height: 100%;
    border-right: none;
    border-top: none;
    transition: all ease-in-out .5s;
}
.about-features:hover {
    transform: translateY(-5px);
}
.about-features h3, .about-features p {
    color: white;
}
.feature-cnt {
    column-gap: 20px;
    padding: 25px 0 0;
}
.about-features h3 {
    display: inline-block;
    border-bottom: 1px solid #ffffff66;
    padding-bottom: 15px;
}
.feature-cnt img {
    width: 60px;
    transition: .5s ease-in-out;
    filter: invert(1) brightness(100);
}
.about-features .feature-cnt img {
    animation: floaty 2s linear alternate infinite;
/*     animation: handshake 2s linear infinite; */
}
.about-features .feature-cnt img {
    animation: floaty 2s linear alternate infinite;
/*     animation: handshake 2s linear infinite; */
}

.feature-details .col-lg-4.col-12:nth-child(2) .about-features .feature-cnt img {
    animation: floaty 2s 2s linear alternate infinite;
}

@keyframes floaty {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(15px);
	}
}
.ht-shape-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: auto;
    border-radius: 0 30px 0 0;
}
.ht-shape-btn svg path {
    fill: #f3f3ff;
}
.featured-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 65px;
    height: 65px;
    background: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 600;
    outline: solid 2px var(--primary);
    outline-offset: 5px;
}
@keyframes handshake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}


/* Why Choose Us */

.whychooseus {
    padding: 65px 0;
    background: url(../images/counterbg.png) center / cover;
    background-position: center;
}
.whychooseus .row {
    row-gap: 25px;
    justify-content: center;
}
.whychooseus-item {
    text-align: center;
    width: 100%;
    padding: 25px;
    transition: all ease-in-out .5s;
    background: #ffffff1f;
    border-radius: 20px;
}
.whychooseus-item:hover {
    background: var(--white);
    transform: translateY(-3px);
}
.whychooseus-item figure {
    border: 5px solid var(--white);
    background: var(--black);
    width: 105px;
    height: 105px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whychooseus-item img {
    width: 57px;
}
.whychooseus-item figure {
    border: 5px solid var(--white);
    background: var(--black);
    width: 105px;
    height: 105px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whychooseus-item:hover figure {
    border-color: var(--secondary);
}
.whychooseus-item:hover h3 {
    color: var(--primary);
}
.whychooseus-item:hover h3 span {
    color: var(--black);
}
.whychooseus-item h3 {
    margin: 20px 0 8px;
    color: var(--white);
    line-height: 28px;
}
.whychooseus-item h3 span {
    display: block;
    font-size: 35px;
    padding: 15px 0 15px;
}
.whychooseus-item p{
    height: 100px;
    overflow-y: scroll;
    padding-right: 10px;	
}
.whychooseus-item p::-webkit-scrollbar-track {
 -webkit-box-shadow: inset 0 0 4px rgb(0 0 0 / 30%);
 border-radius: 10px;
 background-color: var(--white);
}
 .whychooseus-item p::-webkit-scrollbar {
 width: 3px;
 background-color: #F5F5F5;
}
 .whychooseus-item p::-webkit-scrollbar-thumb {
 border-radius: 10px;
 -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
 background: var(--primary);
}


/* services section  */

.services {
    padding: 60px 0;
}

.about-services {
    background: #f3f3ff;
    position: relative;
    border-radius: 30px;
    transition: all .5s ease-in-out;
}

.about-services figure {
    overflow: hidden;
    border-radius: 30px;
}
.about-services figure img {
    transition: all .5s ease-in-out;
    height: 380px;
    object-fit: cover;
}

.services .services-cnt {
    padding: 20px;
}

.services .services-cnt span {
    background: #b6bae9;
    padding: 4px 18px;
    border-radius: 50px;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 14px;
}
.services .arrowbutton.next {
    right: -40px;
}
.services .arrowbutton.prev {
    left: -65px;
}
.services .services-cnt a {
    text-decoration: none;
}
.services .services-cnt h4 {
	color:var(--black);
    font-size: 21px;
    margin: 0;
    text-transform: capitalize;
}
.courses .row {
    row-gap: 25px;
}

.about-services .ht-shape-btn.left-side {
    left: 0;
    right: auto;
    transform: rotate(-90deg);
}

.about-services .ht-shape-btn.bottom {
    transform: rotate(90deg);
    top: auto;
    bottom: 0;
}

.about-services .ht-shape-btn svg path {
    fill: #fff;
}

.about-services .service-icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 40px;
    background: #f3f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease-in-out;
}
.about-services:hover .service-icon img {
    filter: invert(1) brightness(100);
}
.about-services .service-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 55px;
    width: 55px;
    background: #f3f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ht-shape-btn.bottom svg {
    width: 100px;
    height: 100px;
}
.about-services .service-arrow i {
    transform: rotate(-45deg);
    font-size: 20px;
    color: var(--primary);
}

.about-services .service-icon img {
    width: 35px;
}

.about-services .service-arrow img {
    width: 20px;
}

.services .slick-slide {
    margin: 0px 22px 0px 0px
}

.about-services:hover .service-icon {
    background-color: var(--primary);
    transition: all .5s ease-in-out;
}



/* Why Choose Us */

.products {
    background: url(../images/productsbg.jpg) center;
    padding: 55px 0;
    background-attachment: fixed;
}
.products-item {
    border: solid 1px #0d88c945;
    padding: 25px;
    border-radius: 6px;
    height: 100%;
    text-align: center;
    background: var(--white);
    transition: all ease-in-out .5s;
}
.products-item:hover {
    transform: translateY(-5px);
}

.products-item:hover figure:before, .services-item:hover figure:before{
    animation: shine 1s;
	z-index: 1;

}
@keyframes shine{
	100% {
    left: 125%;
}
}
.products-item figure {
    border: solid 3px #0c82c0;
    width: 100px;
    height: 100px;
    margin: 0 auto !important;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    padding: 15px;
    background: #0d86c71a;
    display: flex;
    align-items: center;
    justify-content: center;
}
.products-item img {
    width: 63px;
}
.products-item h3 {
    margin: 20px 0 10px;
    font-size: 25px;
}

/* Resources */

.resources {
    padding: 50px 0 45px;
    overflow: hidden;
}
.resources .resources-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 340px !important;
}
.resources figure{
    height: 100%;
}
.resources figure img {
    transition: all .3s ease-in-out;
    height: 100%;
    object-fit: cover;
}
.resources .resources-item:hover img {
    filter: grayscale(1);
    transform: scale(1.1);
    transition: all .3s ease-in-out;
}
.resources .resources-item:hover .resources-caption:after {
    opacity: 1;
    transition: all .3s ease-out;
}
.resources .resources-caption {
    background: var(--white);
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
    display: block;
    text-align: center;
    padding: 10px 15px 12px;
    overflow: hidden;
    position: absolute;
    z-index: 1111;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.resources-caption h3 {
    margin: 0;
    font-size: 20px;
}
.resources-caption::after {
    position: absolute;
    height: 35px;
    width: 35px;
    background-color: rgb(18 153 212);
    content: '';
    border-radius: 0 30px 30px 0;
    left: -23px;
    bottom: -5px;
    opacity: 0;
    transition: all .3s ease-in-out;
}
.resources .resources-item::after {
    content: "";
    position: absolute;
    background-image: url(../images/shape.png);
    height: 100%;
    width: 100%;
    top: -63px;
    right: -100%;
    z-index: 0;
    background-repeat: no-repeat;
    transition: 0.3s;
}
.resources .resources-item:hover::after {
    right: -50%;
}
.resources h4 {
    font-size: 25px;
}
.resources p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}
.resources-item .ht-shape-btn svg path {
    fill: #fff;
}

/* About Us */

.homeabout {
    padding: 60px 0;
    background: url(../images/aboutbg.png);
    background-attachment: fixed;
}
.homeabout figure {
    margin: 0;
    position: relative;
}
.homeabout-img>img {
    width: 100%;
    height: 100%;
    animation: aboutusrt 80s linear forwards infinite;
}
@keyframes aboutusrt {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.homeabout-img figure.position-absolute {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: none;
}
.about-content span {
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary);
    padding-bottom: 15px;
    display: block;
}
.about-content h2 {
    font-size: 38px;
    margin-bottom: 32px;
    line-height: 35px;
    color: #03020a;
    font-weight: 700;
}
.homeabout p {
    text-align: justify;
}
.about-content p:last-child {
    margin-bottom: 0;
}

/* Our Clients */

.ourclients {
    padding: 60px 0 70px;
}
.ourclients .row {
    row-gap: 25px;
}
.ourclients-item {
    border: dotted 1px var(--secondary);
    padding: 15px;
    text-align: center;
    height: 100%;
    transition: all ease-in-out .5s;
}
.ourclients-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    border-radius: 20px;
}
.ourclients-item img {
    width: 90px;
    border-radius: 50%;
    border: dotted 2px var(--primary);
}
.ourclients-item h3 {
    font-size: 19px;
    margin: 0;
}
.ourclients-item h3 span {
    display: block;
    font-size: 16px;
    font-weight: normal;
    padding-top: 10px;
    color: #555;
}

/* Gallery */

.gallery{
	padding:60px 0;
}
.gallerypage h3 {
    font-size: 32px;
    margin: 30px 0 20px;
}
.envira-lazy {
    position: relative;
    overflow: hidden;
	 border-radius: 6px !important;
	 outline: solid 1px var(--secondary) !important;
    outline-offset: 5px !important;
}
.envira-lazy:before {
    transform: scale(0);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f5fbff2e;
    transition: .5s;
    z-index: 1;
}
.envira-lazy:hover:before {
    transform: scale(1.5);
}

/* Gallery */

.gallery-item figure img {height: 280px;width: 100% !important;border-radius: 6px;transition: all ease-in-out .5s;}
.gallery-item figure {
    overflow: hidden;
	border-radius: 6px;
}
.gallery-item:hover figure img {
    transform: scale(1.1) rotate(3deg);
    filter: grayscale(1);
}

/* About Us */

.about {
    background: #f9f9f9;
    padding: 30px 0;
}
.about .row {
    border: solid 1px #ddd;
    border-radius: 6px;
    background: var(--white);
    margin: 15px  0;
    padding: 15px !important;
}
.about .row:nth-child(even) {
    flex-direction: row-reverse;
}
.profile .products-item figure {
    border: none;!important
	background:none;!important
}


/* Gallery  */

.ourgallery {
    padding: 45px 0 60px;
    background: #f3f3ff;
}
.ourgallery .row {
    justify-content: center;
    gap: 25px;
}
.gallery.ourgallery .row {
    row-gap: 25px;
    column-gap: 0;
}
.gallery-item {
    overflow: hidden;
    display: block;
    border-radius: 20px;
}
.gallerylightboxlist {
    height: 320px;
    background-size: cover;
    transition: all 300ms ease;
    border-radius: 20px;
    position: relative;
    background-position: center;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}
.gallerylightboxlist:after, .gallerylightboxlist:before {
    background: #ffffff80 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    transition: all .9s ease 0s;
    right: 0;
    top: 0;
    z-index: 1;
}
.gallerylightboxlist:hover:before {
    left: 50%;
    opacity: 1;
    right: 50%;
}
.gallerylightboxlist:hover:after {
    bottom: 50%;
    opacity: 1;
    top: 50%;
}
.gallery-item:hover .gallerylightboxlist {
    transform: scale(1.1) rotate(5deg);
    filter: grayscale(1);
}
.gallerylightbox {
    position: relative;
    margin-bottom: 12px;
}
.gallerylightbox h3 {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    color: var(--secondary);
    background: #ffffffc7;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 19px;
    padding: 10px;
    font-weight: 600;
}
img.fancybox-image {
    border-radius: 6px;
}
.ourgallery .slick-slide {
    margin: 0 5px !important;
}
.compensate-for-scrollbar {
    margin-right: 0 !important;
}


.home .contact_us {
	padding: 60px 0;
}


/* Footer */

footer {
    background: var(--secondary);
}
footer .col-lg-3:first-child {
    background: #ffffff14;
    border-radius: 0 0 30px 30px;
    text-align: center;
}
.footerabout img {
    width: 100%;
}
footer .col-lg-3 {
    border-right: 1px solid #ffffff14;
    padding: 40px 30px 30px;
}
.contact form p {
    position: relative;
}
span.wpcf7-spinner {
    position: absolute;
    left: 100%;
    bottom: 12px;
    margin: 0;
}
.footerabout p {
    margin: 20px 0 0;
}
footer .col-lg-3:last-child {
    border: none;
}
footer ul.menu li {
    position: relative;
    padding-left: 20px;
}
footer ul.menu li:before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    color: #777;
    position: absolute;
    left: 0;
    font-weight: 600;
    font-size: 10px;
}
footer ul li.menu-item a {
    margin-bottom: 8px;
    display: block;
}
footer ul li:last-child a {
    margin-bottom: 0;
}
footer ul li.menu-item a:hover {
  color: var(--white);
}
.footersmo li i {
    color: #4d4a4f;
    font-size: 18px;
}
footer h4 {
    margin-bottom: 28px;
    letter-spacing: .5px;
    font-size: 20px;
    color: var(--white);
    padding-bottom: 15px;
    background: url(../images/under-title.png) no-repeat bottom left;
}
footer a, footer p, .footerabout a {
    color: #ccc;
}
footer a:hover {
    color: var(--primary) !important;
}
.footer-details a {
    text-decoration: none;
    font-size: 15px;
}
footer ul.footer-details li:last-child {
    margin-bottom: 0;
}
footer ul.socialicon {
  display: flex;
    column-gap: 6px;
	justify-content: flex-end;
}
footer ul.socialicon li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: #212222;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    margin: 0;
}
footer .readbtn {
    text-decoration: underline;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--primary);
    margin-top: 15px;
    display: block;
}
footer ul.footer-details li {
    position: relative;
    padding-left: 20px;
    color: #ccc;
    margin-bottom: 15px;
}
footer ul.footer-details li i {
    color: var(--white);
    padding-right: 5px;
    font-size: 13px;
    position: absolute;
    left: 0;
    top: 7px;
}
footer form {
    position: relative;
}
footer form input {
    border-color: #ffffff26 !important;
    padding: 7px 15px !important;
    margin-bottom: 8px !important;
    font-size: 14px !important;
}
footer input[type="submit"] {
    width: 100%;
    margin-bottom: 0;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid #ffffff38;
}
.copyright .col-sm-4 {
    justify-content: flex-end;
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.copyright .row {
  align-items: center;
}
.copyright p, .copyright p a {
    margin: 0 !important;
}
.copyright p a {
    color: var(--primary);
}
.copyright ul {
    display: flex;
    justify-content: center;
}
.copyright ul li {
    border-right: solid 1px #dddddd40;
    padding: 0 15px;
}
.copyright ul li:last-child {
    border-right: none;
    padding-right: 0;
}
.copyright img {
    width: 280px;
}



#GoToTop {
    display: none;
    position: fixed;
    bottom:120px;
    right: 33px;
    border-radius: 50%;
    z-index: 99999999;
    padding: 0;
    border: solid 2px var(--primary);
    background: var(--white);
    width: 48px;
    height: 48px;
    text-align: center;
    cursor: pointer;
    font-size: 17px;
    color: var(--primary);
    text-decoration: none;
    padding-top: 10px;
    box-shadow: 3px 11px 12px #0000009c;
}
#GoToTop .fa {
	display: block;
	padding-bottom: 3px;
}
#GoToTop:hover {
	background: var(--primary);
	color: var(--white);
}
#GoToTop.show {
	display:block
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 99999999;
    padding-top: 8px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 6px 9px rgb(0 0 0 / 5%), 0 4px 5px rgb(0 0 0 / 5%);
    outline: solid 5px #4fcc5d;
    outline-offset: 3px;
}
#whatsappbtn:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 50%;
	background: #4fcc5d;
	box-shadow: 0 0 10px #4fcc5d;
	animation: whtsbtn 2s linear infinite forwards;
}
#whatsappbtn img{
width: 110px;    
}
 @keyframes whtsbtn {
 from {
 transform:scale(1.0);
 opacity: 1;
}
to {
	transform:scale(1.5);
	opacity: 0;
}
}
#whatsappbtn img {
	width: 30px;
	margin-top: 4px;
}

/* why choose section  */
.whychoose{
	padding:60px 0;
}
.whychoose .row{
	row-gap:22px;
}
.whychoose-item {
    padding: 10px;
    border: 1px solid #21176030;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    column-gap: 20px;
}
.whychoose-item figure  img{
    height: 100%;
    width: 245px;
	object-fit:cover;
	border-radius:10px;
}
.whychoose-item h3 {
    font-size: 22px;
    font-size: 26px;
    font-weight: 700;
}

/* Reviews */

.testimonial {
    background: linear-gradient(#0e1422ba, #520300d4), url(../images/reviewbg.jpg);
    background-position: center;
    background-size: cover;
    padding: 60px 0 60px;
    background-attachment: fixed;
}
.testimonial .row{
	row-gap:25px;
}
.testimonial-cnt {
    background: #f3f3ff26;
    border-radius: 20px;
    padding: 35px;
    border: solid 1px #dddddd2b;
    border-bottom: solid 3px #b78933;
    position: relative;
    text-align: center;
}
.testimonial-cnt:after {
    content: '';
    position: absolute;
    bottom: -40px;
    border: solid 20px transparent;
    border-top: solid 20px var(--primary);
}
.testimonial-cnt h3 {
    margin: 15px 0 0;
    background: #ffffffe6;
    font-size: 20px;
    padding: 5px;
    border-radius: 50px;
    color: var(--primary);
    outline: solid 1px #ffffff1a;
    outline-offset: 3px;
}
.testimonial figure {
    border-radius: 50%;
    overflow: hidden;
    height: 85px;
    width: 85px;
    background: var(--white);
    padding: 6px;
    border: solid 3px var(--primary);
    clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
}
.testimonial figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.testimonial-cnt p {
    margin-bottom: 0;
    color: var(--white);
    line-height: 32px;
}
/*
.testimonial-desc {
    height: 165px;
    overflow-y: scroll;
    padding-right: 10px;
}
 .testimonial-desc::-webkit-scrollbar-track {
 -webkit-box-shadow: inset 0 0 4px rgb(0 0 0 / 30%);
 border-radius: 10px;
 background-color: var(--white);
}
 .testimonial-desc::-webkit-scrollbar {
 width: 5px;
 background-color: #F5F5F5;
}
 .testimonial-desc::-webkit-scrollbar-thumb {
 border-radius: 10px;
 -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
 background: var(--primary);
}
*/
.testibtm {
    display: flex;
    align-items: center;
    margin-top: 40px;
    column-gap: 20px;
    justify-content: center;
}
.testibtm h3 {
    color: var(--white);
    margin: 0;
}

/* ICC CSR */

.icccsr {
    padding: 60px 0;
    background: linear-gradient(0deg, transparent, #b789330d);
}
.icccsr-item {
    position: relative;
}
.icccsr-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
    width: 95%;
    margin: 0 auto;
    left: 50%;
    background: #b7893394;
    padding: 20px;
    height: 90%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    outline: solid 2px #ffffff94;
    outline-offset: 5px;
}
.icccsr-item img {
    border-radius: 20px;
    filter: brightness(0.8);
    height: 380px;
    object-fit: cover;
}
.icccsr-item h3, .icccsr-item p {
    color: var(--white);
}
.icccsr-item .btn-primary {
	 background: var(--secondary);
    color: var(--white);
}
.icccsr-item .btn-primary:hover {
background: var(--white);
    color: var(--primary);
}
.icccsr-item h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 5px;
}
.icccsr-item h3:after {
    content: '';
    position: absolute;
    border-bottom: solid 3px var(--white);
    width: 70px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.icccsr-item .btn-primary {
    background: var(--white);
    color: var(--primary);
}
.icccsr-item .btn-primary:hover {
    background: var(--secondary);
    color: var(--white);
}

.career ul li {
    position: relative;
    margin: 10px 0;
    padding-left: 22px;
}
.career ul li:before {
    content: '\f192';
    font-family: 'Font Awesome 5 Free';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 14px;
}
.career ul {
    margin: 20px 0;
}
.career .about-content h4 {
    margin-top: 20px;
    color: var(--secondary);
}
.career img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Chairman Message */

.chairmantop h4 {
    font-size: 18px;
    color: var(--primary);
    font-weight: 500;
}
.chairmantop img {
    border: solid 2px var(--primary);
    border-radius: 20px;
}
.entrepreneur {
    background: #f5f5f5;
    padding: 50px 0 65px;
    margin: 50px 0;
}
.entrepreneur-item {
    background: var(--white);
    border: solid 1px #e7e7e7;
    border-radius: 20px;
    height: 100%;
    padding: 30px 20px 0;
    transition: all ease-in-out .5s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.entrepreneur-item ul li {
    margin: 5px 0;
}

.entrepreneur-item ul {
    margin-bottom: 20px;
}

.entrepreneur-item h3 {
    font-size: 20px;
    font-weight: 500;
}

.entrepreneur-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.entrepreneur-item ul li:last-child {
    margin-bottom: 0;
}

.entrepreneur-item figure img {
    margin: 0 auto 20px;
    display: block;
    width: 160px;
}
.entrepreneur-item h4 {
    font-size: 22px;
    color: var(--primary);
}
.entrepreneur-item p {
    margin: auto 0 0;
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--primary);
    border-radius: 20px 20px 0 0;
}
.entrepreneur-item p a {
    color: #ffffff;
    font-size: 19px;
}









/* Breadcrumbs */

.breadcrumb {
    padding: 100px 0;
    background: linear-gradient(45deg, #000426d9, #000426a3), url(https://fkworld.in/wp-content/uploads/2025/10/breadcrumb-bg.jpg) center / cover;
    background-attachment: fixed;
}
.breadcrumb .row {
  align-items: center;
  display: flex;
}
.breadcrumb h1 {
    color: var(--white);
    width: fit-content;
    margin: 0 auto 20px;
    border-radius: 50px;
    font-size: 27px;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 5px;
}
.breadcrumb p {
    text-align: center;
    margin: 0;
}
.breadcrumb h1 p {
    text-align: left;
}
.breadcrumb p, .breadcrumb span, .breadcrumb p a {
    font-weight: 400;
    color: var(--white);
}
.breadcrumb p a {
    padding-right: 18px;
    margin-right: 5px;
    position: relative;
    color: var(--white);
}
.breadcrumb h1 span {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: .5px;
    color: var(--white);
    text-transform: uppercase;
    line-height: normal;
}

.breadcrumb h1 .breadcrumbs_last {
  font-size: 28px;
  margin: 0 0 15px;
  font-weight: 800;
}
.breadcrumb h1 p{
  float:left;
}
.breadcrumb h1 span a {
  display: none;
}
.breadcrumb a:after {
    position: absolute;
    content: '\f101' !important;
    font-size: 10px !important;
    font-weight: 600;
    font-family: 'Font Awesome 5 Free' !important;
    color: var(--white);
    right: 0;
    top: -1px;
}
.secondary-container {
padding: 60px 0;
}

.dtlscnt {
    padding: 25px;
    background: #f9f9f9;
    border: dotted 2px var(--primary);
    margin-top: 25px;
}
.dtlscnt ul li {
    line-height: 25px;
}
.dtlscnt ul li {
    margin: 10px 0;
}
.dtlscnt ul li:last-child {margin-bottom: 0;}
.srvccnt {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    background: #eee;
    padding: 10px;
    column-gap: 15px;
    border: dotted 2px var(--primary);
}

/* Contact Us */

.contact-location {
    height: 100%;
    margin-bottom: 25px;
}
.contact-location .row {
    row-gap: 15px;
}
.contactus .contact-details-cnt {
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
    border-top: none;
    box-shadow: 0 0 15px rgb(0 0 0 / 15%);
}
.contactus-form p {
    margin: 0;
}
.contact-details-cnt strong {
    display: block;
    font-weight: 600;
    font-size: 18px;
    padding: 20px 0 4px;
}
.contact-details-cnt i {
    font-size: 20px;
    color: var(--white);
    background: var(
    --primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    outline: solid 5px var(--secondary);
    outline-offset: 3px;
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}
.contact-details-cnt img {
    width: 100px;
}
.contactus .contact-details-cnt p {
    margin: 0;
}
.contact-details-cnt p strong {
    font-size: 20px;
}
.contactus .contact-details-cnt h3 a,
.contactus .contact-details-cnt h3 {
    color: #626262;
    font-size: 15px;
    font-weight: normal;
font-family: 'Roboto', sans-serif;  
}
.contactus .contact-details-cnt h3 {
    margin: 0;
    line-height: 25px;
}
.contactus-form {
    box-shadow: 3px 3px 13px #ddd;
    padding: 15px;
    border-radius: 6px;
}
.contactus .contact-details-cnt:last-child {
    margin: 0;
}
.contactus-form h3 {
    border-left: 3px solid var(--primary);
    line-height: 24px;
    padding-left: 10px;
    width: fit-content;
    margin: 0 0 25px;
}
.hcontact {
    padding: 50px 0;
}
.hcontact ul li {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin: 15px 0;
    border: solid 1px #b6b6b6;
    padding: 15px;
    border-radius: 20px;
    background: #f3f3ff;
}
.hcontact ul li img {
    width: 70px;
}
.hcontact ul li h3 {
    text-transform: capitalize;
    margin-bottom: 9px;
    font-size: 20px;
    font-weight: 500;
}
.hcontact ul li:first-child {
    margin-top: 0;
}

.hcontact ul li p:last-child {
    margin-bottom: 0;
}
.hcontactform {
    border: solid 1px #ddd;
    padding: 25px;
    border-radius: 20px;
    background: #f3f3ff;
    height: 100%;
}
.hcontactform input, .hcontactform textarea, .hcontactform select {
    background: var(--white);
    border: solid 1px #777;
}
.hcontact-box {
    background: var(--white);
    box-shadow: 3px 3px 13px #ddd;
    padding: 25px;
    border-radius: 20px;
    height: 100%;
}
.hcontact-box iframe {
    width: 100%;
    border-radius: 20px;
    height: 100%;
}



.contact_us_bg figure {
    text-align: center;
}
.contact_us_bg figure lottie-player {
    width: 94%;
    margin: -20px auto 0;
}

.contact h3 {
    font-size: 30px;
    margin-bottom: 20px;
}



.contact-address {
    padding: 60px 0;
    background: linear-gradient(#000000c7, #000000e0), url(../images/contactbtm-bg.jpg) no-repeat center center / cover;
    background-attachment: fixed;
}

.contactaddress-top {
    background: var(--secondary);
    padding: 26px;
    border-radius: 15px;
}

.contactaddress-top p {
    color: var(--white);
}

.contactaddress-top p:last-child {
    margin: 0;
}
.addresslist {
    display: flex;
    gap: 18px;
    background: #fff2db40;
    padding: 15px;
    border: 1px dashed #b7893378;
    border-radius: 12px;
    backdrop-filter: blur(3px);
    margin-bottom: 12px;
}
.addresslist:last-child {
	margin: 0;
}

.address-map {
    flex: 1;
}

.address-info {
    flex: 3;
}

.address-map iframe {
    width: 100%;
    height: 100%;
    margin-bottom: -6px;
    border-radius: 10px;
    border: 1px solid #00000014 !important;
}

.address-info p {
    margin: 0 0 8px !important;
    position: relative;
    padding-left: 25px;
}
.address-info p i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary);
    font-size: 18px;
}
.address-info h3 {
    color: var(--primary);
    font-weight: 500;
    font-size: 20px;
    text-decoration: underline;
    text-underline-offset: 5px;
    margin-bottom: 18px;
}

.address-info h4 {
    font-size: 15px;
    background: var(--primary);
    width: fit-content;
    color: var(--white);
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 16px;
}

.address-info h4 strong {
    font-weight: 500;
}

.address-info p:last-child {
    margin: 0;
}

.addresslist.address-content {
    border: none;
    background: var(--primary);
    padding: 25px;
    margin-bottom: 20px;
}

.addresslist.address-content p:last-child {
    margin-top: 20px !important;
}

.addresslist.address-content p {
    color: var(--white);
}










/* Blog */

.homebloglist img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}

.homebloglist {
    border: solid 1px #ddd;
    height: 100%;
    border-radius: 6px;
    background: #f9f9f9;
}

.homeblogbox {
    padding: 20px;
}

.homeblog .row {
    row-gap: 25px;
}
.homebloglist h3 a {
    font-size: 18px;
    line-height: 30px;
}
.homeblogbox span {
    color: var(--primary);
    font-weight: 600;
}

.homeblogbox span i {
    color: var(--secondary);
    margin-right: 8px;
}
.homebloglist h3 {
    margin: 12px 0 0;
}

/* Policy */

.policy ul {
    padding-left: 15px;
    margin-bottom: 10px;
}
.policy ul li {
    list-style-type: disc;
}

/* Services Details */

.page-sidebar {
    position: sticky;
    top: 0;
}
.page-sidebar h3 {
    margin-bottom: 22px;
}
.sidebar-inquiry, .sidebar-contactdtls {
    padding: 25px;
    border-radius: 20px;
}
.sidebar-inquiry.resourcesmenu {
    margin: 15px 0;
}
.sidebar-contactdtls {
    background: var(--primary);
    margin-top: 25px;
}
.sidebar-contactdtls {
    background: var(--secondary);
    margin-top: 25px;
}
.resourcesmenu ul li {
    position: relative;
    border-bottom: solid 1px #ddd;
    line-height: 35px;
    padding-left: 22px;
}
.resourcesmenu ul li:before {
    content: '\f192';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 13px;
}
.resourcesmenu ul li:first-child{
	padding-top:0;
}
.resourcesmenu ul li:last-child{
    border-bottom: none;
    padding-bottom: 0;
}
.sidebar-inquiry input, .sidebar-inquiry textarea, .sidebar-inquiry select {
    border: solid 1px #5c5f74;
}
.sidebar-inquiry input[type="submit"] {
    margin-top: 8px;
}
.contactus-details {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 12px;
    border-bottom: solid 1px #eee;
    padding-bottom: 12px;
}
.sidebar-contactdtls .contactus-cnt h5 {
    font-size: 17px;
    margin-bottom: 5px;
}
.contactus-details i {
    font-size: 20px;
    margin-right: 10px;
    color: var(--white);
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.sidebar-contactdtls .contactus-cnt p {
    margin: 0;
}
.sidebar-contactdtls .contactus-cnt h5, .sidebar-contactdtls .contactus-cnt p, .sidebar-contactdtls .contactus-cnt ul li, .sidebar-contactdtls .contactus-cnt a {
color: var(--white);
}
.sidebar-contactdtls .contactus-details {
    border-bottom: solid 1px #ffffff3b;
}
.sidebar-contactdtls .contactus-details:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.details-banner img {
    width: 100%;
    height: 445px;
    object-fit: cover;
    border-radius: 20px;
}
.resource-item {
    border: dotted 1px var(--primary);
    padding: 15px;
    height: 100%;
    border-radius: 6px;
}
.details-content .row {
    row-gap: 25px;
}
.details-banner {
    margin-bottom: 25px;
}
.details-content ul li, .details-content ol li {
    position: relative;
    padding-left: 18px;
    line-height: 26px;
}
.details-content ul li:before, .details-content ol li:before {
    content: '\f061';
    position: absolute;
    left: 0;
    font-family: 'Font Awesome 5 Free';
    color: var(--secondary);
    font-weight: 600;
    font-size: 12px;
}
.details-content ul, .details-content ol {
    margin-bottom: 15px;
}

/* Client Portal */

.clientportal-box {
    background: #f9f9f9;
    padding: 20px;
    width: 400px;
    text-align: center;
    margin: 0 auto;
    border-radius: 6px;
    outline: solid 1px var(--primary);
    outline-offset: 5px;
}
.clientportal-box p a {
    text-decoration: underline;
    text-underline-offset: 1px;
    color: var(--secondary);
    letter-spacing: 1px;
}

/* SERVICES PAGE CSS */

.service img {
    width: 100%;
    height: auto;
}
.service-content {
    background: linear-gradient(90deg, #0382c724, transparent);
    padding: 25px;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}
.service-content .leftheading {
    font-size: 30px;
}
.service-content p {
    text-align: justify;
}
.tax {
    background: #ecf6fb;
    padding: 50px 0;
    margin-top: 60px;
}
.tax .row {
    row-gap: 22px;
}
.tax-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px 0 15px 15px;
    border: 1px solid #0382c738;
    height: 100%;
}
.tax-item figure {
    height: 90px;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 1px solid #0382c738;
    border-radius: 15px 0 15px 15px;
}
.tax-item img {
    width: 64px;
}
.tax-item h3 {
    font-size: 18px;
    margin: 0;
}
.taxplaning {
    padding-top: 40px;
}
.taxplaning-item {
    box-shadow: 0 0 14px #0382c729;
    padding: 15px;
    border-radius: 15px;
    column-gap: 10px;
}
.taxplaning-item img {
    width: 70px;
}
.representation {
    background: #ecf6fb;
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
}
.details-content a {
    text-decoration: underline;
    color: var(--primary);
}
.taxglossary p a {
    border: solid 1px #ddd;
    width: 28px;
    height: 28px;
    display: inline-flex;
    border-radius: 50%;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    margin-right: 2px;
    text-decoration: none;
}
.taxglossary p a:hover {
    background: var(--primary);
    color: var(--white);
}
.details-content .taxdue ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 10px;
    align-items: center;
}
.details-content .taxdue ul li a {
    border: solid 1px var(--primary);
    padding: 5px 20px 7px;
    text-decoration: none;
    border-radius: 6px;
    transition: all ease-in-out .5s;
}
.details-content .taxdue ul li a:hover {
    background: var(--secondary);
    color: var(--white);
}
.details-content table {
    border: solid 1px #ddd;
    width: 100%;
    margin-bottom: 15px;
}
.details-content table tr, .details-content table th, .details-content table td {
    border: solid 1px #ddd;
    padding: 6px 15px;
}
.details-content table th {
    background: var(--primary);
    color: var(--white);
}
.details-content .taxdue ul li:before{
	display:none;
}
.licensed_content.payment {
    max-width: 600px;
    background: #f9f9f9;
    padding: 10px 25px 25px;
    margin: 0 auto;
    text-align: center;
    border-radius: 6px;
}
.licensed_content.payment form {
    margin-bottom: 20px;
}
.payment-form input[type="submit"] {
    margin-top: 8px;
}
.licensed_content.payment form br{
	display:none;
}
.payment-form label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
}
.contact_us_bg {
    background: #fff;
    box-shadow: 0 10px 40px -10px rgba(0,64,128,.2);
    padding: 30px 18px;
}
/* .contact input[type="text"], .contact input[type="email"], .contact input[type="tel"], .contact input[type="date"], .contact textarea, .contact select {
    background: #fff;
    border: 1px solid #51390e45;
    resize: none;
} */
.contact input.wpcf7-form-control.wpcf7-submit.has-spinner {
    margin-top: 15px;
}


.contact_us_bg p {
    margin-bottom: 21px;
}
.contact_us_bg form p {
    margin-bottom: 10px;
}
.map {
    height: 93%;
}
.map iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.contact_btn {
    background: #525fe1;
    color: #fff;
    padding: 8px 21px;
    width: 100%;
}

.contact_us {
    padding: 20px 0 60px;
}


.single_blog {
    background: #fff;
    border-radius: 0px;
    margin-bottom: 30px;
    -webkit-box-shadow: 10px 15px 18px rgba(23, 23, 36, 0.03);
    box-shadow: 10px 15px 18px rgba(23, 23, 36, 0.03);
}

.section-title p {
    width: 70%;
    margin: auto;
}
.academic_details img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}
.academic {
	padding:50px 0;
}
.academic_details {
    border: dotted 1px var(--secondary);
    border-radius: 15px;
    padding: 15px;
    background: #f3f3ff;
    height: 100%;
    transition: .5s;
}
.academic_details:hover {
    transform: translatey(-10px);
    border-color: var(--primary);
}
.content_box h3 {
    margin: 20px 0 8px;
}
.content_box p {
    margin: 0;
}
.academic .row {
    row-gap: 25px;
}

.academic_details img {
transition: all ease-in-out .5s;
}

.academic_details:hover img{
	transform: scale(1.1);
}
.academic_details figure {
    overflow: hidden;
    border-radius: 13px;
}
.form-fields {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 50px;
}

.form-fields input , .textarea{
    height: 50px;
    color: #070f4d;
    border: 1px solid #e8e8e8;
    background-color: #fcfcff;
    border-radius: 0;
    padding: 10px 20px;
    width: 100%;
}
.form-fields textarea{

    color: #070f4d;
    border: 1px solid #e8e8e8;
    background-color: #fcfcff;
    border-radius: 0;
    width: 100%;
}
.text {
    font-size: 16px;
    margin-bottom: 30px;
    color: rgba(0, 0, 0, 0.60);
    width: 100%;
}

/* CSR */

.csr .chairmantop img {
    border-radius: 50%;
}
.csr .csrentrepreneur {
    padding: 65px 0;
}
.csrentrepreneur-item {
    background: linear-gradient(45deg, #b7893314, transparent);
    border: solid 1px #b7893336;
    border-radius: 15px;
    height: 100%;
    padding: 20px;
    transition: all ease-in-out .5s;
}

.csrentrepreneur-item ul li {
    list-style-type: disclosure-closed;
    margin: 8px 0;
}

.csrentrepreneur-item ul {
    padding-left: 15px;
}
.csrentrepreneur-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.csrentrepreneur-item ul li:last-child {
    margin-bottom: 0;
}
.csr .csrentrepreneur-item figure img {
    width: 80px;
}
.csr .csrentrepreneur-item h3 {
    font-size: 22px;
    color: var(--secondary);
    margin: 20px 0 12px;
}
.csrentrepreneur-item p {
    margin: 0;
}



.entrepreneur-item.fkg-internation {
    text-align: inherit;
    margin-top: 20px;
}

.entrepreneurlist {
    flex: 1;
    padding: 25px 30px;
    border: 1px dashed #b78933;
    border-radius: 15px;
    box-shadow: 3px 3px 15px #00000014;
    text-align: center;
    background: #b789330a;
}

.entrepreneurlist ul {
    margin: 0;
}

.entrepreneurlist:nth-child(4) {
    text-align: right;
}
.entrepreneur-wrapper {
    display: flex;
    width: 100%;
    gap: 20px;
    margin-top: 10px;
}

.entrepreneur-item.fkg-internation h3 {
    margin-bottom: 40px;
    margin-top: -51px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    line-height: 1;
    border: 1px solid #e7e7e7;
}



.csr .additionalcnt ul {
    margin-bottom: 20px;
}
.csr .additionalcnt ul li {
    position: relative;
    padding-left: 20px;
    margin: 10px 0;
}
.csr .additionalcnt ul li:last-child{
	margin-bottom:0;
}
.csr .additionalcnt ul li:before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    color: var(--primary);
    font-weight: 600;
    position: absolute;
    left: 0;
    font-size: 14px;
}









/* ICC */

.iccsection {
    border: solid 1px #ddd;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.iccsection img {
    border-radius: 12px;
}
.iccsection h3 {
    font-size: 25px;
    color: var(--primary);
}
.iccsection-btm {
    margin-top: 25px;
}
.iccsection-btm ul li {
    list-style-type: disc;
    margin: 5px 0;
}
.iccsection-btm ul {
    padding: 5px 0 15px 15px;
}

/* About Us */

.page-id-2310 .csr .chairmantop img {
    border-radius: 15px;
    width: 100%;
    height: auto;
}
.page-id-2310 .csrentrepreneur .col-lg-4:nth-child(5) {
    width: 66.6%;
}
.page-id-2310 .csrentrepreneur .col-lg-4:nth-child(6) {
    width: 100%;
}
.csrentrepreneur .row {
    row-gap: 25px;
}


@media only screen and (max-width:1200px){
	.mainslider .carousel-caption p {
    padding: 0;
}
.mainslider figure img {
    height: 550px;
}
.products-item img {
    height: 170px;
}
.gallery-item figure img {
    height: 220px;
}	
}
@media only screen and (max-width:1000px){
.mainslider .carousel-caption h1 {
    font-size: 50px;
    line-height: 50px;
}	
.mainslider .carousel-caption span {
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 1px;
}	
.mainslider figure img {
    height: 480px;
}
.products .row {
    row-gap: 25px;
}	
.products-item img {
    height: 230px;
}	
.about-content {
    margin-top: 15px;
}
.services-item figure img {
    height: 300px;
}
header .col-sm-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo img {
    width: 170px;
}
header {
    padding-top: 10px;
    padding-left: 0;
    padding-right: 0;
}
.mainmenu {
    padding: 5px 0;
}
#rmp_menu_trigger-573 {
    background: var(--primary) !important;
}
.menubar {
    display: flex;
    justify-content: flex-end;
}
.mainmenu .btn-primary {
    padding: 14px 25px !important;
    border-radius: 25px 0;
    text-transform: uppercase;
    font-weight: 500;
}
#rmp-menu-wrap-573 .rmp-menu-current-item .rmp-menu-item-link {
    background-color: var(--primary) !important;
}
	span.rmp-menu-title-link span {
    display: none;
}
#rmp-container-573 {
    background-color: var(--secondary) !important;
    border-right: solid 1px #ddd;
}
.sidebar-inquiry {
    margin: 15px 0;
}	
}
@media only screen and (max-width:768px){
header .row {
    row-gap: 0;
}
.contact_us_bg {
    padding: 0;
}
.about-content {
    margin-top: 0;
}	
.map {
    height: 350px;
}
.contactus .container {
    padding: 0 15px !important;
}
.career .col-lg-5 {
    padding-left: 15px !important;
}	
.top-contact {
    justify-content: center;
}			
.topbar {
    padding: 10px 0;
    border-top: solid 1px #dddddd2b;
    padding-top: 15px;
    margin-top: 15px;
}	
.topbar .col-sm-2 {
    justify-content: center;
    margin-top: 15px;
}
	
header .col-sm-2 {
    width: 100%;
}
header .col-sm-10 {
    width: 100%;
    padding: 0 15px;
}	
.mainslider video {
    height: 400px;
}		
.homeabout {
    padding: 20px 0;
}	
.mainslider .carousel-content {
    width: 100%;
}	
.feature-details .row {
    row-gap: 25px;
}
.row {
    row-gap: 15px;
}
.hcontact-box iframe {
    height: 300px;
}	
footer .col-lg-3 {
    padding: 10px 15px;
}
footer ul li.menu-item a {
    margin-bottom: 5px;
}
.footerabout img {
    width: 250px;
}	
.mainslider .carousel-caption h1 {
    font-size: 40px;
    line-height: 30px;
}
.contactus .col-sm-6 {
    width: 100%;
}
.contactus {
    padding: 45px 0 60px;
}
.arrowbutton.prev {
    left: 0 !important;
}
.arrowbutton.next {
    right: 0 !important;
}	
.mainmenu.fixed {
    position: relative;
}	
.smoicons {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-2px);
    z-index: 1111;
}

.smoicons ul {
    flex-direction: column;
    row-gap: 7px;
}

.smoicons ul li a {
    background: #b78933;
    border-radius: 0 8px 8px 0;
    border-right: solid 1px #ddd;
}

.topbar .col-sm-10 {
    display: none;
}
.topbar {
    border: none;
    padding: 0;
    margin: 0;
}
.topbar .col-sm-2 {
    margin: 0;
}
}
@media only screen and (max-width:568px){
.mainmenu .col-sm-2, .mainmenu .col-sm-10 {
    width: 50%;
}	
.page-id-2310 .csrentrepreneur .col-lg-4:nth-child(5) {
    width: 100%;
}	
.carousel-control-prev {
    left: 5px !important;
}
.carousel-control-next {
    right: 5px !important;
}
.icccsr-item img {
    height: 480px;
}	
.carousel-control-next, .carousel-control-prev {
    width: 40px !important;
    height: 40px !important;
}
.products-item img {
    height: 280px;
    clip-path: none;
}

.products .row {
    row-gap: 15px;
}
.gallery-item figure img {
    height: 300px;
}	
.mainslider .carousel-caption h1 {
    font-size: 35px;
    line-height: 35px;
}	
.mainslider .carousel-caption span {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0;
}	
.mainslider .carousel-caption p {
    font-size: 15px;
    margin: 27px 0 18px;
    line-height: 24px;
}
.breadcrumb {
    padding: 35px 0;
}
.details-banner img {
    height: auto;
}
.sidebar-inquiry {
    margin: 15px 0;
    border: solid 1px var(--secondary);
}	
	
	
.contact_us_bg .col-lg-6.col-sm-12.col-xs-12 {
    padding: 12px;
}	
.addresslist {
    flex-direction: column;
}	
.address-map, .address-info {
    width: 100%;
}	
.address-map iframe {
    aspect-ratio: 1 / .7;
}	
}
@media only screen and (max-width:479px){
.mainslider .carousel-caption h1 {
    font-size: 25px;
    line-height: 26px;
}
	
.mainslider .carousel-caption span {
    margin-bottom: 10px;
}
.mainslider .carousel-caption p {
    margin: 8px 0 18px;
    line-height: 24px;
}
.copyright ul {
    column-gap: 15px;
    margin-bottom: 20px;
}
.copyright {
    margin-top: 15px;
}
.breadcrumb h1 {
    font-size: 22px;
}
.about-content h2 {
    font-size: 30px;
    margin-bottom: 10px;
    line-height: 35px;
}
.about-content {
    padding: 20px;
}	
.details-banner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
}
.top-contact {
    justify-content: center;
    column-gap: 10px;
}
.top-contact p {
    column-gap: 5px;
}
.top-contact i {
    margin-right: 5px;
}
.top-contact p a {
    font-size: 13px;
}	
}
@media only screen and (max-width:414px){
.top-contact i {
    margin-right: 5px;
}	
}





/* ACHIEVEMENT PAGE SLIDER CSS */


body.page-id-3301 .breadcrumb {
    background: linear-gradient(160deg, #000000c2, #00000042), url('https://fkworld.in/wp-content/uploads/2025/10/achievement-bg.png')no-repeat center center/cover;
}

.achievementsldr-sec {
    padding: 60px 0;
}

.fancybox__container {
    z-index: 99999 !important;
}
.achievement-slider .slick-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
}