:root {
    --primary-rgb: 67, 186, 255;
    /* RGB values for primary color, used in rgba() functions */
}

/* Custom Styles for TISHHA Website */

/* Header Logo Styles */
.logo-header-custom {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-header-custom a {
    display: flex;
    align-items: center;
}

.logo-header-custom img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    animation: glow-animation 3s infinite ease-in-out;
}

@keyframes glow-animation {
    0% {
        box-shadow: 0 0 10px rgba(67, 186, 255, 0.7);
    }

    50% {
        box-shadow: 0 0 35px rgba(67, 186, 255, 1), 0 0 20px rgba(255, 255, 255, 0.8);
    }

    100% {
        box-shadow: 0 0 10px rgba(67, 186, 255, 0.7);
    }
}



.banner-glow {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 10px;
}

.content-left {
    margin-top: 0;
    /* mobile default */
}

@media (min-width: 1024px) {
    .content-left {
        margin-top: 50px;
    }
}





/* actual image */
.banner-glow img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
    position: relative;
    z-index: 2;
    box-shadow:
        0 8px 20px rgba(78, 156, 224, 0.35);
}

/* glowing border layer */
.banner-glow::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(120deg,
            rgba(67, 186, 255, 0.8),
            rgba(27, 218, 195, 0.8),
            rgba(67, 186, 255, 0.8));
    filter: blur(12px);
    opacity: 0.7;
    z-index: 1;
    animation: borderMove 5s linear infinite;
}

/* box-shadow breathing glow */


/* gradient motion for border */
@keyframes borderMove {
    0% {
        background-position: 10% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}


.glow-btn {
    position: relative;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--btn-bg);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    outline: none;

    /* 3D depth */
    box-shadow:
        0 10px 20px rgba(78, 156, 224, 0.35);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



/* Logo Text Wrapper - Responsive */
.logo-text-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.logo-text-line {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.logo-text-line.highlightedText {
    font-size: 26px;
}


/* Sticky Header Visibility Fix */
.header-sticky {
    top: 0 !important;
    position: sticky !important;
    background-color: var(--main-dark) !important;
    z-index: 9999 !important;
}

/* Blog Section Fixes */
.title-animation>div,
.desc>div,
.sub-title>div {
    opacity: 1 !important;
    transform: none !important;
    display: block !important;

}

/* Top Bar Ticker Animation */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 25s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    font-size: 14px;
    color: #fff;
}

.ticker-item i {
    margin-right: 5px;
    color: var(--primary);
}



@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Page Title Single Line Fix */
.top-page-title .sub-title {
    white-space: nowrap !important;
    overflow: hidden;
    width: 100%;
    display: block !important;
}

.split-text div {
    display: inline-block !important;
    white-space: pre !important;
}

/* Shift Menu to Right */
.header-left {
    flex-grow: 1;
}

.header-left .main-menu {
    margin-left: auto;
    padding-right: 20px;
}

/* Header Button Right Margin */
.header-right {
    padding-right: 15px;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 767px) {
    .logo-header-custom img {
        width: 55px;
        height: 55px;
        flex-shrink: 0;
    }

    /* Stack logo text vertically on mobile */
    .logo-text-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .logo-text-line {
        font-size: 16px;
        line-height: 1.2;
        white-space: nowrap;
    }

    .logo-text-line.highlightedText {
        font-size: 14px;
    }

    .logo-header-custom {
        gap: 12px;
        flex-shrink: 0;
        margin-right: 15px;
    }

    .top-page-title .sub-title {
        white-space: normal !important;
        font-size: 18px !important;
    }
}

@media screen and (max-width: 380px) {
    .logo-text-line {
        font-size: 14px;
    }

    .logo-text-line.highlightedText {
        font-size: 12px;
    }
}

/* Footer Newsletter Column Width */
.footer-middle .left {
    max-width: 50%;
    flex: 0 0 50%;
}

.footer-middle .footer-col-block {
    flex: 1;
    min-width: 0;
}

/* Progress Wrap Button - Force Visibility */
.progress-wrap,
.progress-wrap.active-progress,
div.progress-wrap {
    position: fixed !important;
    bottom: 40px !important;
    right: 20px !important;
    height: 40px !important;
    width: 40px !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
    z-index: 99999 !important;
    display: block !important;
    background: var(--dark-2) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
}

/* Hide default icon from ::after */
.progress-wrap::after {
    content: none !important;
    display: none !important;
}

.progress-wrap i,
.progress-wrap .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    color: #fff !important;
    z-index: 100;
    pointer-events: none;
    font-weight: 900;
}

