/* ================================
   BLOG SECTION – MODERN UI
================================ */

/* White background wrapper */
.blog-container {
    background: #ffffff;
    padding: -90px 0;
}

/* ================================
   TITLE AREA
================================ */
.blog-container .title {
    margin-bottom: 40px;
}

.blog-container .sub-title p {
    display: inline-block;
    background: #ffc107;
    color: #111;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 30px;
    letter-spacing: 0.6px;
    margin-bottom: 12px;
}

.blog-container .main-title h3 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    max-width: 650px;
}

/* ================================
   CATEGORY BUTTONS – MODERN
================================ */
.blog-category-navbar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.blog-category-button {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-category-button:hover,
.blog-category-button.active {
    background: #ffc107;
    border-color: #ffc107;
    color: #111;
    box-shadow: 0 6px 16px rgba(255,193,7,0.35);
}

/* ================================
   BLOG CARD – MODERN GLASS
================================ */
/* =========================================
   BLOG CARD – SERVICE STYLE HOVER (FINAL)
========================================= */

.blog-inner {
    background: #fdfafa;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid #eee;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.10); /* SAME AS SERVICE */
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* SAME hover feel as service-item */
.blog-inner:hover {
    background: #0c0c0c;
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.10); /* SAME AS SERVICE */
    border-color: #ffc107;
}

/* Title hover */
.blog-inner h5 {
    transition: color 0.3s ease;
}

.blog-inner:hover h5 {
    color: #ff9800;
}

/* Meta icon color */
.blog-inner:hover .blog-meta svg path {
    fill: #ff9800;
}

/* Text soft change */
.blog-inner p {
    transition: color 0.3s ease;
}

.blog-inner:hover p {
    color: #fff3f3;
}

/* Learn more */
.blog-learn-more a {
    transition: all 0.3s ease;
}

.blog-inner:hover .blog-learn-more a {
    text-decoration : none;
    color: #ff9800;
}

.blog-inner:hover .blog-learn-more a::after {
    width: 100%;
    background: #ff9800;
}

/* Author image effect */
.blog-witer-pic img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-inner:hover .blog-witer-pic img {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px rgba(255,193,7,0.4);
}
/* Blog title */
.blog-inner h5 {
    font-size: 20px;
    font-weight: 700;
    color: #09090c;
    margin-bottom: 14px;
}

/* ================================
   META INFO
================================ */
.blog-meta {
    display: flex;
    gap: 18px;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 14px;
}

/* Description */
.blog-inner p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

/* ================================
   AUTHOR + LINK
================================ */
.blog-writer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}

.blog-witer-pic {
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-inner:hover .blog-witer-pic span {
    color: #ffffff;
}

/* Author image border + glow → WHITE */
.blog-inner:hover .blog-witer-pic img {
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.6);
}

.blog-witer-pic img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #ffc107;
}

.blog-learn-more a {
    font-size: 14px;
    color: #f59e0b;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.blog-learn-more a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #f59e0b;
    left: 0;
    bottom: -4px;
    transition: width 0.3s ease;
}

.blog-learn-more a:hover::after {
    width: 100%;
}
/* =====================================
   BLOG META – LIGHT RED ON HOVER
===================================== */

/* Date & Comment TEXT */
.blog-inner:hover .blog-meta span {
    color: #fff1f1 !important; /* soft light red */
}

/* Date & Comment SVG ICONS */
.blog-inner:hover .blog-meta svg path {
    fill: #ff6b6b !important; /* light red SVG */
}

/* Smooth animation */
.blog-meta span,
.blog-meta svg path {
    transition: color 0.3s ease, fill 0.3s ease;
}
  
.title {

    padding: 50px 30px;
    border-radius: 16px;
    margin-bottom: 0px;
    text-align: center;   /* 👈 center text */
}

/* Subtitle */
.sub-title {
    display: flex;
    justify-content: center;
}

.sub-title p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #222;
}

/* Main Banner Text */
.main-title h3 {
    margin-top: 12px;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
}

/* Optional: animated underline span */
.main-title h3 span {
    display: block;
    width: 70px;
    height: 4px;
    background: #111;
    margin: 14px auto 0;  /* 👈 centers underline */
    border-radius: 10px;
}

/* Blog Category Navbar */
.blog-category-navbar {
    padding: 15px;
    border-radius: 50px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    
}

