/*
Theme Name: Twenty Thirteen Child
Theme URI: https://wordpress.org/themes/twentythirteen/
Template: twentythirteen
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Tags: blog,one-column,two-columns,right-sidebar,custom-header,custom-menu,editor-style,featured-images,footer-widgets,microformats,post-formats,rtl-language-support,sticky-post,translation-ready,accessibility-ready,block-patterns
Version: 4.6.1781066364
Updated: 2026-06-10 04:39:24

*/

:root {
    --orange-color: #F6A00B;
    --green-color: #408333;
    --dark-bg: #0e1a1f;
    --text-light: #ffffff;
    --text-muted: #cfd8dc;
    --heading-color: #0F1616;
    --primary-blue: #00AEEF;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.top-bar {
    background-color: var(--dark-bg);
    color: var(--text-muted);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar i.top-icon {
    color: var(--primary-blue);
    margin-right: 8px;
}

.social-icons a {
    color: var(--text-light);
    margin-left: 18px;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-blue);
}

.navbar-brand img {
    max-height: 55px;
}

.navbar-brand-text {
    font-weight: 800;
    font-size: 28px;
    color: #1a428a;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-brand-text span {
    color: var(--primary-blue);
}

.nav-link {
    color: var(--heading-color) !important;
    font-weight: 600;
    font-size: 15px;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-blue) !important;
}