/* ========================================
   BLOG SECTION - CLEAN MAGAZINE STYLE
   ======================================== */

/* Blog Card Premium */
.blog-card-premium {
    background: var(--dark-2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(67, 186, 255, 0.3);
    border-color: rgba(67, 186, 255, 0.3);
}

/* Image Wrapper */
.blog-img-wrapper {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: var(--main-dark);
}

.blog-img-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-premium:hover .blog-featured-img {
    transform: scale(1.08);
}

/* Category Badge */
.blog-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: linear-gradient(135deg, #1bdac3 0%, var(--primary) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(67, 186, 255, 0.4);
}

/* Card Body */
.blog-card-body {
    padding: 36px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Meta Info */
.blog-meta-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.blog-author-name {
    color: var(--primary);
    font-weight: 600;
}

.blog-meta-divider {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.blog-read-time {
    color: rgba(255, 255, 255, 0.6);
}

/* Blog Title */
.blog-title-main {
    font-size: 26px;
    line-height: 1.3;
    margin: 0 0 18px 0;
    font-weight: 700;
    color: var(--white);
}

.blog-title-main a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-premium:hover .blog-title-main a {
    color: var(--primary);
}

/* Excerpt */
.blog-excerpt-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 28px 0;
    flex-grow: 1;
}

/* Card Bottom */
.blog-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Read More Link */
.blog-link-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.blog-link-more::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1bdac3 0%, var(--primary) 100%);
    transition: width 0.3s ease;
}

.blog-card-premium:hover .blog-link-more::after {
    width: 100%;
}