/* Buttons */
.blog-category-button {
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
/* ================================
   CATEGORY BUTTON – DEFAULT (NO SELECTION)
================================ */

/* Default: ALL buttons have soft yellow shadow */
.blog-category-button {
    background: #ffffff;
    color: #111;
    border: 1px solid #d1d5db;              /* gray border */
    box-shadow: 0 4px 12px rgba(0,0,0,0.12); /* soft gray shadow */
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover */
.blog-category-button:hover {
    background: #111;
    color: #ffffff;
    border-color: #111;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25); /* stronger shadow */
}

/* Active */
.blog-category-button.active {
    background: #111;
    color: #ffffff;
    border-color: #111;
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}
/* ================================
   MOBILE CATEGORY CAROUSEL – FIXED
================================ */
.blog-category-mobile-wrap {
    padding: 0px 30px 46px 30px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;

}

/* arrows */
.nav-arrow {
    display: none;
    background: #111;
    color: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 3;
}
/* ================================
   MOBILE CATEGORY SLIDER – FINAL FIX
================================ */
@media (max-width: 768px) {

    .blog-category-mobile-wrap {
        display: flex;
        align-items: center;
        gap: 6px;
                width: 110%;
        margin-left: -15px;
    }

    .nav-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #111;
        color: #fff;
        font-size: 18px;
        flex-shrink: 0;
    }

    .blog-category-navbar {
        display: flex;
        gap: 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-behavior: smooth;
        
    border: 1px solid #e5e7eb;

        width: 100%;
        padding: 8px 6px;
        scrollbar-width: none;
    }

    .blog-category-navbar::-webkit-scrollbar {
        display: none;
    }

    /* 🔥 KEY FIX — FULL TEXT ALWAYS */
    .blog-category-button {
        flex: 0 0 auto;              /* ✅ auto width */
        min-width: max-content;      /* ✅ fit text */
        padding: 10px 18px;
        white-space: nowrap;         /* ✅ no wrap */
        text-align: center;
        font-size: 14px;
        border-radius: 999px;
    }
}
/* =====================================
   TABLET FIX – SAME AS DESKTOP
   (Disable slide ONLY on tablet)
===================================== */
@media (min-width: 768px) and (max-width: 991px) {

    /* Hide arrows on tablet */
    .blog-category-mobile-wrap .nav-arrow {
        display: none !important;
    }

    /* Navbar behaves like desktop */
    .blog-category-navbar {
        overflow-x: visible !important;
        flex-wrap: wrap !important;
        justify-content: center;
        padding: 15px 0;
        scrollbar-width: none;
    }

    .blog-category-navbar::-webkit-scrollbar {
        display: none;
    }

    /* Buttons auto-size like desktop */
    .blog-category-button {
        flex: initial !important;
        min-width: auto !important;
        white-space: nowrap;
        padding: 10px 22px;
        font-size: 14px;
    }
}

/* =====================================
   DISABLE BLOG LEFT-RIGHT / GSAP ANIMATION
===================================== */

.blog-inner,
.blog-post-item,
.blog-area-wrapper {
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

/* Disable GSAP animation class */
.vre-slide-down-gsap {
    transform: none !important;
    opacity: 1 !important;
}



.blog-inner {
    position: relative;
    overflow: visible;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #eee;
}

.blog-inner::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 70px;
    height: 70px;
    background: #FFAA17;
    border-radius: 8px 0 8px 0;
    z-index: -1;
}

.blog-inner::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 70px;
    height: 70px;
    background: #000;
    border-radius: 8px;
    z-index: -1;
}

.blog-inner:hover::before,
.blog-inner:hover::after {
    display: none;
}
/* =====================================
   BLOG IMAGE – FINAL RESPONSIVE STYLE
===================================== */

/* Image wrapper */
.blog-thumb {
    width: 100%;
    height: 220px;              /* Desktop company size */
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f1f5f9;        /* fallback */
}

/* Image itself */
.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* no stretch */
    display: block;
    transition: transform 0.4s ease;
}

/* Subtle zoom on card hover */
.blog-inner:hover .blog-thumb img {
    transform: scale(1.06);
}

/* =====================
   MOBILE OPTIMIZATION
===================== */
@media (max-width: 575px) {
    .blog-thumb {
        height: 180px;          /* mobile friendly */
        border-radius: 12px;
    }
}

/* =====================
   TABLET OPTIMIZATION
===================== */
@media (min-width: 576px) and (max-width: 991px) {
    .blog-thumb {
        height: 200px;
    }
}

/* =====================================================
   BLOG DETAILS – GLOBAL
===================================================== */
/* =====================================================
   ALIGN BANNER & SIDEBAR – PERFECT POSITION
===================================================== */

/* Make row act as alignment reference */
.blog-details-area .row {
    align-items: flex-start;
}

/* Fix banner vertical alignment */
.blog-details-banner {
    margin-top: 0;              /* remove offset */
    margin-bottom: 32px;
}