.btn-get-in-touch {
    border: 1px solid var(--heading-color);
    color: var(--heading-color);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-get-in-touch:hover {
    background-color: var(--heading-color);
    color: var(--text-light);
}

.main-nav .nav-link {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 15px;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.main-nav .nav-link:hover {
    color: var(--primary-blue);
}

.header-section {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 6px;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background-color: var(--dark-bg);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-video-wrapper {
        /* height: 60vh; */
        height: 100%;
    }
}

/* .feature-box {
    padding: 4.5rem 3rem;
    height: 100%;
}

.bg-light-teal {
    background-color: #eef7f8;
}

.bg-light-grey {
    background-color: #f9fafa;
}

.bg-light-yellow {
    background-color: #fefcf3;
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--orange-color);
    margin-bottom: 1.5rem;
}

.feature-title {
    color: var(--heading-color);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.feature-text {
    color: #54595F;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0;
}
 */
@media (max-width: 768px) {
    .hero-video-wrapper {
        /* height: 60vh; */
        height: 100%;
    }
}

.bg-light-teal {
    background-color: #eef7f8;
	border-right:1px solid #0098792b;
}

.bg-light-grey {
    background-color: #f9fafa;
	border-right:1px solid #0098792b;
}

.bg-light-yellow {
    background-color: #fefcf3;
}

.feature-box {
    padding: 4.5rem 3rem;
    height: 100%;
    transition: all 0.9s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Hover Effect */
.feature-box:hover {
/*     transform: translateY(-12px); */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Different Hover Backgrounds */
.bg-light-teal:hover {
    background: linear-gradient(135deg, #0f8b8d, #16a6a8);	
}

.bg-light-grey:hover {
    background: linear-gradient(135deg, #1d3557, #2f4f7f);
}

.bg-light-yellow:hover {
    background: linear-gradient(135deg, #f39c12, #ffb703);
}

/* Text Color Change */
.feature-box:hover .feature-title,
.feature-box:hover .feature-text {
    color: #fff;
}

/* .feature-icon {
    font-size: 3.5rem;
    color: var(--orange-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
} */
.feature-icon {
    font-size: 3.5rem;
    color: #009879;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    color: #fff;
    transform: scale(1.15) rotate(8deg);
}

/* Shine Effect */
.feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-25deg);
/*     transition: all 0.6s ease; */
}

.feature-box:hover::before {
    left: 130%;
}


.product-range-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.product-subtitle {
    color: #009879;
    font-weight: 600;
    letter-spacing: 2.5px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.product-title {
    color: var(--heading-color);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0;
}

.product-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #009879;
    color: var(--text-light);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: background-color 0.3s ease;
    font-size: 1.2rem;
}

.product-nav-btn:hover {
    background-color: #007b62;
}

.product-item {
    text-align: center;
    padding: 10px;
}

.product-img-wrapper {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 4px solid #fff;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item-title {
    color: #444;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0;
}

.about-mitokaya-section {
    background: linear-gradient(135deg, #fcfcf5 0%, #eaf3f3 100%);
    padding: 6rem 0 0 0;
    text-align: center;
}

.about-mitokaya-content {
    padding-bottom: 5rem;
    max-width: 950px;
    margin: 0 auto;
}

.badge-about {
    background-color: #e3ebea;
    color: #4a5d5a;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.8rem;
}

.about-heading {
    font-size: 3rem;
    font-weight: 500;
    color: #2c3e4c;
    line-height: 1.3;
    margin-bottom: 1.8rem;
}

.about-heading .highlight {
    color: #009879;
}

.about-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    padding: 0 15px;
}

.btn-discover {
    background-color: #ffffff;
    color: #333;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.btn-discover:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    color: #009879;
}

.marquee-container {
    background-color: #009879;
    color: #ffffff;
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-weight: 500;
    font-size: 1.1rem;
    white-space: nowrap;
}

.marquee-content span {
    margin-right: 60px;
}

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

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .about-heading {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }
}

/* Strentgh section css */

.strength-section{
    padding:100px 0;
    background:#fff;
}

.strength-title{
    font-size:48px;
    font-weight:700;
    line-height:1.3;
    color:#111;
}

.strength-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    padding:40px;
    height:100%;
    display:flex;
    flex-direction:column;
    transition:all .4s ease;
    z-index:1;
}

.strength-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

/* DNA Background */
.dna-card::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -40px;
    width: 220px;
    height: 220px;
    background: url('https://hivends.org/mitokaya/site/wp-content/uploads/2026/06/dna-image.png') no-repeat center;
    background-size: contain;
    opacity: .8;
    z-index: -1;
}

/* Different placement */
.col-lg-4:first-child .dna-card::before{
    top:-20px;
    right:-20px;
}

.col-lg-4:nth-child(2) .dna-card::before {
    top: 64%;
    left: -40px;
    transform: translateY(-50%) rotate(-20deg);
    /* width: 81%; */
}

.bg-teal::before,
.bg-navy::before{
    opacity:.08;
    filter:brightness(0) invert(1);
}

.bg-light-gray{
    background:#f5f8fa;
}

.bg-teal{
    background:#009879;
}

.bg-navy{
    background:#1f2940;
}

.strength-card h4{
    font-size:26px;
    font-weight:600;
    line-height:1.4;
    margin-bottom:20px;
}

.strength-card p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:0;
}

.bg-light-gray h4{
    color:#111;
}

.bg-light-gray p{
    color:#666;
}

.bg-teal h4,
.bg-teal p,
.bg-navy h4,
.bg-navy p{
    color:#fff;
}

.check-list{
    list-style:none;
    padding:0;
    margin-top:25px;
}

.check-list li{
    margin-bottom:10px;
    font-size:15px;
    color:#555;
}

.check-list li i{
    color:#db5630;
    margin-right:8px;
}

.large-number{
    font-size:60px;
    font-weight:700;
    margin-bottom:0;
}

.growth-text{
    color:#db5630;
    font-weight:600;
}

.advisor-img{
    position:absolute;
    bottom:0;
    right:0;
    max-height:180px;
}

.strength-img-card{
    border-radius:20px;
    overflow:hidden;
    min-height:280px;
}

.strength-img-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.stats-text{
    font-size:42px;
    font-weight:700;
}

.stats-label{
    font-size:15px;
}

@media(max-width:991px){

    .strength-title{
        font-size:34px;
    }

    .strength-card{
        padding:30px;
    }

    .large-number{
        font-size:45px;
    }

    .dna-card::before{
        width:150px;
        height:150px;
    }
}

.gallery-section {
    background-color: #fdf5f4;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.gallery-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 45rem;
    color: rgba(220, 180, 180, 0.07);
    z-index: 0;
    pointer-events: none;
}

.gallery-center-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.gallery-section-subtitle {
    color: #9c3c3c;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: block;
}

.gallery-section-title {
    color: var(--heading-color);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.gallery-desc {
    color: #666;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.btn-gallery-view {
    background-color: #ffffff;
    color: var(--heading-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.btn-gallery-view:hover {
    background-color: var(--heading-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.floating-img {
    position: absolute;
    border: 8px solid #ffffff;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: z-index 0.3s ease;
}

.floating-img:hover {
    z-index: 20;
}

.floating-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-img:hover img {
    transform: scale(1.15);
}

.gallery-orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center center;
    animation: orbitRotate 45s linear infinite;
    z-index: 5;
    pointer-events: none;
}

.gallery-orbit .floating-img {
    pointer-events: auto;
}

@keyframes orbitRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.12);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.img-pos-1 {
    top: 5%;
    left: 12%;
    width: 220px;
    animation: float1 8s ease-in-out infinite;
}

.img-pos-2 {
    top: -2%;
    right: 15%;
    width: 240px;
    animation: float2 9s ease-in-out infinite;
}

.img-pos-3 {
    top: 40%;
    left: 3%;
    width: 170px;
    animation: float3 7.5s ease-in-out infinite;
}

.img-pos-4 {
    top: 45%;
    right: 4%;
    width: 190px;
    animation: float4 8.5s ease-in-out infinite;
}

.img-pos-5 {
    bottom: 2%;
    left: 18%;
    width: 210px;
    animation: float5 10s ease-in-out infinite;
}

.img-pos-6 {
    bottom: -5%;
    right: 18%;
    width: 250px;
    animation: float6 9.5s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(-35deg) scale(1);
    }

    50% {
        transform: translate(-10px, -20px) rotate(-25deg) scale(1.08);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(40deg) scale(1);
    }

    50% {
        transform: translate(15px, -15px) rotate(48deg) scale(1.1);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(-15deg) scale(1);
    }

    50% {
        transform: translate(10px, 15px) rotate(-5deg) scale(1.05);
    }
}

@keyframes float4 {

    0%,
    100% {
        transform: translate(0, 0) rotate(12deg) scale(1);
    }

    50% {
        transform: translate(-15px, 10px) rotate(22deg) scale(1.08);
    }
}

@keyframes float5 {

    0%,
    100% {
        transform: translate(0, 0) rotate(35deg) scale(1);
    }

    50% {
        transform: translate(-20px, 15px) rotate(25deg) scale(1.12);
    }
}

@keyframes float6 {

    0%,
    100% {
        transform: translate(0, 0) rotate(-45deg) scale(1);
    }

    50% {
        transform: translate(15px, 20px) rotate(-55deg) scale(1.1);
    }
}

@media (max-width: 1200px) {

    .img-pos-3,
    .img-pos-4 {
        display: none;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 4rem 0;
        min-height: auto;
    }

    .gallery-section-title {
        font-size: 2.2rem;
    }

    .gallery-orbit {
        position: relative;
        animation: none !important;
        height: auto;
        margin-top: 2rem;
        pointer-events: auto;
    }

    .floating-img {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 1rem auto;
        width: 60% !important;
        animation: none !important;
        transform: rotate(0) !important;
    }

    .img-pos-1,
    .img-pos-2,
    .img-pos-5,
    .img-pos-6 {
        animation: floatMobile 6s ease-in-out infinite !important;
    }
}

@keyframes floatMobile {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.services-list-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.services-list-subtitle {
    color: #009879;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.services-list-title {
    color: var(--heading-color);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 4rem;
}

.service-row {
    border-radius: 12px;
    padding: 0;
    margin-bottom: 1.2rem;
    min-height: 140px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.service-bg-pink {
    background-color: #faecec;
}

.service-bg-blue {
    background-color: #eef7f8;
}

.service-img-container {
    height: 100%;
    padding: 0;
}

.service-img-container img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    height: 50px;
    object-fit: cover;
}

.service-content-title {
    color: #333;
    font-size: 1.35rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.service-content-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.btn-contact-dark {
    background-color: #a74d4d;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    margin-top: 2rem;
    border-radius: 50px;
}

.btn-contact-dark:hover {
    background-color: #8f4040;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .service-row {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
        gap: 1rem;
    }

    .service-img-container {
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 1rem;
    }

    .service-img-container img {
        border-radius: 8px;
    }
}

.trust-banner-section {
    background: linear-gradient(135deg, #070b19 0%, #11182f 50%, #1a152e 100%);
    padding: 4.5rem 0;
    color: #ffffff;
}

.trust-banner-heading {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.partner-stats-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
    margin-left: -18px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, z-index 0.3s;
}

.avatar-img:first-child {
    margin-left: 0;
}

.avatar-img:hover {
    z-index: 10;
    transform: scale(1.1);
}

.partners-text-container {
    display: flex;
    flex-direction: column;
}

.partners-count {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
}

.partners-subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

@media (max-width: 991px) {
    .trust-banner-heading {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .partner-stats-wrapper {
        justify-content: center;
    }

    .partners-text-container {
        text-align: left;
    }
}

.testimonial-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.testimonial-subtitle {
    color: #009879;
    font-weight: 600;
    letter-spacing: 2.5px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-title {
    color: #313d46;
    font-size: 2.5rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
    line-height: 1.3;
}

.testimonial-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 420px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4rem 1.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.testimonial-name {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .testimonial-title {
        font-size: 1.8rem;
    }
}

.journey-steps-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.journey-subtitle {
    color: #009879;
    font-weight: 600;
    letter-spacing: 2.5px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.journey-title {
    color: #313d46;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 4rem;
}

.step-item {
    position: relative;
    padding: 0 15px;
}

.step-icon-wrapper i {
    font-size: 2.5rem;
    color: #009879;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.step-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.step-arrow {
    position: absolute;
    top: 20px;
    right: -10px;
    font-size: 1.2rem;
    color: #333;
}

@media (max-width: 991px) {
    .step-item {
        margin-bottom: 3rem;
    }
}

.contact-section {
    background-color: #f4f7f9;
    padding: 7rem 0;
    position: relative;
}

.contact-subtitle {
    color: #009879;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.contact-heading {
    color: #0f172a;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #103b48;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.info-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2530;
    margin-bottom: 0.2rem;
}

.info-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}

.contact-socials {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.contact-socials a {
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #103b48;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-socials a:hover {
    background-color: #103b48;
    color: #ffffff;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-top: 1rem;
}

.contact-form-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 2rem;
}

.contact-form-card .form-label {
    font-weight: 500;
    color: #1e293b;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-form-card .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    color: #64748b;
}

.contact-form-card .form-control:focus {
    box-shadow: none;
    border-color: #009879;
}

.contact-form-card textarea.form-control {
    border-radius: 15px;
}

.btn-submit {
    background-color: #0b3d4a;
    color: #ffffff;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #009879;
    color: #ffffff;
}

@media (max-width: 991px) {
    .contact-form-card {
        padding: 2rem;
        margin-top: 3rem;
    }

    .contact-heading {
        font-size: 2.2rem;
    }
}

/* NEW SECTIONS CSS */

/* Blog Section */
.blog-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.blog-subtitle {
    color: #009879;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-title {
    color: var(--heading-color);
    font-size: 2.5rem;
    font-weight: 500;
    margin: 0;
}

.blog-link {
    color: #db5630;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #a74022;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.blog-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 240px;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(36, 43, 66, 0.85);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.2;
    backdrop-filter: blur(5px);
}

.blog-date .day {
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
}

.blog-date .month {
    font-size: 0.85rem;
}

.blog-content {
    padding: 1.5rem 0;
}

.blog-content h4 {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

/* CTA Banner Section */
.cta-banner-section {
    background-color: #103b48;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-content {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-cta {
    background-color: #009879;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #007b62;
    color: #ffffff;
}

.cta-phone {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.cta-phone:hover {
    color: #009879;
}

.cta-img-wrapper {
    position: absolute;
    bottom: 0;
    right: 5%;
    height: 110%;
    z-index: 1;
}

.cta-img-wrapper img {
    height: 100%;
    object-fit: scale-down;
    object-position: bottom;
}

@media (max-width: 991px) {
    .cta-img-wrapper {
        display: none;
    }

    .cta-title {
        font-size: 2.2rem;
    }
}

/* Divisions Section */
.divisions-section {
    padding: 3.5rem 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.divisions-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.divisions-title {
    font-size: 1.5rem;
    color: var(--heading-color);
    font-weight: 500;
    margin: 0;
    padding-right: 3rem;
    border-right: 1px solid #e0e0e0;
    white-space: nowrap;
}

.divisions-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 2rem;
}

.divisions-logo-item {
    color: #009879;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.divisions-logo-item:hover {
    opacity: 1;
}

.divisions-logo-item span {
    font-size: 0.6rem;
    color: #666;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

@media (max-width: 991px) {
    .divisions-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .divisions-title {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-right: 0;
        padding-bottom: 1.5rem;
        width: 100%;
    }

    .divisions-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Footer Section */
.footer-section {
    background-color: var(--dark-bg);
    color: #ffffff;
    padding: 5rem 0 2rem 0;
    font-size: 0.95rem;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--primary-blue);
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.8rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    color: #009879;
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-contact-item h6 {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-blue);
}

.hivends-text {
    color: #d32f2f;
    font-weight: 500;
}

@media (max-width:767px) {
    body, section, header, footer {
        overflow-x: hidden;
    }
    .feature-box {
    padding: 40px;
    height: 100%;
}
.features-section {
    overflow-y: hidden;
}
}





/* Sirf About Us page se default title hide karne ke liye */
.page-slug-about-us .entry-title, 
.page-id-about-us .page-title,
.page-node-about-us h1.page-title {
    display: none !important;
}

/* Agar upar wala kaam na kare, toh poori website ke pages se default title hatane ke liye */
.page .entry-title, .page h1.page-title, .page .page-header-title {
    display: none !important;
}


/* prdoucts */
/* 🎯 Breadcrumb / Header background styling */
.container-fluid .row.align-items-center {
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    padding: 25px 20px !important;
    border-radius: 12px;
    margin: 10px 0 30px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* 🧠 Title styling (Blogs) */
.pagetitle {
    color: #ffffff !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    margin: 0;
}

/* 🔗 Breadcrumb text styling */
.breadcrumb_new {
    color: #cbd5e1 !important;
    font-size: 14px;
}

.breadcrumb_new a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb_new a:hover {
    color: #38bdf8 !important;
}

/* 📱 Mobile fix */
@media (max-width: 768px) {
    .container-fluid .row.align-items-center {
        text-align: center;
    }

    .pagetitle {
        font-size: 30px !important;
    }
}



/* Products Page Banner */

.post-type-archive-product .woocommerce-products-header {
    background: linear-gradient(90deg, #07142d, #1a2b4b);
    padding: 35px 40px;
    border-radius: 15px;
    margin: 20px 0 40px;
    position: relative;
}

.post-type-archive-product .woocommerce-products-header__title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

/* Breadcrumb Top Right */
.post-type-archive-product .woocommerce-breadcrumb {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #fff;
    margin: 0;
    font-size: 16px;
}

.post-type-archive-product .woocommerce-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

/* Products Page Content Spacing */
.post-type-archive-product .site-main {
    padding-top: 20px;
}





/* ===== WooCommerce Products Final Fix ===== */

.woocommerce ul.products,
.woocommerce ul.products.columns-4{
    display:flex !important;
    flex-wrap:wrap !important;
    justify-content:center !important;
    gap:25px !important;
    margin:0 !important;
    padding:0 !important;
}

.woocommerce ul.products li.product,
.woocommerce ul.products.columns-4 li.product{
    flex:0 0 calc(25% - 19px) !important;
    max-width:calc(25% - 19px) !important;
    width:auto !important;
    min-width:0 !important;
    margin:0 !important;
    float:none !important;

    background:#fff;
    border:1px solid #eee;
    border-radius:10px;
    padding:15px;
    box-sizing:border-box;
    text-align:center;
}

.woocommerce ul.products li.product img{
    width:100% !important;
    height:220px !important;
    object-fit:contain !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title{
    min-height:50px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after{
    display:none !important;
}

@media (max-width:991px){
    .woocommerce ul.products li.product{
        flex:0 0 calc(50% - 13px) !important;
        max-width:calc(50% - 13px) !important;
    }
}

@media (max-width:576px){
    .woocommerce ul.products li.product{
        flex:0 0 100% !important;
        max-width:100% !important;
    }
}