/* Publish Date */
.blog-publish-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(67, 186, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(67, 186, 255, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card-premium {
    animation: fadeInUp 0.6s ease-out;
}

.col-lg-6:nth-child(1) .blog-card-premium {
    animation-delay: 0.1s;
}

.col-lg-6:nth-child(2) .blog-card-premium {
    animation-delay: 0.2s;
}

/* Responsive Design */
@media screen and (max-width: 1199px) {
    .blog-img-wrapper {
        height: 300px;
    }

    .blog-title-main {
        font-size: 24px;
    }

    .blog-card-body {
        padding: 32px;
    }
}

@media screen and (max-width: 991px) {
    .blog-img-wrapper {
        height: 280px;
    }

    .blog-title-main {
        font-size: 22px;
    }

    .blog-excerpt-text {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .blog-img-wrapper {
        height: 260px;
    }

    .blog-card-body {
        padding: 28px;
    }

    .blog-title-main {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .blog-excerpt-text {
        margin-bottom: 20px;
    }

    .blog-card-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .blog-publish-date {
        align-self: flex-end;
    }
}

@media screen and (max-width: 575px) {
    .blog-img-wrapper {
        height: 240px;
    }

    .blog-badge {
        top: 16px;
        left: 16px;
        padding: 6px 16px;
        font-size: 11px;
    }

    .blog-card-body {
        padding: 24px;
    }

    .blog-title-main {
        font-size: 19px;
    }

    .blog-meta-info {
        font-size: 12px;

        .section-client-logos {
            position: relative;
        }
    }
}

/* ========================================
   CLIENT LOGOS SECTION
   ======================================== */



.section-client-logos .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.section-client-logos .client-logo {
    width: 150px !important;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.6;
    transition: all 0.3s ease;
    clip-path: circle(50% at 50% 50%);
}

.section-client-logos .client-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-client-logos .swiper-slide {
        height: 60px;
    }

    .section-client-logos .client-logo {
        width: 120px !important;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .section-client-logos .swiper-slide {
        height: 50px;
    }

    .section-client-logos .client-logo {
        width: 100px !important;
        max-height: 40px;
    }
}

/* ========================================
   CONTACT PAGE STYLING
   ======================================== */

.contact-list .contact-item,
.contact-list .contact-item a {
    font-size: 14px !important;
    line-height: 1.6 !important;
}


.contact-list .contact-item i {
    font-size: 16px !important;
    vertical-align: middle;
}

/* Contact Page Layout Adjustments */
@media (min-width: 992px) {
    .section-contact-inner {
        display: flex !important;
        align-items: stretch !important;
        /* Ensure both columns stretch to same height */
    }

    .section-contact .left {
        max-width: 35% !important;
        padding-top: 0 !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Center content vertically if needed, or stick to top */
    }

    .section-contact .right {
        max-width: 60% !important;
        display: flex;
        flex-direction: column;
    }

    /* Ensure form takes full height to match left side */
    .section-contact .right .form-contact-us {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}


.highlightedText {
    position: relative;
    color: #8bc5dc;

}

.highlightedGreen {
    color: cadetblue;
    font-weight: 600;
    text-shadow:
        0 0 4px rgba(95, 158, 160, 0.6),
        0 0 8px rgba(95, 158, 160, 0.4);
    animation: softGlow 3s ease-in-out infinite;
}

.noneAnimeGreen {
    color: cadetblue;
    font-weight: 600;
    /* font-size: 20px; */
}

.sub-title {
    color: cadetblue;
    font-weight: 600;
    font-size: 24px;
    /* text-shadow:
    0 0 4px rgba(3, 39, 41, 0.6),
    0 0 8px rgba(3, 35, 36, 0.4); */
    /* animation: softGlow 3s ease-in-out infinite; */
}



@keyframes softGlow {
    0% {
        text-shadow:
            0 0 3px rgba(95, 158, 160, 0.4),
            0 0 6px rgba(95, 158, 160, 0.3);
    }

    50% {
        text-shadow:
            0 0 6px rgba(95, 158, 160, 0.8),
            0 0 12px rgba(95, 158, 160, 0.6);
    }

    100% {
        text-shadow:
            0 0 3px rgba(95, 158, 160, 0.4),
            0 0 6px rgba(95, 158, 160, 0.3);
    }
}


.gradientOutlineGlow {
    position: relative;
    color: transparent;
    /* text fill removed */

    /* gradient outline + glow */
    -webkit-text-stroke: 2px transparent;
    background: linear-gradient(90deg, #6da4b9, #43baff, #a7e3ff);
    -webkit-background-clip: text;
    background-clip: text;

    text-shadow:
        0 0 8px #6da4b9,
        0 0 16px #43baff,
        0 0 24px #a7e3ff,
        0 0 48px #43baff;
}



/* underline glow */
.highlightedText::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 3px;
    background: currentColor;
    box-shadow:
        0 0 8px currentColor,
        0 0 16px currentColor,
        0 0 32px currentColor;

    animation: underlineGlow 1.2s ease-out forwards;
}


/* ============================
   UNIVERSAL RESPONSIVE FOOTER
   ============================ */

/* Base footer fixes */
footer,
.footer,
.footer-area {
    width: 100%;
    display: block;
}

/* Make footer columns flex and wrap properly */
.footer-row,
.footer-mid,
.footer-middle,
.footer-widgets,
footer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Column default */
.footer-col,
.footer-widget,
.footer-middle .footer-col-block,
footer .col-lg-3,
footer .col-lg-4,
footer .col-lg-2 {
    flex: 1 1 22%;
    min-width: 220px;
}

/* ============================
   BREAKPOINTS
============================= */

/* Tablet */
@media (max-width: 991px) {

    .footer-col,
    footer .col-lg-3,
    footer .col-lg-4,
    footer .col-lg-2 {
        flex: 1 1 45%;
        min-width: 45%;
    }

    .footer-middle .left {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .footer-col,
    footer .col-lg-3,
    footer .col-lg-4,
    footer .col-lg-2 {
        flex: 1 1 100%;
        min-width: 100%;
        text-align: center;
    }

    footer img,
    footer .logo {
        margin: 0 auto;
        display: block;
    }

    .footer-middle .left {
        max-width: 100% !important;
        flex: 0 0 100% !important;
        text-align: center !important;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .footer-col {
        padding: 10px 0;
    }
}

/* Fix phone numbers breaking after +91 */
.nobr,
.phone-number,
.footer-phone a {
    white-space: nowrap !important;
}

/* 
  Physical lighting simulation:
  Uses multi-layer gradients, mask-image cuts, and mix-blend-mode blending.
  All layers animate dynamically to create realistic depth, shimmer, and glare.
*/

.glow-frame {
    position: relative;
    display: inline-block;
    padding: 12px;
    /* border-radius: 18px; */
    overflow: hidden;
    /* 💡 Animated neon aura */
    animation: outerGlow 4s ease-in-out infinite alternate;
}

/* 🎨 Gradient Border + Lighting Simulation */
.glow-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 8px;
    /* Increased frame width */
    /* border-radius: 18px; */

    /* ✨ Layered animated gradient (Grey/Silver) */
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.9), transparent 60%),
        linear-gradient(135deg,
            #d1d5db,
            /* Light Grey */
            #6b7280,
            /* Dark Grey */
            #d1d5db
            /* Light Grey */
        );
    background-size: 200% 200%;
    animation: glowMove 4s linear infinite;

    /* 🔍 Mask to create clean gradient border frame */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    z-index: 1;
}

/* 📸 Image */
.glow-frame img {
    display: block;
    width: 100%;
    /* border-radius: 5px; */
    z-index: 2;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 🌈 Keyframes: Border Gradient Traveling */
@keyframes glowMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

/* 🌟 Keyframes: Outer Metal Glow Breathing */
@keyframes outerGlow {
    from {
        box-shadow:
            0 0 20px rgba(150, 150, 150, 0.2),
            0 0 10px rgba(200, 200, 200, 0.1);
    }

    to {
        box-shadow:
            0 0 35px rgba(150, 150, 150, 0.4),
            0 0 20px rgba(200, 200, 200, 0.2);
    }
}

/* ========================================
   MODERN CONTACT PAGE REDESIGN
   ======================================== */

.section-contact-modern {
    position: relative;
    z-index: 1;
}

.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: stretch;
    /* Stretches form to match left side height */
}

/* --- Left Side: Info Cards --- */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-glass {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle border */
    border-left: 3px solid var(--primary);
    /* Accent line */
    border-radius: 16px;
    /* Smooth corners */
    padding: 25px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-card-glass:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    transform: translateY(-5px) translateX(5px);
    box-shadow: -5px 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(67, 186, 255, 0.3);
    border-left-color: var(--secondary);
}

.contact-card-title {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card-title i {
    color: var(--primary);
    font-size: 16px;
}

.contact-card-content {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.contact-card-content a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: var(--primary);
}

/* --- Right Side: Enhanced Form --- */
/* --- Right Side: Enhanced Form --- */
.contact-form-glass-wrapper {
    position: relative;
    padding: 3px;
    /* For border gradient */
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 40%);
    height: 100%;
    /* Fill the grid cell */
}

.contact-form-modern {
    background: rgba(20, 33, 37, 0.95);
    /* Deep dark bg matching theme */
    border-radius: 22px;
    padding: 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    height: 100%;
    /* Fill the wrapper */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center form vertically to remove bottom gap */
}

.form-header-modern {
    margin-bottom: 35px;
}

.form-header-modern h3 {
    background: linear-gradient(90deg, #fff, var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
    font-weight: 700;
}

.form-group-modern {
    margin-bottom: 25px;
    position: relative;
}

.form-label-modern {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    margin-left: 5px;
    letter-spacing: 0.5px;
}

.form-control-modern {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(67, 186, 255, 0.15);
    outline: none;
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Select styling fix */
.contact-form-modern .nice-select {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    height: 54px;
    line-height: 52px;
    padding-left: 20px;
    float: none;
}

.contact-form-modern .nice-select .list {
    background-color: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.contact-form-modern .nice-select .option {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form-modern .nice-select .option:hover,
.contact-form-modern .nice-select .option.selected {
    background-color: var(--primary);
    color: #fff;
}

/* Submit Button Enhanced */
.btn-submit-modern {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(67, 186, 255, 0.3);
    margin-top: 10px;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(67, 186, 255, 0.4);
    background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.btn-submit-modern i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover i {
    transform: translateX(5px);
}

/* --- Map Section Enhanced --- */
.map-frame-modern {
    margin-top: 60px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.map-frame-modern iframe {
    border-radius: 16px;
    filter: grayscale(0.2) contrast(1.1);
    /* Subtle modernization of map tone */
    transition: filter 0.3s ease;
    display: block;
}

.map-frame-modern:hover iframe {
    filter: grayscale(0) contrast(1);
}

/* Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card-glass {
    animation: slideUpFade 0.6s ease-out forwards;
}

.contact-card-glass:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-card-glass:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-card-glass:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-card-glass:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: start;
        /* Reset stretch alignment */
    }

    .contact-right-column {
        height: auto !important;
        /* Allow natural height */
    }

    .contact-form-glass-wrapper {
        height: auto !important;
    }

    .contact-form-modern {
        padding: 30px;
        height: auto !important;
    }
}

.testimonial-item.grow-effect {
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    border: 1px solid cadetblue;
    /* Initial transparent border */
    box-shadow: 0 8px 16px rgba(81, 188, 202, 0.85);
    /* Add shadow for depth */

}

.testimonial-item.grow-effect:hover {
    /* transform: scale(1.03); Slightly grow on hover */
    box-shadow: 0 12px 24px rgba(81, 188, 202, 0.95);
    /* Enhanced shadow on hover */
    border: 1px solid var(--primary);
    /* Initial transparent border */

}

/* Social Media & WhatsApp Styling */
.social-links-glass {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn-glass.whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 12px 20px;
    border-radius: 12px;
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.social-btn-glass.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-icon-glass {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Gallery Styles - Comprehensive Override */
.gallery-item-col {
    display: flex;
    flex-direction: column;
}

.gallery-item-col .project-gird-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-item-col .project-gird-item .image {
    margin: 0 !important;
    /* Override base margin */
    padding: 0 !important;
    height: auto !important;
}

.gallery-item-wrapper {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    height: 300px !important;
    /* Strictly enforce uniform height */
    width: 100% !important;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: block !important;
}

.gallery-item-wrapper a {
    display: block !important;
    height: 100% !important;
    width: 100% !important;
    position: relative;
}

.gallery-item-wrapper img {
    width: 100% !important;
    height: 100% !important;
    /* Fill the wrapper strictly */
    max-height: 300px !important;
    min-height: 300px !important;
    object-fit: cover !important;
    /* Ensure cover */
    object-position: center !important;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1) !important;
    display: block !important;
    opacity: 0.95;
    transform-origin: center;
}

.gallery-item-wrapper:hover img {
    transform: scale(1.15) !important;
    /* More pronounced zoom */
    filter: brightness(1.1) !important;
    /* Slight brightness boost */
    opacity: 1 !important;
}

.gallery-item-wrapper .overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%) !important;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(1px);
    z-index: 2;
}

.gallery-item-wrapper:hover .overlay {
    opacity: 1;
}

.gallery-item-wrapper .overlay i {
    color: #fff;
    font-size: 32px;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.gallery-item-wrapper:hover .overlay i {
    transform: scale(1);
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.btn-load-more {
    padding: 12px 30px;
    border-radius: 30px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-load-more:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* Hide items initially for Load More */
.gallery-hidden-item {
    display: none;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon-glass:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff !important;
    /* Ensure icon remains visible */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(67, 186, 255, 0.3);
}

.social-icon-glass:hover i {
    color: #ffffff !important;
}




/*-- About us --*/
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.who-card {
    background: rgba(18, 29, 33, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.who-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(67, 186, 255, 0.25);
    border-left-color: var(--secondary);
}

.floating-card {
    animation: floating 5s ease-in-out infinite;
}

/* Justify text on medium and large screens */
/* @media (min-width: 768px) {
  .text-justify-md-up {
    text-align: justify;
  }
} */

.text-justify-md-up {
    text-align: justify;
}

.font-small {
    font-size: 14px;
}



/* Initiatives Container - Base Styles */
.initiatives-container {
    display: flex;
    width: 100%;
    gap: 30px;
    align-items: flex-start;
}

.initiatives-container>div {
    flex: 1;
    min-width: 0;
}

/* Initiative Item - Proper alignment for wrapped text */
.initiatives-container>div>div>div {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 10px;
}

.initiatives-container>div>div>div i {
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 14px;
}

.initiatives-container>div>div>div span {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

/* Laptop 1024px - Prevent text wrapping */
@media (min-width: 992px) and (max-width: 1199px) {
    .initiatives-container {
        gap: 25px;
    }

    .initiatives-container>div>div>div {
        margin-bottom: 8px;
        gap: 8px;
    }

    .initiatives-container>div>div>div i {
        font-size: 13px;
    }

    .initiatives-container>div>div>div span {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Tablet - Stack to single column (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .initiatives-container {
        flex-direction: column;
        gap: 20px;
    }

    .initiatives-container>div {
        flex: none;
        width: 100%;
    }
}

/* Mobile - Stack to single column with smaller text */
@media (max-width: 767px) {
    .initiatives-container {
        flex-direction: column;
        gap: 15px;
    }

    .initiatives-container>div {
        flex: none;
        width: 100%;
    }

    /* Smaller font size on mobile to prevent wrapping */
    .initiatives-container>div>div>div i {
        font-size: 12px;
        margin-top: 2px;
    }

    .initiatives-container>div>div>div span {
        font-size: 11px;
        line-height: 1.5;
    }

    /* Row-wise display on mobile - icon and text on same line */
    .initiatives-container>div>div>div {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 8px;
        gap: 8px;
    }
}


/* Benefit Item Responsive Styles */
.benefit-item.style-big i {
    font-size: 24px;
}

/* Laptop 1024px - Smaller benefit icons */
@media (min-width: 992px) and (max-width: 1199px) {
    .benefit-item.style-big i {
        font-size: 20px;
    }
}

/* Tablet - Medium benefit icons */
@media (min-width: 768px) and (max-width: 991px) {
    .benefit-item.style-big i {
        font-size: 18px;
    }
}

/* Mobile - Small benefit icons */
@media (max-width: 767px) {
    .benefit-item.style-big i {
        font-size: 16px;
    }
}


/* About Inner - Laptop 1024px Responsive (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .about-inner.flex {
        gap: 20px;
    }

    .about-inner .left {
        margin-left: -35px;
        margin-bottom: 70px;
    }

    .wg-curve-text {
        transform: scale(0.85);
    }
}

/* About Inner - Tablet Responsive (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .about-inner.flex {
        gap: 20px;
    }

    .about-inner .left {
        margin-left: -30px;
        margin-bottom: 60px;
    }

    .wg-curve-text {
        transform: scale(0.9);
    }
}

@media (max-width: 767px) {

    /* About Inner - Mobile Responsive */
    .about-inner.flex {
        flex-direction: column;
        gap: 15px;
    }

    .about-inner .left {
        margin-left: 0 !important;
        margin-bottom: 30px;
        text-align: center;
        display: none;
        justify-content: center;
    }

    .wg-curve-text {
        transform: scale(0.8);
    }

    .about-inner .right {
        width: 100%;
    }
}

@media (max-width: 480px) {

    /* About Inner - Small Mobile */
    .about-inner.flex {
        gap: 10px;
    }

    .about-inner .left {
        margin-bottom: 20px;
    }

    .wg-curve-text {
        transform: scale(0.7);
    }

    .wg-curve-text .icon img {
        width: 80px;
        height: 80px;
    }
}

/* Card Background Styles */

.who-card-bg2 {
    background: rgb(7, 126, 156) !important;
    box-shadow: 0 0 20px rgba(7, 126, 156, 0.35) !important;
    height: 100% !important;
    transition: all 0.3s ease !important;
}

.who-card-bg2:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 32px rgba(7, 126, 156, 0.55) !important;
}

.who-card-bg3 {
    background: #227e7e !important;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.35) !important;
    height: 100% !important;
    transition: all 0.3s ease !important;
}

.who-card-bg3:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 32px rgba(0, 255, 255, 0.55) !important;
}


/* Card 1 – Teal (trust + healthcare vibe) */
.service-card-bg1 {
    background: #227e7e !important;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.35) !important;
    height: 100% !important;
    transition: all 0.3s ease !important;
}

.service-card-bg1:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 32px rgba(0, 255, 255, 0.45) !important;
}

.service-card-bg2 {
    background: rgb(7, 126, 156) !important;
    box-shadow: 0 0 20px rgba(51, 150, 186, 0.35) !important;
    height: 100% !important;
    transition: all 0.3s ease !important;
}

.service-card-bg2:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 32px rgba(10, 111, 139, 0.5) !important;
}


/* Card 3 – Emerald Green (growth + success) */
.service-card-bg3 {
    background: #034f6d !important;
    box-shadow: 0 0 20px rgba(10, 99, 151, 0.35) !important;
    height: 100% !important;
    transition: all 0.3s ease !important;
}

.service-card-bg3:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 32px rgba(8, 116, 183, 0.55) !important;
}

/* Card 4 – Crimson Red (authority + impact) */
.service-card-bg4 {
    background: var(--dark-cadet) !important;
    box-shadow: 0 0 20px rgba(43, 185, 192, 0.4) !important;
    height: 100% !important;
    transition: all 0.3s ease !important;
}

.service-card-bg4:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 32px rgba(43, 185, 192, 0.55) !important;
}

.who-card-bg {
    background: rgba(0, 123, 255, 0.3) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4) !important;
    height: 100% !important;
    transition: all 0.3s ease !important;
}

.who-card-bg:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.6) !important;
}

.service-card-bg {
    background: rgba(27, 218, 195, 0.3) !important;
    box-shadow: 0 0 20px rgba(27, 218, 195, 0.4) !important;
    height: 100% !important;
    transition: all 0.3s ease !important;
}

.service-card-bg:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(27, 218, 195, 0.6) !important;
}

.approach-card-bg1 {
    background: rgb(7, 126, 156) !important;
    box-shadow: 0 0 20px rgba(2, 100, 113, 0.33) !important;
    height: 100% !important;
    transition: all 0.3s ease !important;

}

.approach-card-bg1:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.6) !important;
}


.approach-card-bg2 {
    background: #034f6d !important;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.33) !important;
    height: 100% !important;
    transition: all 0.3s ease !important;

}

.approach-card-bg2:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.6) !important;
}