/* Equal top start for content & sidebar */
.blog-details-inner,
.sitebar-wrapper {
    margin-top: 0;
}

/* Optional: fine-tune visual balance */
.sitebar-wrapper {
    top: 80px;                  /* same as section padding */
}

/* Desktop exact alignment */
@media (min-width: 992px) {

    .blog-details-banner {
        margin-top: 0;
    }

    .blog-details-inner h4 {
        margin-top: 24px;
    }
}

.blog-details-area {
    background: #ffffff;
    padding: 80px 0;
    overflow-x: hidden;
}

.blog-details-inner {
    color: #0f172a;
}

/* =====================================================
   HERO IMAGE
===================================================== */

.blog-details-banner {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 18px;
    overflow: hidden;
}

.blog-details-banner img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 18px;
}

/* =====================================================
   TITLE & META
===================================================== */

.blog-details-inner h4 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 18px 0 14px;
    line-height: 1.35;
}

.blog-details-banner-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.blog-details-banner-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #64748b;
}

/* =====================================================
   CONTENT PARAGRAPH
===================================================== */

.blog-details-inner p {
    font-size: 16px;
    line-height: 1.9;
    color: #334155;
    margin-bottom: 20px;
}

/* =====================================================
   FULL WIDTH IMAGE BLOCK
===================================================== */

.blog-details-post-1-banner {
    margin: 50px 0;
    border-radius: 18px;
    overflow: hidden;
}

.blog-details-post-1-banner img {
    width: 100%;
    border-radius: 18px;
}

/* =====================================================
   CHECK LIST
===================================================== */

.blog-details-post-1 ul {
    padding: 0;
    margin: 32px 0;
}

.blog-details-post-1 ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #0f172a;
}

.blog-details-post-1 ul li span {
    font-weight: 500;
}

/* =====================================================
   SUB HEADINGS
===================================================== */

.blog-details-inner h5 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 16px;
    color: #0f172a;
}

/* =====================================================
   COMMENT LIST
===================================================== */

.blog-details-comment h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.blog-details-wrapper-comment {
    display: flex;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 18px;
}

.blog-details-commente-pic img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
}

.blog-details-comment-info h5 {
    font-size: 18px;
    margin: 0;
}

.blog-details-comment-info span {
    font-size: 13px;
    color: #64748b;
}

.blog-details-comment-info p {
    margin-top: 8px;
    color: #334155;
}

/* =====================================================
   COMMENT FORM
===================================================== */

.blog-details-comment-form {
    margin-top: 40px;
}

.blog-details-comment-form h4 {
    font-size: 26px;
    margin-bottom: 20px;
}

.blog-details-comment-form input,
.blog-details-comment-form textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    margin-bottom: 14px;
}

.blog-details-comment-form input::placeholder,
.blog-details-comment-form textarea::placeholder {
    color: #94a3b8;
}

.blog-details-comment-form textarea {
    min-height: 130px;
}

.blog-details-comment-form input[type="submit"] {
    background: #ffb703;
    color: #111;
    font-weight: 600;
    border: none;
    cursor: pointer;
    padding: 14px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.blog-details-comment-form input[type="submit"]:hover {
    background: #f59e0b;
}

/* =====================================================
   SIDEBAR
===================================================== */

.sitebar-wrapper {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px;
    position: sticky;
    top: 90px;
}

.sitebar-search-bar,
.sitebar-menu,
.sitebar-comment {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 22px;
}

.sitebar-search-bar input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.sitebar-title-1 {
    font-size: 20px;
    font-weight: 700;
    color: #ffb703;
    margin-bottom: 14px;
}

/* Sidebar menu */
.sitebar-menu ul {
    padding: 0;
    margin: 0;
}

.sitebar-menu ul li {
    list-style: none;
}

.sitebar-menu ul li a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
    color: #0f172a;
    transition: 0.3s;
}

.sitebar-menu ul li a:hover {
    color: #ffb703;
}

/* Sidebar post */
.sitebar-comment-warpeer {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.sitebar-comment-pic img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.sitebar-meta h6 {
    font-size: 15px;
    font-weight: 600;
    margin-top: 6px;
    color: #0f172a;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .blog-details-banner img {
        height: 260px;
    }

    .blog-details-inner h4 {
        font-size: 26px;
    }

    .sitebar-wrapper {
        position: static;
        margin-top: 40px;
    }
}
/* =====================================================
   SECOND IMAGE – IMAGE LEFT / CONTENT RIGHT
===================================================== */

.blog-details-post-1 {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 36px;
    align-items: center;
    margin: 60px 0;
}

