/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/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.
Version: 4.4
Tested up to: 6.8
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
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
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}
p.text-lg.sm\:text-xl.lg\:text-2xl.mb-8.sm\:mb-12.opacity-90.font-light.text-white {
    width: 44%;
    font-size: 18px;
}
h1.font-heading.font-black.text-4xl.sm\:text-4xl.md\:text-4xl.lg\:text-5xl.xl\:text-5xl.mb-6.sm\:mb-8.leading-tight.text-white {
    font-size: 40px;
    line-height: 45px;
}
b.bejin {
    color: #fff;
    font-size: 20px;
}
.gradient-primary {
            background: linear-gradient(135deg, #e53e3e 0%, #ff6b35 50%, #fbbf24 100%);
        }

        .gradient-text {
            background: linear-gradient(135deg, #e53e3e 0%, #ff6b35 50%, #fbbf24 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hover-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
        }

        .hover-image-container .image-default,
        .hover-image-container .image-hover {
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .hover-image-container .image-hover {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transform: scale(1.1);
        }

        .hover-image-container:hover .image-hover {
            opacity: 1;
            transform: scale(1);
        }

        .hover-image-container:hover .image-default {
            opacity: 0;
            transform: scale(0.9);
        }

        .category-card {
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
        }

        .category-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(229, 62, 62, 0.15);
        }

        .body-point {
            position: absolute;
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #e53e3e, #fbbf24);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 4px solid white;
            box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }
b.bejin {
    color: #fff;
}
        .body-point::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 120%;
            height: 120%;
            border-radius: 50%;
            background: linear-gradient(135deg, #e53e3e, #fbbf24);
            transform: translate(-50%, -50%);
            animation: ripple 2s infinite;
            z-index: -1;
            opacity: 0.6;
        }

        .body-point::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 160%;
            height: 160%;
            border-radius: 50%;
            background: linear-gradient(135deg, #e53e3e, #fbbf24);
            transform: translate(-50%, -50%);
            animation: ripple 2s infinite 1s;
            z-index: -2;
            opacity: 0.4;
        }

        @keyframes ripple {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.8;
            }

            50% {
                transform: translate(-50%, -50%) scale(1.8);
                opacity: 0.4;
            }

            100% {
                transform: translate(-50%, -50%) scale(2.5);
                opacity: 0;
            }
        }

        .body-point:hover {
            transform: scale(1.4);
            z-index: 20;
            box-shadow: 0 8px 25px rgba(229, 62, 62, 0.6);
        }

        .body-point:hover::before,
        .body-point:hover::after {
            animation-play-state: paused;
        }

        .tooltip {
            position: absolute;
            background: white;
            padding: 24px;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 1000;
            min-width: 280px;
            border: 2px solid #f3f4f6;
            transform: translateY(10px);
        }

        .tooltip.show {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(-10px);
        }

        .carousel-container {
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .carousel-item {
            min-width: 320px;
            margin-right: 24px;
        }

        .icon-card {
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .icon-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(229, 62, 62, 0.1);
        }

        .cta-button {
            background: linear-gradient(135deg, #e53e3e 0%, #ff6b35 50%, #fbbf24 100%);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(229, 62, 62, 0.4);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
        }

        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: white;
            margin: 15% auto;
            padding: 0;
            border-radius: 24px;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(229, 62, 62, 0.1);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: white;
            border-bottom: 1px solid #e5e7eb;
            z-index: 99;
        }

        .mobile-menu.show {
            display: block;
        }

        .contact-buttons {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 50;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .whatsapp-btn {
            background: #25D366;
        }

        .call-btn {
            background: linear-gradient(135deg, #e53e3e 0%, #ff6b35 100%);
        }

        .body-diagram-container {
            position: relative;
            display: inline-block;
            max-width: 100%;
        }

        .body-diagram-image {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Mobile Phones (320px - 480px) */
        @media (max-width: 480px) {
            .contact-buttons {
                bottom: 10px;
                right: 10px;
                gap: 8px;
            }

            .contact-btn {
                width: 40px;
                height: 40px;
            }

            .body-point {
                width: 14px;
                height: 14px;
                border: 2px solid white;
            }

            .body-diagram-image {
                max-width: 250px;
            }

            .carousel-item {
                min-width: 280px;
                margin-right: 16px;
            }

            .tooltip {
                min-width: 240px;
                padding: 16px;
            }
        }

        /* Small Mobile (481px - 640px) */
        @media (min-width: 481px) and (max-width: 640px) {
            .contact-buttons {
                bottom: 15px;
                right: 15px;
                gap: 10px;
            }

            .contact-btn {
                width: 45px;
                height: 45px;
            }

            .body-point {
                width: 16px;
                height: 16px;
                border: 2px solid white;
            }

            .body-diagram-image {
                max-width: 300px;
            }

            .carousel-item {
                min-width: 300px;
                margin-right: 18px;
            }
        }

        /* Tablets Portrait (641px - 768px) */
        @media (min-width: 641px) and (max-width: 768px) {
            .contact-buttons {
                bottom: 20px;
                right: 20px;
                gap: 12px;
            }

            .contact-btn {
                width: 50px;
                height: 50px;
            }

            .body-point {
                width: 18px;
                height: 18px;
                border: 3px solid white;
            }

            .body-diagram-image {
                max-width: 350px;
            }

            .carousel-item {
                min-width: 340px;
                margin-right: 20px;
            }
        }

        /* Tablets Landscape (769px - 1024px) */
        @media (min-width: 769px) and (max-width: 1024px) {
            .contact-buttons {
                bottom: 25px;
                right: 25px;
                gap: 14px;
            }

            .contact-btn {
                width: 55px;
                height: 55px;
            }

            .body-point {
                width: 20px;
                height: 20px;
                border: 3px solid white;
            }

            .body-diagram-image {
                max-width: 400px;
            }

            .carousel-item {
                min-width: 380px;
                margin-right: 22px;
            }
        }

        /* Small Laptops (1025px - 1366px) */
        @media (min-width: 1025px) and (max-width: 1366px) {
            .contact-buttons {
                bottom: 30px;
                right: 30px;
                gap: 15px;
            }

            .contact-btn {
                width: 60px;
                height: 60px;
            }

            .body-point {
                width: 22px;
                height: 22px;
                border: 4px solid white;
            }

            .body-diagram-image {
                max-width: 450px;
            }

            .carousel-item {
                min-width: 420px;
                margin-right: 24px;
            }
        }

        /* Large Laptops (1367px - 1920px) */
        @media (min-width: 1367px) and (max-width: 1920px) {
            .contact-buttons {
                bottom: 35px;
                right: 35px;
                gap: 18px;
            }

            .contact-btn {
                width: 65px;
                height: 65px;
            }

            .body-point {
                width: 24px;
                height: 24px;
                border: 4px solid white;
            }

            .body-diagram-image {
                max-width: 500px;
            }

            .carousel-item {
                min-width: 450px;
                margin-right: 26px;
            }
        }

        /* 4K Monitors (1921px - 2560px) */
        @media (min-width: 1921px) and (max-width: 2560px) {
            .contact-buttons {
                bottom: 40px;
                right: 40px;
                gap: 20px;
            }

            .contact-btn {
                width: 70px;
                height: 70px;
            }

            .body-point {
                width: 28px;
                height: 28px;
                border: 5px solid white;
            }

            .body-diagram-image {
                max-width: 600px;
            }

            .carousel-item {
                min-width: 500px;
                margin-right: 30px;
            }
        }

        /* Ultra-wide and Projectors (2561px+) */
        @media (min-width: 2561px) {
            .contact-buttons {
                bottom: 50px;
                right: 50px;
                gap: 25px;
            }

            .contact-btn {
                width: 80px;
                height: 80px;
            }

            .body-point {
                width: 32px;
                height: 32px;
                border: 6px solid white;
            }

            .body-diagram-image {
                max-width: 700px;
            }

            .carousel-item {
                min-width: 550px;
                margin-right: 35px;
            }
        }

        /* Landscape Orientation Adjustments */
        @media (orientation: landscape) and (max-height: 600px) {
            .modal-content {
                margin: 5% auto;
                max-height: 95vh;
            }

            .body-diagram-image {
                max-height: 70vh;
                width: auto;
            }
        }


        /* form css */

        .main-contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .main-contact-form {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.main-contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .main-contact-form label {
        margin-bottom: 0.75rem;
    }
}

.main-contact-form input[type="text"],
.main-contact-form input[type="email"],
.main-contact-form input[type="tel"],
.main-contact-form textarea,
.main-contact-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    outline: none;
}

.main-contact-form input::placeholder,
.main-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.main-contact-form input:focus,
.main-contact-form textarea:focus,
.main-contact-form select:focus {
    --tw-ring-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 2px var(--tw-ring-color);
}

@media (min-width: 768px) {
    .main-contact-form input[type="text"],
    .main-contact-form input[type="email"],
    .main-contact-form input[type="tel"],
    .main-contact-form textarea,
    .main-contact-form select {
        padding: 1rem 1.5rem;
    }
}

.main-contact-form select {
    color: black;
}

.main-contact-form select option {
    color: black;
    background-color: white;
}

.main-contact-form .full-width-field {
    grid-column: span 1;
}
@media (min-width: 768px) {
    .main-contact-form .full-width-field {
        grid-column: span 2;
    }
}

.main-contact-form .submit-section {
    text-align: center;
    grid-column: span 1;
}
@media (min-width: 768px) {
    .main-contact-form .submit-section {
        grid-column: span 2;
    }
}

.main-contact-form .button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
    .main-contact-form .button-wrapper {
        flex-direction: row;
    }
}

.main-contact-form .wpcf7-submit {
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 1.25rem;
    background: white;
    color: #e53e3e;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .main-contact-form .wpcf7-submit {
        padding: 1.5rem 4rem;
        font-size: 1.5rem;
    }
}

.main-contact-form .wpcf7-submit:hover {
    opacity: 0.9;
}

.main-contact-form .submit-section p {
    font-size: 0.875rem;
    opacity: 0.75;
}

.main-contact-form label span.wpcf7-not-valid-tip {
    padding: 5px;
    margin-top: 5px;
    background: #fffffff0;
    border-radius: 10px;
}


.consultation-form-wrapper {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.consultation-grid-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .consultation-grid-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.consultation-form-wrapper label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.consultation-form-wrapper input[type="text"],
.consultation-form-wrapper input[type="email"],
.consultation-form-wrapper input[type="tel"],
.consultation-form-wrapper textarea,
.consultation-form-wrapper select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #cbd5e0;
    outline: none;
}

.consultation-form-wrapper input:focus,
.consultation-form-wrapper textarea:focus,
.consultation-form-wrapper select:focus {
    --tw-ring-color: #ef4444;
    box-shadow: 0 0 0 2px var(--tw-ring-color);
    border-color: transparent;
}

.consultation-form-wrapper textarea {
    min-height: 5rem;
    height: 130px;
}

.consultation-buttons-flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (max-width: 747px) {
h1.font-heading.font-black.text-4xl.sm\:text-4xl.md\:text-4xl.lg\:text-5xl.xl\:text-5xl.mb-6.sm\:mb-8.leading-tight.text-white {
    font-size: 24px !important;
    line-height: 32px !important;
}
	p.text-lg.sm\:text-xl.lg\:text-2xl.mb-8.sm\:mb-12.opacity-90.font-light.text-white {
    width: 100% !important;
    font-size: 18px !important;
}
}
@media (min-width: 640px) {
	h1.font-heading.font-black.text-4xl.sm\:text-4xl.md\:text-4xl.lg\:text-5xl.xl\:text-5xl.mb-6.sm\:mb-8.leading-tight.text-white {
    font-size: 18px;
    line-height: 28px;
}
    .consultation-buttons-flex {
        flex-direction: row;
        justify-content: center;
    }
}

.consultation-form-wrapper .wpcf7-submit {
    flex: 1;
    color: white;
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    background-color: #ef4444;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consultation-form-wrapper .wpcf7-submit:hover {
    opacity: 0.9;
}

.consultation-footer-text {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}
/* contact form */
.contact-form{
	background: linear-gradient(135deg, #e53e3e 0%, #ff6b35 50%, #fbbf24 100%);
	padding: 25px;
	border-radius: 25px;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.form-control {
    width: 100%;
    padding: 10px;
    background: #fff;
    margin: 10px 0;
    color: black;
    border-radius: 5px;
	border: 1px solid #e8443c;
}
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.form-control{
	 width: 100%;
    padding: 10px;
    background: #fff;
    margin: 10px 0;
    color: black;
    border-radius: 5px;
	border: 1px solid #e8443c;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 100%;
    background-color: #e8443c;
    padding: 8px 0;
    border: 1px solid #e8443c;
    color: #fff;
    border-radius: 5px;
	/* background-color: #fff; */
}
.contact-form h3 {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
}
.contant-form-2{
	display: none;
}
/* @media (max-width: 768px) {
	.contant-form-2{
	display: block;
}
} */

select.wpcf7-form-control.wpcf7-select.selection{
     width: 100%;
    padding: 10px;
    background: #fff;
    margin: 10px 0;
    color: black;
    border-radius: 5px;
	border: 1px solid #e8443c;
}
div#leadForm input::placeholder {
    color: #000000;
}
.flex.text-accent-gold.text-xl {
    color: #ffd700;
}
@media(max-width:767px){
	.banner-main {
    display: block !important;
}
	
.banner-main .contact-info {
    gap: 10px !important;
}
	.banner-main .contact-info .gap-2 {
		gap: 0 !important;
	}
	.banner-main .contact-info .w-8 {
    width: 1rem;
}

.banner-main .contact-info .h-8 {
    height: 1rem;
}
	.banner-main .contact-info .text-sm {
    font-size: 12px;
}
}

.thank-you-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    text-align: center;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.thank-you-page .container {
    max-width: 600px;
    width: 100%;
}

.thank-you-page .content-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.thank-you-page .main-heading {
    font-size: 3rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #ff6600, #cc5200); /* Akeyso brand colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thank-you-page .sub-heading {
    font-size: 1.5rem;
    color: #666666;
    margin-bottom: 1.5rem;
}

.thank-you-page .message-body {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.thank-you-page .home-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #ff6600; /* Akeyso brand color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.thank-you-page .home-button:hover {
    background-color: #cc5200; /* Darker orange on hover */
    transform: translateY(-2px);
}

.thank-you-page .home-button svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: #ffffff;
}