.approach-card-bg3 {
    background: var(--dark-cadet) !important;
    box-shadow: 0 0 20px rgba(3, 74, 74, 0.33) !important;
    height: 100% !important;
    transition: all 0.3s ease !important;

}

.approach-card-bg3:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.6) !important;
}

.approach-step {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.6) !important;
    z-index: 10;
}

.step-number:hover {
    box-shadow: 0 10px 25px rgba(67, 186, 255, 0.8) !important;
}

.section-approach,
.section-approach .row,
.section-approach .col-lg-4 {
    overflow: visible !important;
}

.step-number {
    z-index: 100 !important;
}

/* ===========================
   OUR APPROACH SECTION - RESPONSIVE
   =========================== */

/* Tablet ( 991px) */
@media (max-width: 991px) {
    .section-approach {
        padding: 60px 0;
    }

    .section-approach .row {
        padding-top: 30px !important;
    }

    .approach-step {
        padding: 50px 18px !important;
    }

    .approach-step h4 {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }

    .approach-step p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    .step-number {
        width: 45px !important;
        height: 45px !important;
        font-size: 22px !important;
        top: 6px !important;
    }
}

/* Mobile ( 767px) */
@media (max-width: 767px) {
    .section-approach {
        padding: 50px 0;
    }

    .section-approach .heading-section {
        margin-bottom: 40px;
    }

    .section-approach .title {
        font-size: 32px;
    }

    .section-approach .sub-title {
        font-size: 14px;
    }

    .section-approach .body-1 {
        font-size: 15px !important;
        padding: 0 15px;
    }

    .section-approach .row {
        padding-top: 25px !important;
    }

    .section-approach .col-lg-4 {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-bottom: 25px !important;
    }

    .approach-step {
        padding: 45px 20px !important;
        border-radius: 12px !important;
    }

    .approach-step h4 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
        margin-top: 35px !important;
    }

    .approach-step p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .step-number {
        width: 42px !important;
        height: 42px !important;
        font-size: 20px !important;
        top: 5px !important;
    }

    /* Adjust hover effects for mobile */
    .approach-step:hover {
        transform: translateY(-5px) !important;
    }
}