/* Image box */
.blog-details-post-1 > .blog-details-post-1-banner {
    margin: 0;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

.blog-details-post-1 > .blog-details-post-1-banner img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: 20px;
}

/* Checklist right side */
.blog-details-post-1 > ul {
    margin: 0;
    padding: 0;
}

.blog-details-post-1 > ul li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 16px;
    color: #0f172a;
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 768px) {
    .blog-details-post-1 {
        grid-template-columns: 1fr;
    }

    .blog-details-post-1 > .blog-details-post-1-banner img {
        min-height: 220px;
    }
}
/* =====================================================
   SIDEBAR BANNER IMAGE – PERFECT SIZE & POSITION
===================================================== */

.sitebar-banner {
    margin: 22px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

/* Target the image */
.sitebar-banner img {
    width: 100%;
    height: 220px;              /* 👈 exact visual size like screenshot */
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* Optional hover (premium feel) */
.sitebar-banner img:hover {
    transform: scale(1.03);
    transition: transform 0.4s ease;
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 768px) {
    .sitebar-banner img {
        height: 180px;
    }
}


/* =====================================================
   SIDEBAR SEARCH – WHITE THEME (FINAL)
===================================================== */

.sitebar-search-bar {
    background: #ffffff;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

/* Form layout */
.sitebar-search-bar form {
    position: relative;
    display: flex;
    align-items: center;
}

/* Input field */
.sitebar-search-bar input {
    width: 100%;
    height: 52px;
    background: #ffffff;
    border: 1px solid #ffb703;
    border-radius: 12px;
    padding: 0 60px 0 18px; /* space for icon */
    font-size: 15px;
    color: #0f172a;
}

/* Placeholder */
.sitebar-search-bar input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

/* Focus state */
.sitebar-search-bar input:focus {
    outline: none;
    border-color: #ffb703;
    box-shadow: 0 0 0 3px rgba(255,183,3,0.25);
}

/* Search button */
.sitebar-search-bar button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #ffb703;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Icon */
.sitebar-search-bar button i {
    color: #111111;
    font-size: 16px;
}

/* Hover effect */
.sitebar-search-bar button:hover {
    background: #f59e0b;
}

/* =====================
   MOBILE SAFE
===================== */
@media (max-width: 768px) {

    .sitebar-search-bar input {
        height: 48px;
        font-size: 14px;
    }

    .sitebar-search-bar button {
        width: 40px;
        height: 40px;
    }
}




/* =====================================================
   CONTACT PAGE STYLE
===================================================== */
/* =====================================================
   CONTACT AREA – GET IN TOUCH (WHITE + YELLOW THEME)
===================================================== */

.contact-area-home-3 {
    background: #ffffff;
    padding: 9px 0;
}

/* =====================================================
   LEFT CONTACT INFO CARD
===================================================== */

.contact-area-home-3 .contact-info-wrapper {
    background: #ffffff;
    padding: 60px 55px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

/* each info row */
.contact-area-home-3 .contact-info-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid #e5e7eb;
}

.contact-area-home-3 .contact-info-inner:last-child {
    border-bottom: none;
}

/* icon box */
.contact-area-home-3 .contact-icon span {
    width: 60px;
    height: 60px;
    background: #fff7ed;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* svg color */
.contact-area-home-3 svg path {
    fill: #facc15;
}

/* text */
.contact-area-home-3 .contact-text h5 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.contact-area-home-3 .contact-text p,
.contact-area-home-3 .contact-text a {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}

/* =====================================================
   FORM WRAPPER
===================================================== */

.contact-area-home-3 .form-wrapper {
    background: #ffffff;
}

.contact-area-home-3 .form-wrapper .title {
    margin-bottom: -27px;
}

.contact-area-home-3 .form-wrapper .sub-title p {
    display: inline-block;
    background: #facc15;
    color: #111827;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    margin-bottom: 12px;
}

.contact-area-home-3 .form-wrapper .main-title h3 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

/* =====================================================
   INPUT GROUP
===================================================== */

.contact-area-home-3 .form-wrapper form {
    margin-top: 12px;   /* reduced gap between title and Name field */
}


/* row input layout */
.contact-area-home-3 .form-wrapper form .input-item {
    display: flex;
    gap: 24px;
    margin-bottom: 22px;
}

/* inputs */
.contact-area-home-3 .form-wrapper form input,
.contact-area-home-3 .form-wrapper form textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 15px 18px;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.3s ease;
}

/* placeholders */
.contact-area-home-3 input::placeholder,
.contact-area-home-3 textarea::placeholder {
    color: #94a3b8;
}

/* focus effect */
.contact-area-home-3 input:focus,
.contact-area-home-3 textarea:focus {
    outline: none;
    border-color: #facc15;
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.25);
}

/* textarea */
.contact-area-home-3 textarea {
    min-height: 150px;
    resize: none;
    margin-bottom: 25px;
}

/* =====================================================
   SUBMIT BUTTON
===================================================== */

.contact-area-home-3 .form-wrapper form input[type="submit"] {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #111827;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 42px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
}

.contact-area-home-3 .form-wrapper form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(250, 204, 21, 0.45);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {
    .contact-area-home-3 {
        padding: 70px 0;
    }

    .contact-area-home-3 .contact-info-wrapper {
        padding: 45px 35px;
        margin-bottom: 40px;
    }

    .contact-area-home-3 .form-wrapper .main-title h3 {
        font-size: 30px;
    }

    .contact-area-home-3 .form-wrapper form .input-item {
        flex-direction: column;
        gap: 18px;
    }
}

@media (max-width: 575px) {
    .contact-area-home-3 .form-wrapper .main-title h3 {
        font-size: 26px;
    }
}
/* =====================================================
   GLOBAL – STOP HORIZONTAL SCROLL (SAFE)
===================================================== */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* =====================================================
   MAP AREA – TRUE FULL WIDTH (EDGE TO EDGE)
===================================================== */
/* FULL WIDTH MAP – NO LEFT / RIGHT WHITE SPACE */
.map-area {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.map-area iframe {
    width: 100vw;
    height: 500px;
    border: 0;
    display: block;
}
@media (max-width: 768px) {
    .map-area iframe {
        height: 320px;
    }
}
/* =====================================================
   CONTACT AREA – SAFE RESPONSIVE
===================================================== */

.contact-area-home-3 {
    overflow-x: hidden;
}

.contact-area-home-3 .container {
    padding-left: 15px;
    padding-right: 15px;
}

.contact-area-home-3 input,
.contact-area-home-3 textarea {
    max-width: 100%;
}

/* =====================================================
   SVG & FLEX SAFETY
===================================================== */

.contact-area-home-3 svg {
    max-width: 100%;
    height: auto;
}

.contact-info-inner {
    flex-wrap: wrap;
}
/* =====================================================
   CONTACT INFO – MOBILE TEXT SIZE FIX
===================================================== */

@media (max-width: 575px) {

    /* Headings like "Any Questions? Email us" */
    .contact-area-home-3 .contact-text h5 {
        font-size: 16px;
        line-height: 1.35;
    }

    /* Email / phone text */
    .contact-area-home-3 .contact-text p,
    .contact-area-home-3 .contact-text a {
        font-size: 14px;
        line-height: 1.5;
        word-break: break-word;
    }

    /* Reduce icon size slightly */
    .contact-area-home-3 .contact-icon span {
        width: 48px;
        height: 48px;
    }

    .contact-area-home-3 svg {
        width: 28px;
        height: 28px;
    }
}
/* =========================================
   FIX: SHOW CALL / EMAIL TEXT ON WHITE CARD
========================================= */

.contact-area-home-3 .contact-text a,
.contact-area-home-3 .contact-text p {
    color: #475569 !important;   /* visible dark text */
}

.contact-area-home-3 .contact-text a:hover {
    color: #facc15 !important;   /* yellow hover */
}
/* =========================================
   MOBILE FIX – EMAIL / TEXT ALIGNMENT
========================================= */
@media (max-width: 575px) {

    /* Center icon + text nicely */
    .container-fluid .d-flex.align-items-center {
        align-items: flex-start !important;
        padding: 20px !important;
        height: auto !important;
    }

    /* Title */
    .container-fluid h5 {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 6px;
        white-space: nowrap;
    }

    /* Email / phone text */
    .container-fluid p {
        font-size: 13px;
        line-height: 1.5;
        word-break: break-word;     /* wrap long email */
        overflow-wrap: break-word;
    }

    /* Email specifically – keep readable */
    .fa-envelope-open + div p {
        word-break: break-all;      /* prevents ugly vertical split */
    }

    /* Icon size balance */
    .container-fluid i {
        font-size: 28px !important;
        margin-right: 14px !important;
    }
}
/* =========================================
   SPACE BETWEEN SEND MESSAGE & MAP
========================================= */

/* Space after contact section */
.contact-area-home-3 {
    margin-bottom: 80px;   /* controls gap above map */
}

/* Extra safety spacing before map */
.map-area {
    margin-top: 60px;      /* controls gap below button */
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .contact-area-home-3 {
        margin-bottom: 50px;
    }

    .map-area {
        margin-top: 40px;
    }
}
