/*focus*/
.focus-wrapper {
    display: flex;
    gap: 0px;
    background: #f7f7f7;
    border-radius: 20px;
    overflow: hidden;
}

/* LEFT CONTENT */
.focus-left {
    flex: 1.2;
    padding: 40px;
    margin-left: 100px;
}

.focus-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

.focus-block {
    margin-bottom: 25px;
}

.focus-block h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.focus-block p {
    font-size: 16px;
    line-height: 1.7; 
    color: #555;
}

/* RIGHT CONTENT */
.focus-right {
    flex: 1;
    background: #eeeeee;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-left-radius: 150px;
}

.stats-box {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.stats-icon {
    width: 100px;
    height: 100px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
}
.stats-icon:hover{
	background:#c0c0c0;
	border: 1px solid #c0c0c0;
}

.stats-text h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
}

.stats-text span {
    font-size: 14px;
    color: #555;
}

.asof {
    font-size: 12px;
    color: #666;
    margin-top: 20px;
}

/* IMAGE SECTION */
.image-section {
    flex: 0.8;
    background: url("../images/a5.jpg") center/cover no-repeat;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .focus-wrapper {
        flex-direction: column;
    }
    .image-section {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .focus-left, .focus-right {
        padding: 25px;
    }
    .focus-left{
         margin-left: 0px;
    }
    .focus-title {
        font-size: 22px;
    }
    .stats-text h3 {
        font-size: 22px;
    }
}
/*focus*/
/*contact*/

/* MAIN CONTACT SECTION */

.contact-left {
    flex: 1;
    min-width: 300px;
}

.office-block {
    margin-bottom: 40px;
}

.office-block h4 {
    font-size: 25px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.office-block p {
   
    margin-bottom: 8px;
    line-height: 1.6;
}

/* RIGHT SIDE FORM */
.contact-right {
    flex: 1;
    min-width: 300px;
    background: #eaeaea;
    padding: 30px;
}

.contact-right h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #999;
    background: transparent;
}

form textarea {
    height: 80px;
    resize: none;
}

form button {
    width: 100%;
    padding: 12px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 1px;
}

form button:hover {
    background: #000;
}

/* CUSTOMER CARE SECTION */
.customer-care {
    text-align: center;
    padding: 60px 20px;
}

.customer-care h4 {
    text-transform: uppercase;
}

.care-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.care-box h5 {
    margin-bottom: 10px;
    font-size: 14px;
}

.care-box p {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: bold;
}

.service-btn {
    padding: 8px 15px;
    background: #333;
    color: #fff;
    border: none;
    font-size: 12px;
    cursor: pointer;
}

.service-btn:hover {
    background: #000;
}

/* ANIMATION */
/** hero-shape **/

.hero-shape{
  will-change: border-radius, transform, opacity;
  animation: heroShape 3s linear infinite;
  display: block;
}

.hero-shape-two{
  position: absolute;
  left: 0px;
  bottom: 0px;
  will-change: border-radius, transform, opacity;
  animation: heroShapeTwo 5s linear infinite;
  display: block;
}

.hero-shape-three{
  background: #b9b9b9;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  border-radius: 55% 50% 48% 30% / 40% 50% 70% 6%;
  will-change: border-radius, transform, opacity;
  animation: heroShapeThree 3s linear infinite;
  display: block;
  opacity: 0.10;
}

.hero-shape-four{
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  border-radius: 55% 35% 48% 30% / 40% 40% 70% 6%;
  will-change: border-radius, transform, opacity;
  animation: heroShapeFour 3s linear infinite;
  display: block;
}


@keyframes heroShape {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    25% {
        transform: translate3d(-20px, 5px, 0) rotateZ(0.01deg);
    }
    35% {
        transform: translate3d(-20px, 5px, 0) rotateZ(0.01deg);
    }
    45% {
        transform: translate3d(-20px, 10px, 0) rotateZ(0.01deg);
    }
    55% {
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    75% {
        transform: translate3d(0, -5px, 0) rotateZ(0.01deg);
    }
}

@keyframes heroShapeTwo {
   0%,
    100% {
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    25% {
        transform: translate3d(-15px, 5px, 0) rotateZ(0.01deg);
    }
    35% {
        transform: translate3d(-30px, 5px, 0) rotateZ(0.01deg);
    }
    45% {
        transform: translate3d(-15px, 5px, 0) rotateZ(0.01deg);
    }
    55% {
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    75% {
        transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    }
}

@keyframes heroShapeThree {
    0%,
    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    25% {
        border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
        transform: translate3d(-20px, 5px, 0) rotateZ(0.01deg);
    }
    35% {
        border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
        transform: translate3d(-20px, 5px, 0) rotateZ(0.01deg);
    }
    45% {
        border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
        transform: translate3d(-20px, 10px, 0) rotateZ(0.01deg);
    }
    55% {
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    75% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        transform: translate3d(0, -5px, 0) rotateZ(0.01deg);
    }
}

@keyframes heroShapeFour {
    0%,
    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    35% {
        border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
        transform: translate3d(0, 10px, 0) rotateZ(0.01deg);
    }
    50% {
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    65% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        transform: translate3d(0, -10px, 0) rotateZ(0.01deg);
    }
}
.footer-standard .pattern-layer {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* ANIMATION */
/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .care-container {
        flex-direction: column;
        gap: 30px;
    }
}

/*contact*/



/*blogs1 end */
.blog-section {
  padding: 60px 20px;
}

.blog-wrappers {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px; 
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

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

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

/* Brand Tag */
.brand {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #686868;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 4px;
}

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

.blog-date {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-title {
  font-size: 18px;
  color: #222;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* Read More */
.read-more {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.read-more span {
  width: 28px;
  height: 28px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.read-more:hover span {
  background: #000;
  color: #fff;
}
/*blogs1 end */

/*pdf */

/* SECTION */
.pdf-section{
    max-width:1200px;
    margin:0 auto;
}

/* GRID */
.pdf-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

/* ITEM */
.pdf-item{
    background:#5a5a5a;
    color:#fff;
    border-radius:0px;
    display:flex;
    align-items:center;
    gap:18px;
    padding:0px 0px;
    transition:0.3s ease;
    cursor:pointer;
}

.pdf-item:hover{
    background:#7a7a7a;
    transform:translateY(-4px);
}

/* ICON */
.pdf-icon{
    width:60px;
    height:60px;
    background:#d9d9d9;
    border-radius:0px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.pdf-icon svg{
    width:24px;
    height:24px;
    stroke:#111;
}

/* TEXT */
.pdf-title{
    font-size:15px;
    font-weight:600;
    line-height:1.4;
}
.pdf-title:hover{
    color:#9b9b9b;
}

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

@media(max-width:500px){
    .pdf-grid{
        grid-template-columns:1fr;
    }

    .pdf-item{
        padding:0px 0px;
    }
}
/* pdf */

/*certificate */
.cert-wrapper{
    /*max-width:1200px;
    margin:40px auto;
    background:#f7f7f7;
    padding:30px 20px 50px;
    */
}

/* Top Text */
.cert-top-text{
    text-align:center;
    color:#888;
    font-size:14px;
    max-width:900px;
    margin:0 auto 30px;
    line-height:1.6;
}

/* Title */
.cert-title{
    text-align:center;
    font-size:14px;
    letter-spacing:1px;
    font-weight:600;
    margin-bottom:30px;
    color:#333;
}

/* Grid */
.cert-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid #ccc;
    border-left:1px solid #ccc;
}

.cert-box{
    padding:25px 15px;
    border-right:1px solid #ccc;
    border-bottom:1px solid #ccc;
    text-align:center;
    background:#f7f7f7;
}

.cert-box img{
    max-width:100%;
    height:auto;
    border:4px solid #444;
    background:#fff;
}

.cert-name{
    margin-top:12px;
    font-size:12px;
    color:#555;
    text-transform:uppercase;
    letter-spacing:0.5px;
}

/* Tablet */
@media(max-width:992px){
    .cert-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:600px){
    .cert-grid{
        grid-template-columns:1fr;
    }
}
/*certificate */
/*gallery */
.foogallery-album-gallery-list {
	list-style: none !important;
	padding: 0 !important;
}

.foogallery-album-gallery-list li {
	list-style-type: none !important;
	display: inline-block;
}

.foogallery-album-gallery-list .foogallery-pile {
	position: relative;
	z-index: 10;
	float: left;
	margin: 10px 15px 15px 10px !important;
}

/* Stacks created by the use of generated content */
.foogallery-album-gallery-list .foogallery-pile:before,
.foogallery-album-gallery-list .foogallery-pile:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	border: 8px solid #fff;
	left: 0;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* 1st element in stack (behind image) */
.foogallery-album-gallery-list .foogallery-pile:before {
	top: -3px; z-index: -10;
	-webkit-transform: rotate(2deg);
	-moz-transform: rotate(2deg);
	transform: rotate(2deg);
}
/* 2nd element in stack (behind image) */
.foogallery-album-gallery-list .foogallery-pile:after {
	top: -2px; z-index: -20;
	-webkit-transform: rotate(-2deg);
	-moz-transform: rotate(-2deg);
	transform: rotate(-2deg);
}

.foogallery-album-gallery-list .foogallery-pile .foogallery-pile-inner {
	border: 8px solid #fff;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
	overflow: hidden;
	line-height: 0;
}

.foogallery-album-gallery-list .foogallery-pile .foogallery-pile-inner a {
	display: inline-block;
}

.foogallery-album-gallery-list .foogallery-pile img {
}

.foogallery-album-gallery-list .foogallery-pile h3 {
	background: #FFF;
	position: absolute;
	display: block;
	bottom: 0px;
	padding: 5px 5px 0 5px;
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	opacity: 0.6;
	line-height: 1em;
}

.foogallery-album-gallery-list .foogallery-pile h3 span {
	display: block;
	font-size: 0.6em;
}

.foogallery-album-gallery-list .foogallery-pile a {
	position: relative;
}

.foogallery-album-gallery-list.alignment-left {
	text-align: left;
}

.foogallery-album-gallery-list.alignment-center {
	text-align: center;
}

.foogallery-album-gallery-list.alignment-right {
	text-align: right;
}

/* force no borders */
.foogallery-album-gallery-list .foogallery-pile a,
.foogallery-album-gallery-list .foogallery-pile a:hover {
	border: none !important;
	color:#000;
}
.life-sec {
    padding-top: 4em;
    padding-bottom: 5em;
}
.life-sec .lifettlblk {
    margin-bottom: 4em;
}
.life-sec .lifettlblk .title {
    font-size: 36px;
    font-weight: 200;
    border-bottom: 1px solid #A5A5A5;
    padding-bottom: 10px;
    margin-bottom: 18px;
    padding-left: 3em;
}
.life-sec .lifettlblk .title .cur {
    font-family: "CamelliaSignature";
    letter-spacing: 2px;
    font-size: 40px;
}
.life-sec .lifettlblk .title .bld {
    font-weight: 600;
}
.life-sec .lifettlblk .desc {
    padding-left: 14em;
}
.foogallery-album-gallery-list .foogallery-pile h3 {
    font-size: 18px;
    text-transform: capitalize;
}
.foogallery-album-gallery-list .foogallery-pile h3:hover {
 color:#000;
}
.foogallery-album-gallery-list .foogallery-pile h3 span {
    display: block;
    font-size: 0.6em;
}

/*gallery */
.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}