/* Small Mobile ( 480px) */
@media (max-width: 480px) {
    .section-approach {
        padding: 40px 0;
    }

    .section-approach .title {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-approach .sub-title {
        font-size: 13px;
        margin-bottom: 12px !important;
    }

    .section-approach .body-1 {
        font-size: 14px !important;
        padding: 0 10px;
        margin-bottom: 35px !important;
    }

    .section-approach .row {
        padding-top: 20px !important;
    }

    .section-approach .col-lg-4 {
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-bottom: 20px !important;
    }

    .approach-step {
        padding: 40px 18px !important;
        border-radius: 10px !important;
    }

    .approach-step h4 {
        font-size: 17px !important;
        margin-bottom: 8px !important;
        margin-top: 30px !important;
    }

    .approach-step p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    .step-number {
        width: 38px !important;
        height: 38px !important;
        font-size: 18px !important;
        top: 4px !important;
        box-shadow: 0 4px 12px rgba(67, 186, 255, 0.4) !important;
    }
}

/* Extra Small ( 360px) */
@media (max-width: 360px) {
    .section-approach .title {
        font-size: 24px;
    }

    .approach-step h4 {
        font-size: 16px !important;
    }

    .approach-step p {
        font-size: 12px !important;
    }

    .step-number {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
    }
}