@charset "UTF-8"; @font-face { font-family: 'Inter'; src: url('/assets/fonts/Light.woff2') format('woff2'); font-weight: 200; font-style: normal; font-display: swap; } @font-face { font-family: 'Inter'; src: url('/assets/fonts/Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: 'Inter'; src: url('/assets/fonts/Semibold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; } @font-face { font-family: 'Inter'; src: url('/assets/fonts/Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; } :root { --primary-color: #1d3754; --primary-cream: #b8a273; --primary-light: #bfdda2; --secondary-color: #333333; --primary-green: #9bcc50; --dark-color: #0F2327; --text-color: #333333; --text-light: #6c757d; --background-light: #f9f7f2; --cream-color: #f9f7f2; --white: #ffffff; --black: #000000; --smoothyellow: #fffce9; --smoothyellow-dark: #f5f2d9; --smoothyellow-darker: #e6e3c9; --softgray-light: #f8f9fa; --softgray-medium: #f1f3f5; --softgray-dark: #e9ecef; --border-radius: 10px; --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); --transition: all 0.3s ease; } .text-cream { color: var(--primary-cream) !important; } ::-webkit-scrollbar { width: 12px; } ::-webkit-scrollbar-track { background: rgba(184, 162, 115, 0.1); border-radius: 10px; } ::-webkit-scrollbar-thumb { background-color: var(--primary-cream); border-radius: 10px; border: 2px solid #fff; } ::-webkit-scrollbar-thumb:hover { background-color: rgba(184, 162, 115, 0.9); } * { scrollbar-width: normal; scrollbar-color: var(--primary-cream) rgba(184, 162, 115, 0.1); } html { scroll-behavior: smooth; } .footer-links-col { margin-top: 40px; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; color: var(--text-color); background-color: var(--white); overflow-x: hidden; } h1, h2, h3, h4, h5, h6 { font-family: 'Inter', sans-serif; font-weight: 700; line-height: 1.3; margin-bottom: 1rem; color: var(--dark-color); } p { margin-bottom: 1rem; color: #90989f; } a { text-decoration: none; color: var(--text-color); transition: var(--transition); } a:hover { color: var(--primary-color); } ul { list-style: none; padding: 0; margin: 0; } img { max-width: 100%; height: auto; } .container { max-width: 1200px; padding: 0 15px; margin: 0 auto; } .text-primary { color: var(--primary-color) !important; } .header { background-color: var(--white); position: sticky; top: 0; z-index: 1000; padding: 25px 0 15px 0; transition: box-shadow 0.3s ease; } .header.scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); } .navbar { display: flex; justify-content: space-between; align-items: center; padding: 0; position: relative; } .logo { display: flex; align-items: center; text-decoration: none; } .logo img { margin-right: 8px; border-radius: 5px; } .menu-container { display: flex; margin: 0 20px; padding-top:7px; } .menu { display: flex; margin: 0; padding: 0; list-style: none; } .menu-item { margin: 0 8px; position: relative; } .menu-link { display: block; padding: 8px 7px; font-weight: 600; color: var(--primary-color); position: relative; text-decoration: none; font-size: 15px; letter-spacing: 0.7px; } .menu-link:hover { color: var(--primary-cream); } .menu-link.active { color: var(--primary-cream); position: relative; } .menu-link.active::after { content: ''; position: absolute; bottom: 0; left: 7px; right: 7px; height: 2px; background-color: var(--primary-cream); } .menu-link i { font-size: 13px; font-weight:900; margin-left: 4px; color: var(--primary-cream); } .submenu { position: absolute; top: calc(100% + 5px ); left: 0; background-color: var(--white); border-radius: 8px; min-width: 180px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); padding: 10px 0 5px; margin-top: 0; visibility: hidden; opacity: 0; transform: translateY(20px); transition: all 0.2s ease; z-index: 1000; } .submenu li { padding: 0; margin: 0; } .submenu a { display: flex; align-items: center; padding: 6px 20px; color: var(--primary-color); font-size: 14px; text-decoration: none; transition: all 0.2s ease; } .submenu a:hover { background-color: rgba(29, 55, 84, 0.1); } .submenu a i { margin-right: 8px; font-size: 14px; } .menu-item:hover .submenu { visibility: visible; opacity: 1; transform: translateY(0); } .service-article .toc-container { margin-bottom: 1.2rem; } .service-article .toc-wrapper { padding: 15px 20px 10px; border-radius: 10px; } .service-article .toc-wrapper::before { background:none; } .toc-container { margin-bottom: 1.5rem; } .toc-wrapper { background: #ffffff; border: 1px solid #efefef; border-radius: 0 0 12px 12px; padding: 25px 25px 20px 25px; position: relative; max-height: 250px; overflow: hidden; transition: max-height 0.4s ease; } .toc-wrapper.expanded { max-height: none; } .toc-wrapper::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.9)); pointer-events: none; transition: opacity 0.3s ease; z-index: 2; } .toc-wrapper.expanded::after { opacity: 0; } .toc-wrapper::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: #b8a273; } .toc-title { color: #374151; margin-bottom:10px; font-weight: 600; font-size: 15px; display:inline-block; padding:0; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.5px; } .toc-list { list-style: none; padding: 0; margin: 0; } .toc-container .toc-list { list-style: none !important; padding: 0 !important; margin: 0 !important; } .toc-container .toc-list li { position: relative !important; padding: 0 !important; margin: 0 !important; border: none !important; background: none !important; } .toc-container .toc-list li::before { display: none !important; } .toc-link { display: flex; align-items: center; text-decoration: none; color: #6b7280; padding: 3px 0px; border-radius: 6px; transition: all 0.2s ease; font-weight: 400; margin-bottom: 2px; position: relative; line-height: 1.4; } .toc-link.level-2 { font-size: 14px; font-weight: 500; margin-left: 0; color: #374151; } .toc-link.level-3 { font-size: 13px; color: #6b7280; } .toc-link.level-4, .toc-link.level-5, .toc-link.level-6 { font-size: 12px; margin-left: 15px; color: #9ca3af; } .toc-link:hover { background: #f3f4f6; color: #1f2937; text-decoration: none; transform: translateX(2px); } .toc-link i { margin-right: 8px; font-size: 10px; color: var(--primary-cream); width: 12px; height: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .toc-link.level-2 i { font-size: 12px; color: var(--primary-cream); width: 14px; height: 14px; } .toc-link:hover i { color: #1f2937; } .toc-link span { line-height: 1.4; flex: 1; } #toc-toggle { background: #f9fafb; border: 1px solid #d1d5db; border-radius: 5px; color: #6b7280; padding: 2px 6px; transition: all 0.2s ease; font-size: 11px; margin-left:5px; vertical-align:baseline } #toc-toggle:hover { background: #f3f4f6; color: #374151; } @media (max-width: 768px) { .toc-wrapper { padding: 16px; border-radius: 10px; } .toc-title { font-size: 0.9rem; } .toc-link { padding: 6px 10px; margin-bottom: 1px; } .toc-link.level-2 { font-size: 13px; } .toc-link.level-3 { font-size: 12px; margin-left: 12px; } .toc-link.level-4, .toc-link.level-5, .toc-link.level-6 { font-size: 11px; margin-left: 24px; } .toc-link i { font-size: 9px; width: 10px; height: 10px; margin-right: 6px; } .toc-link.level-2 i { font-size: 11px; width: 12px; height: 12px; } .toc-link:hover { transform: translateX(1px); } } .mega-menu { position: absolute; top: calc(100% + 5px); left: 50%; transform: translateX(-50%); background-color: var(--white); border-radius: 8px; min-width: 400px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); padding: 10px; visibility: hidden; opacity: 0; transform: translateX(-50%) translateY(20px); transition: all 0.2s ease; z-index: 1000; display: flex; } .menu-item:hover .mega-menu { visibility: visible; opacity: 1; transform: translateX(-50%) translateY(0); } .mega-menu-column { flex: 1; min-width: 200px; padding: 0 15px; } .menu-category { color: var(--primary-cream); font-weight: 600; padding: 10px 15px; margin-bottom: 5px; border-bottom: 1px solid #eee; font-size: 13px; } .mega-menu a { display: flex; align-items: center; padding: 5px 15px; color: var(--primary-color); font-size: 14px; text-decoration: none; transition: all 0.2s ease; } .mega-menu a:hover { background-color: rgba(29, 55, 84, 0.1); } .mega-menu a i { margin-right: 8px; font-size: 14px; color: var(--primary-cream); } @media (max-width: 991px) { .menu-container { position: fixed; top: 0; right: -300px; width: 300px; height: 100vh; background: var(--white); margin: 0; padding: 60px 20px 20px; box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; overflow-y: auto; z-index: 1000; } .menu-container.active { right: 0; } .menu { flex-direction: column; } .menu-item { margin: 0; border-bottom: 1px solid rgba(0, 0, 0, 0.1); } .menu-link { padding: 15px 0; } .submenu, .mega-menu { position: static; box-shadow: none; padding: 0; margin: 0; visibility: visible; opacity: 1; transform: none; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; display: block; } .mega-menu { min-width: auto; padding-left: 15px; } .mega-menu-column { padding: 0; } .menu-category { padding: 10px 0; color: var(--primary-cream); font-size: 13px; margin: 5px 0; } .mega-menu a, .submenu a { padding: 8px 0; } .menu-item.open .submenu, .menu-item.open .mega-menu { max-height: 1000px; } .nav-right { display: none; } body.menu-open { overflow: hidden; } body.menu-open::after { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 999; } } .nav-right { display: flex; align-items: center; } .get-started-btn { display: inline-flex; align-items: center; background-color: #b8a273; color: var(--white); padding: 8px 16px; border-radius: 50px; font-weight: 600; font-size: 14px; text-decoration: none; transition: var(--transition); } .get-started-btn:hover { background-color: var(--primary-color) !important; } .get-started-btn i { margin-right: 8px; } .get-started-btn:hover { background: var(--primary-dark); color: #fff; } .chat-link { display: flex; align-items: center; font-weight: 500; color: var(--primary-color); text-decoration: none; position: relative; transition: var(--transition); } .chat-link:hover { color: var(--primary-cream); } .chat-link span { font-size: 15px; } .chat-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background-color: rgba(155, 204, 80, 0.15); border: none; color: var(--primary-cream); border-radius: 50%; margin-right: 10px; } .chat-link i.bi-arrow-right { margin-left: 8px; font-size: 16px; transition: transform 0.3s ease; } .chat-link:hover i.bi-arrow-right { transform: translateX(5px); color: var(--primary-cream); } .hero-section { padding: 0; position: relative; overflow: hidden; } .hero-wrapper { position: relative; border-radius: 30px; margin: 30px 0; padding: 70px 0 50px 0; background-color: #fffde9; overflow: hidden; } .hero-wrapper::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; top: 0; background-image: url(/assets/img/pat2.svg); background-position: bottom; background-repeat: repeat-x; background-size: contain; opacity: 0.5; pointer-events: none; } .hero-container { position: relative; display: flex; flex-direction: column; justify-content: space-between; margin-bottom: 30px; } .hero-content { max-width: 600px; z-index: 2; } .hero-title { font-size: 56px; font-weight: 700; line-height: 1.1; color: var(--primary-color); margin-bottom: 20px; } .hero-text { font-size: 18px; font-weight: 400; margin-bottom: 30px; max-width: 90%; color: #919191; } .hero-buttons { display: flex; align-items: center; gap: 20px; margin-top: 30px; } .btn-dark-rounded { display: inline-block; padding: 10px 25px 10px 20px; background-color: var(--primary-color); color: var(--white); border-radius: 50px; font-weight: 600; font-size: 14px; text-decoration: none; transition: var(--transition); } .btn-dark-rounded i{ margin-right: 5px; } .btn-dark-rounded:hover { background-color: var(--primary-cream); color: var(--white); } .transparent-circle { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.2); margin-right: 10px; } .transparent-circle i { font-size: 12px; margin: 0; } .hero-image-wrap { position: relative; display: inline-block; margin-top: 40px; z-index: 1; padding: 12px; background-color: rgb(251 247 224); border-radius: 20px; } .hero-img { display: block; border-radius: 20px; box-shadow: var(--box-shadow); /* height: auto; */ width: 100%; height: 100%; object-fit: cover; } .voice-search-btn { position: absolute; left: 5px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--primary-cream); font-size: 16px; cursor: pointer; padding: 8px; transition: var(--transition); z-index: 2; border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; } .voice-search-btn:hover { background-color: rgba(184, 162, 115, 0.1); color: var(--primary-color); transform: translateY(-50%) scale(1.1); } .voice-search-btn.listening { background-color: #ef4444; color: white; animation: pulse 1.5s infinite; } .voice-search-btn-large { background: rgba(184, 162, 115, 0.1); border: 1px solid rgba(184, 162, 115, 0.3); color: var(--primary-cream); padding: 12px 16px; margin-right: 8px; border-radius: 8px; cursor: pointer; transition: var(--transition); font-size: 18px; display: flex; align-items: center; justify-content: center; } .voice-search-btn-large:hover { background: var(--primary-cream); color: white; transform: scale(1.05); } .voice-search-btn-large.listening { background-color: #ef4444; color: white; border-color: #ef4444; animation: pulse 1.5s infinite; } .voice-search-btn-404 { background: rgba(184, 162, 115, 0.1); border: 1px solid rgba(184, 162, 115, 0.3); color: var(--primary-cream); padding: 10px 14px; margin-right: 8px; border-radius: 6px; cursor: pointer; transition: var(--transition); font-size: 16px; display: flex; align-items: center; justify-content: center; } .voice-search-btn-404:hover { background: var(--primary-cream); color: white; transform: scale(1.05); } .voice-search-btn-404.listening { background-color: #ef4444; color: white; border-color: #ef4444; animation: pulse 1.5s infinite; } .growth-card { position: absolute; bottom: 30px; left: -20px; background-color: var(--primary-color); border-radius: 10px; padding: 15px; box-shadow: var(--box-shadow); min-width: 180px; z-index: 2; display: flex; flex-direction: column; } .growth-header h6 { font-size: 22px; font-weight: 700; margin-bottom: 2px; color: var(--primary-cream); } .growth-header p { font-size: 14px; margin-bottom: 10px; color: var(--white); } .growth-chart { background-color: rgba(255, 255, 255, 0.1); border-radius: 8px; height: 35px; margin-bottom: 8px; position: relative; overflow: hidden; display: flex; align-items: center; padding: 0 10px; } .chart-inner { display: flex; align-items: center; justify-content: flex-end; width: 100%; } .growth-value { font-size: 14px; font-weight: 700; color: var(--primary-cream); } .growth-footer span { font-size: 12px; color: var(--text-light); display: block; } .customer-card { position: absolute; top: 20px; right: -10px; background-color: var(--white); padding: 12px; display: flex; align-items: center; min-width: 150px; z-index: 2; border-radius: 20px 20px 20px 20px; box-shadow: 0px 0px 19px 10px rgba(0, 0, 0, 0.11); } .hero-content h1{ color: var(--primary-color); } .customer-icon { width: 45px; height: 45px; border-radius: 50%; background-color: var(--primary-cream); display: flex; align-items: center; justify-content: center; margin-right: 10px; } .customer-icon i { color:#fff !important; font-size: 21px; } .customer-text h3 { font-size: 18px; font-weight: 700; margin-bottom: 0; } .customer-text p { font-size: 13px; margin-bottom: 0; color: var(--text-light); } .analytics-banner { background-color: var(--white); border-radius: 30px; display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; box-shadow: var(--box-shadow); margin-bottom: 0; margin-top: 30px; position: relative; max-width: 90%; margin-left: auto; margin-right: auto; } .analytics-content { display: flex; align-items: center; } .analytics-icon { width: 36px; height: 36px; background-color: rgba(155, 204, 80, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; } .analytics-icon i { color: var(--primary-cream); } .arrow-btn { width: 36px; height: 36px; background-color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); } .arrow-btn:hover { background-color: var(--primary-color); color: var(--white); transform: translateX(5px); } .about-section { padding: 70px 0; background-color: var(--white); } .section-header { text-align: center; margin-bottom: 50px; } .section-header h6 { font-size: 14px; font-weight: 600; letter-spacing: 2px; color: var(--primary-cream); margin-bottom: 15px; text-transform: uppercase; } .section-header h2 { font-size: 42px; font-weight: 700; color: var(--primary-color); } .feature-grid { display: grid; grid-template-columns: 1fr; gap: 30px; } .feature-item { padding: 0 10px; } .feature-card { background-color: var(--white); border-radius: 15px; padding: 30px; box-shadow: var(--box-shadow); transition: var(--transition); height: 100%; } .feature-card:hover { transform: translateY(-10px); } .feature-card.active { background-color: var(--primary-color); } .feature-card.active h3, .feature-card.active p, .feature-card.active .feature-link { color: var(--white); } .feature-icon { width: 60px; height: 60px; border-radius: 50%; background-color: rgba(155, 204, 80, 0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; } .feature-card.active .feature-icon { background-color: rgba(255, 255, 255, 0.2); } .feature-icon i { font-size: 24px; color: var(--primary-cream); } .feature-card.active .feature-icon i { color: var(--white); } .feature-card h3 { font-size: 20px; margin-bottom: 15px; } .feature-card p { margin-bottom: 20px; } .feature-link { display: inline-flex; align-items: center; font-weight: 600; color: var(--primary-color); text-decoration: none; font-size: 14px; } .feature-link:hover { color: var(--primary-color); } .feature-card.active .feature-link:hover { color: var(--primary-color); } .services-section { padding: 4px 0; position: relative; } .services-wrapper { border-radius: 30px; margin: 0px 0 50px; padding: 70px 0 80px 0; position: relative; background-color: var(--softgray-medium); background-image: url(/assets/img/pattern3.jpg); background-repeat: no-repeat; background-position: right center; overflow: hidden; } .service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 40px; } .service-item { transition: var(--transition); } .service-card { background: var(--white); border-radius: var(--border-radius); padding: 15px 10px 10px 20px; height: 100%; transition: var(--transition); border: 1px solid var(--softgray-dark); display: block; text-decoration: none; color: var(--text-color); } .service-card:hover { transform: translateY(-5px); box-shadow: var(--box-shadow); border-color: var(--primary-cream); } .service-icon { width: 45px; height: 45px; background: var(--smoothyellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: var(--transition); } .service-card:hover .service-icon { background: var(--primary-cream); } .service-icon i { font-size: 20px; color: var(--primary-cream); transition: var(--transition); } .service-card:hover .service-icon i { color: var(--white); } .service-card h3 { font-size: 18px; margin-bottom: 14px; color: var(--primary-color); transition: var(--transition); } .service-card p { font-size: 14px; margin-bottom: 10px; color: var(--text-light); line-height: 1.6; } .service-link { display: inline-flex; align-items: center; font-weight: 600; color: var(--primary-color); text-decoration: none; font-size: 14px; transition: var(--transition); } .service-link i { margin-left: 8px; transition: transform 0.3s ease; } .service-link:hover i { transform: translateX(4px); } .service-card.active .service-link { color: var(--primary-cream); } .features-banner .view-all-btn{ margin-top: 70px; } .view-all-btn { display: inline-flex; align-items: center; justify-content: center; background-color: var(--primary-color); color: var(--white); padding: 12px 25px 12px 20px; border-radius: 50px; margin-top: 5px; font-weight: 600; border: none; font-size: 14px; transition: var(--transition); text-decoration: none; cursor: pointer; } .view-all-btn:hover { background-color: var(--primary-cream); color: var(--white); } .view-all-btn i { margin-left: 8px; font-size: 18px; transition: transform 0.3s ease; } .view-all-btn:hover i { transform: translateX(4px); } .transparent-circle-btn { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.2); margin-right: 10px; } .transparent-circle-btn i { font-size: 12px; margin: 0; } .text-center { text-align: center; } .service-category-title { font-size: 18px; font-weight: 700; color: var(--primary-cream); text-align: center; margin: 40px 0 25px 0; text-transform: uppercase; letter-spacing: 1px; } @media (max-width: 1200px) { .service-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } } @media (max-width: 991px) { .service-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; } .services-wrapper { margin: 30px 15px; padding: 20px 0 20px 0; } } @media (max-width: 767px) { .service-grid { grid-template-columns: 1fr; gap: 15px; max-width: 400px; margin-left: auto; margin-right: auto; } } .footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url('/assets/img/pat.svg'); background-position: top; background-repeat: repeat; opacity: 0.8; z-index: 0; } .footer { background-color: var(--primary-color); color: var(--white); padding: 40px 0 25px; position: relative; overflow: hidden; } .footer-content { display: grid; grid-template-columns: 1.5fr 0.8fr 1.2fr 1.2fr 1.2fr; gap: 30px; } .footer-branding, .footer-links-col, .footer-bottom, .social-icons { position: relative; z-index: 1; } .footer-branding hr { border: 0; height: 1px; background: linear-gradient(to right, rgba(184, 162, 115, 0.1), rgba(184, 162, 115, 0.3), rgba(184, 162, 115, 0.1)); margin: 5px 0 10px 0; width: 80%; } .footer-branding .contact-list { margin-top: 20px; } .footer-branding .contact-list li { margin-bottom: 5px; } .footer-desc { font-size:14px } .footer-branding .contact-list i { color: var(--primary-cream); font-size: 13px; margin-right: 10px; opacity: 0.9; } .footer-branding .contact-list span { color: rgba(255, 255, 255, 0.7); font-size: 14px; } .contact-list a{ color:#ccc; font-size:14px; } .footer-content { display: grid; grid-template-columns: 1.8fr 0.9fr 1.2fr 1.2fr 1.2fr; gap: 30px; padding: 20px 0 30px 0; } .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); } .footer-bottom p { color: rgba(255, 255, 255, 0.6); font-size: 14px; margin: 0; } .social-icons { display: flex; gap: 8px; } .social-icons a { width: 25px; height: 25px; display: flex; align-items: center; justify-content: center; border-radius: 6px; background: rgba(255, 255, 255, 0.1); color: var(--white); transition: all 0.3s ease; } .social-icons a:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-3px); } .social-icons a i { font-size: 13px; } @media (max-width: 1200px) { .footer-content { grid-template-columns: 1.8fr 0.8fr 1.2fr 1.4fr; gap: 20px; } } @media (max-width: 991px) { .footer-content { grid-template-columns: 1fr; gap: 40px; } .footer-branding { grid-column: 1 / -1; } } @media (max-width: 767px) { .footer-content { grid-template-columns: 1fr; gap: 30px; } .footer-bottom { flex-direction: column; gap: 20px; text-align: center; } .social-icons { justify-content: center; } .footer-branding { text-align: center; } .footer-branding .contact-list { align-items: center; } .footer-links-col { text-align: center; } .footer-links-col h5::after { left: 50%; transform: translateX(-50%); } .footer-links { align-items: center; justify-content: center; } .footer-links a { justify-content: center; text-align: center; } } @media (min-width: 576px) { .hero-title { font-size: 48px; } .growth-card { min-width: 200px; } .customer-card { min-width: 180px; } } @media (min-width: 768px) { .hero-title { font-size: 52px; } .hero-container { flex-direction: row; align-items: center; gap: 10px; } .hero-content { flex: 1; margin-bottom: 0; } .hero-image-wrap { margin-top: 0; } .footer-content { flex-direction: row; justify-content: space-between; } .footer-links-wrapper { flex-direction: row; gap: 50px; margin-top: 0; } .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } .footer-bottom p { margin-bottom: 0; } } @media (min-width: 992px) { .mobile-toggle { display: none; } .main-nav { display: flex; } .hero-title { font-size: 56px; } .hero-wrapper { margin: 12px 40px; border-radius: 60px; } .feature-grid { grid-template-columns: repeat(3, 1fr); } .footer-content { gap: 30px; } .footer-links-wrapper { flex: 1; justify-content: space-around; } .growth-card { bottom: 50px; left: -30px; } .customer-card { top: 30px; right: -20px; } } @media (min-width: 1200px) { .hero-title { font-size: 60px; } .growth-card { min-width: 220px; } .customer-card { min-width: 200px; } } .mobile-toggle { display: block; background: none; border: none; width: 30px; height: 30px; position: relative; cursor: pointer; } .toggle-line { display: block; width: 100%; height: 2px; background-color: var(--dark-color); position: relative; } .toggle-line::before, .toggle-line::after { content: ''; position: absolute; left: 0; width: 100%; height: 2px; background-color: var(--dark-color); } .toggle-line::before { top: -8px; } .toggle-line::after { bottom: -8px; } .wavy-line, .chat-line { display: none; } .contact-info { display: flex; background-color: rgb(195 229 141 / 10%); align-items: center; color: var(--primary-color); text-decoration: none; font-weight: 600; padding: 7px 15px; border-radius: 50px; transition: var(--transition); } .contact-info:hover { background-color: rgba(29, 55, 84, 0.1); color: var(--primary-color); } .contact-info i { margin-right: 6px; font-size: 16px; color: var(--primary-cream); } .contact-info span { font-size: 14px; } .nav-item.dropdown.wide-menu .dropdown-menu { padding: 15px; display: flex; flex-direction: row; flex-wrap: nowrap; width: 400px; left: -150px; opacity: 0; transform: translateY(20px); transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s; } .nav-item.dropdown.wide-menu:hover .dropdown-menu { opacity: 1; transform: translateY(0); visibility: visible; transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s; } .nav-item.dropdown.wide-menu .dropdown-menu > div { flex: 1; padding: 0 10px; border-right: 1px solid rgba(0,0,0,0.02); } .nav-item.dropdown.wide-menu .dropdown-menu > div:last-child { border-right: none; } .nav-item.dropdown.wide-menu .dropdown-menu .menu-category { padding: 0 0 6px 0; margin-top: 0; margin-bottom: 8px; border-bottom: 1px solid rgba(0,0,0,0.03); } .nav-item.dropdown.wide-menu .dropdown-menu .menu-category span { font-size: 12px; font-weight: 600; color: var(--primary-cream); text-transform: uppercase; letter-spacing: 0.5px; } .nav-item.dropdown.wide-menu .dropdown-menu li { width: 100%; padding: 2px 0; } .nav-item.dropdown.wide-menu .dropdown-menu a { padding: 5px 10px; text-align: left; border-radius: 6px; transition: all 0.2s ease; display: flex; flex-direction: row; align-items: center; height: 100%; justify-content: flex-start; } .nav-item.dropdown.wide-menu .dropdown-menu a i { margin-right: 8px; margin-top: 0; font-size: 14px; color: var(--primary-cream); opacity: 0.7; } .nav-item.dropdown.wide-menu .dropdown-menu a:hover i { opacity: 1; color: var(--primary-color); } .nav-item.dropdown.wide-menu .dropdown-menu a:hover { background-color: rgba(29, 55, 84, 0.1); transform: translateY(-2px); } @media (max-width: 991px) { .nav-item.dropdown::after { height: 10px; } .dropdown-menu { top: calc(100% + 10px); } .nav-item.dropdown.wide-menu:hover .dropdown-menu { flex-direction: column; width: 280px; left: 0; padding: 12px; } .nav-item.dropdown.wide-menu .dropdown-menu > div { flex: none; padding: 5px 0; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); margin-bottom: 5px; } .nav-item.dropdown.wide-menu .dropdown-menu > div:last-child { border-bottom: none; margin-bottom: 0; } } .nav-item.dropdown { position: relative; } .nav-item.dropdown::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 15px; background: transparent; z-index: 999; } .whatsapp-widget { position: fixed; bottom: 20px; right: 20px; z-index: 9999; font-family: 'Inter', sans-serif; } .whatsapp-toggle { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; background-color: #25D366; color: white; border-radius: 50%; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); cursor: pointer; transition: all 0.3s ease; position: relative; z-index: 2; } .whatsapp-toggle i { font-size: 32px; color: white; } .whatsapp-toggle:hover { transform: scale(1.05); } @keyframes pulse { 0% { transform: scale(0.95); opacity: 0.7; } 70% { transform: scale(1.3); opacity: 0; } 100% { transform: scale(1.3); opacity: 0; } } @keyframes impulse { 0% { transform: scale(0.9); opacity: 0.7; } 100% { transform: scale(1.4); opacity: 0; } } .whatsapp-content { position: absolute; bottom: 80px; right: 0; width: 300px; background-color: #f5f5f5; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); opacity: 0; transform: translateY(20px); visibility: hidden; transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s; } .whatsapp-widget.panel-open .whatsapp-content { opacity: 1; transform: translateY(0); visibility: visible; transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s; } .whatsapp-header { display: flex; align-items: center; justify-content: space-between; background-color: #075E54; color: white; padding: 15px; } .whatsapp-title { font-weight: 600; font-size: 16px; } .whatsapp-close { background: none; border: none; color: white; font-size: 20px; cursor: pointer; padding: 0; line-height: 1; } .whatsapp-body { padding: 20px; background-color: #e5ddd5; background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm33.414-6l5.95-5.95L45.95.636 40 6.586 34.05.636 32.636 2.05 38.586 8l-5.95 5.95 1.414 1.414L40 9.414l5.95 5.95 1.414-1.414L41.414 8zM40 48c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zM9.414 40l5.95-5.95-1.414-1.414L8 38.586l-5.95-5.95L.636 34.05 6.586 40l-5.95 5.95 1.414 1.414L8 41.414l5.95 5.95 1.414-1.414L9.414 40z' fill='%239C92AC' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E"); } .whatsapp-message { background-color: #dcf8c6; padding: 12px 15px; border-radius: 0 8px 8px 8px; max-width: 85%; margin-left: auto; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08); position: relative; } .whatsapp-message p { margin: 0; color: #303030; font-size: 14px; line-height: 1.4; } .whatsapp-message p:first-child { margin-bottom: 5px; font-weight: 500; } .whatsapp-footer { background-color: #f0f0f0; padding: 15px; border-top: 1px solid #e0e0e0; } .whatsapp-button { display: flex; align-items: center; justify-content: center; background-color: #25D366; color: white; padding: 10px 15px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 14px; transition: all 0.3s ease; width: 100%; margin-bottom: 8px; } .whatsapp-button:hover { background-color: #128C7E; color: white; } .whatsapp-button i { margin-right: 8px; font-size: 18px; } .whatsapp-info { display: flex; align-items: center; justify-content: center; font-size: 12px; color: #555; } .whatsapp-info span { width: 8px; height: 8px; background-color: #25D366; border-radius: 50%; display: inline-block; margin-right: 5px; } .whatsapp-text-button { display: none; } .whatsapp-widget.panel-closed .whatsapp-toggle { display: flex !important; border-radius: 50%; width: 60px; height: 60px; border:0; } .whatsapp-widget.panel-closed .whatsapp-toggle::before { content: ""; position: absolute; top: -15px; left: -15px; width: calc(100% + 30px); height: calc(100% + 30px); border-radius: 50%; background-color: #3EDC81; z-index: -1; opacity: 0.7; animation: impulse 3s infinite; } .whatsapp-widget.panel-open .whatsapp-toggle { display: none; } .whatsapp-widget.panel-open .whatsapp-toggle::before { animation: none; } @media (min-width: 768px) { .whatsapp-widget.panel-closed .whatsapp-toggle { display: flex !important; } } .section-subtitle { display: inline-block; padding: 8px 20px; border: 1px solid var(--primary-cream); border-radius: 30px; font-size: 14px; font-weight: 600; color: var(--primary-cream); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; } .section-title { font-size: 46px; font-weight: 700; color: var(--dark-color); margin-bottom: 20px; line-height: 1.2; } .section-description { font-size: 18px; color: var(--text-light); max-width: 850px; margin: 0 auto 50px; line-height: 1.6; } .features-banner { margin: 60px 0 80px; padding: 30px 0 0; position: relative; overflow: hidden; } .features-banner::before { content: ""; position: absolute; width: 1100px; height: 1100px; border-radius: 801px; background: transparent; border: 1px solid rgba(235, 235, 230, 0.4); top: 10px; left: 50%; transform: translateX(-50%); z-index: -1; } .features-banner::after { content: ""; position: absolute; width: 780px; height: 780px; border-radius: 670px; background-color: rgba(235, 235, 230, 0.1); border: 1px solid rgba(235, 235, 230, 0.4); top: 170px; left: 50%; transform: translateX(-50%); z-index: -2; } .features-container { max-width: 1300px; margin: 0 auto; padding: 10px 20px 10px 20px; position: relative; z-index: 2; } .features-container::before { display: none; } .features-header { text-align: center; margin-bottom: 40px; position: relative; } .features-content { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto auto; gap: 0; overflow: hidden; border-radius: 20px; box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.08); } .feature-box { position: relative; padding: 35px 30px; display: flex; flex-direction: column; background-color: var(--white); border-radius: 0; height: 100%; } .feature-box:nth-child(1) { background-color: #ffffff; } .feature-box:nth-child(3) { background-color: #ffffff; } .feature-box:nth-child(5) { background-color: #ffffff; } .feature-box h3 { font-size: 22px; font-weight: 700; color: var(--dark-color); margin-bottom: 15px; } .feature-box p { font-size: 16px; line-height: 1.6; color: var(--text-light); } .feature-image { position: relative; height: 100%; border-radius: 0; overflow: hidden; } .feature-image img { width: 100%; height: 100%; object-fit: cover; display: block; } .features-content > div:first-child { border-top-left-radius: 20px; } .features-content > div:nth-child(3) { border-top-right-radius: 20px; } .features-content > div:nth-child(4) { border-bottom-left-radius: 20px; } .features-content > div:last-child { border-bottom-right-radius: 20px; } @media (max-width: 991px) { .features-content { grid-template-columns: 1fr; grid-template-rows: auto; gap: 0; } .feature-image, .feature-box { min-height: 250px; } .feature-box h3 { font-size: 22px; } .feature-box p { font-size: 15px; } .features-content > div:first-child { border-top-left-radius: 20px; border-top-right-radius: 20px; } .features-content > div:nth-child(3) { border-top-right-radius: 0; } .features-content > div:nth-child(4) { border-bottom-left-radius: 0; } .features-content > div:last-child { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; } } .feature-box .check-icon { width: 55px; height: 55px; border-radius: 50%; background-color: #f9f9f9; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; position: relative; border: 1px solid rgb(241 236 203); } .feature-box .check-icon::before { content: ""; position: absolute; top: -6px; left: -6px; right: -6px; bottom: -6px; border-radius: 50%; border: 1px solid rgba(184, 162, 115, 0.2); background-color: rgba(255, 255, 255, 0.8); z-index: -1; } .feature-box .check-icon::after { content: ""; position: absolute; top: -3px; left: -3px; right: -3px; bottom: -3px; border-radius: 50%; background-color: transparent; border: 2px solid rgba(255, 255, 255, 0.9); z-index: -1; } .feature-box .check-icon i { color: var(--primary-cream); font-size: 22px; } .icon-circle { width: 50px; height: 50px; border-radius: 50%; background-color: #f9f9f9; display: flex; align-items: center; justify-content: center; position: relative; border: 2px solid rgba(255, 255, 255, 0.9); } .icon-circle::before { content: ""; position: absolute; top: -6px; left: -6px; right: -6px; bottom: -6px; border-radius: 50%; border: 1px solid rgba(184, 162, 115, 0.2); background-color: rgba(255, 255, 255, 0.8); z-index: -1; } .icon-circle::after { content: ""; position: absolute; top: -3px; left: -3px; right: -3px; bottom: -3px; border-radius: 50%; background-color: transparent; border: 2px solid rgba(255, 255, 255, 0.9); z-index: -1; } .icon-circle i { color: var(--primary-cream); font-size: 22px; } .contact-lead-section { padding: 70px 0 85px; background-color: #f1f3f5; position: relative; } .contact-lead-wrapper { display: flex; border-radius: 20px; overflow: hidden; background-color: var(--white); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06); gap: 0; } .contact-lead-content { flex: 1; padding: 55px 45px 40px; position: relative; } .contact-lead-image { flex: 0.7; position: relative; background-color: var(--softgray-medium); } .contact-lead-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-left:5px solid #f8f6f1; } .contact-lead-title { font-size: 42px; font-weight: 700; margin-bottom: 20px; color: var(--primary-color); } .contact-lead-text { font-size: 16px; line-height: 1.7; color: var(--text-light); margin-bottom: 30px; max-width: 90%; } .contact-form { position: relative; width: 100%; } .form-row { display: flex; gap: 20px; margin-bottom: 20px; width: 100%; } .form-group { flex: 1; margin-bottom: 10px; width: 100%; } .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 16px 18px; border: 2px solid var(--primary-cream); border-radius: 10px; background-color: var(--white); font-size: 14px; font-weight: 500; transition: all 0.3s ease; } .form-group input::placeholder, .form-group textarea::placeholder { color: #666; font-weight: 500; font-family: 'Inter', sans-serif; } .form-group.full-width { width: 100%; } .form-group textarea { resize: none; min-height: 100px; width: 100%; margin-top: 0; } .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-cream); box-shadow: 0 0 0 4px rgba(184, 162, 115, 0.15); } .form-group.terms-check { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; max-width: 100%; background-color: rgba(184, 162, 115, 0.1); padding: 15px; border-radius: 7px; } .form-group.terms-check input[type="checkbox"] { width: 15px; height: 15px; margin-top: 1px; accent-color: var(--primary-cream); cursor: pointer; } .form-group.terms-check label { font-size: 12px; font-weight: 500; margin-bottom: 0; line-height: 1.5; color: var(--text-color); display: block; } .form-group.terms-check label a { color: var(--primary-cream); text-decoration: none; font-weight: 600; } .form-group.terms-check label a:hover { text-decoration: underline; } .form-submit-btn:hover { background-color: var(--primary-cream); } .form-submit-btn i { margin-left: 8px; transition: transform 0.3s ease; } .form-submit-btn:hover i { transform: translateX(3px); } @media (max-width: 991px) { .contact-lead-wrapper { flex-direction: column; } .contact-lead-content, .contact-lead-image { flex: 1; width: 100%; } .contact-lead-image { height: 300px; order: -1; } .form-row { flex-direction: column; gap: 0; } .contact-lead-content { padding: 20px 20px; } } .footer-links-col h5 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; position: relative; padding-bottom: 12px; } .footer-links-col h5::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background-color: var(--primary-cream); } .footer-links { display: flex; flex-direction: column; gap: 6px; } .footer-links a { color: rgb(255 255 255 / 70%); text-decoration: none; font-size: 14px; transition: all 0.3s ease; display: flex; align-items: center; gap: 7px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; padding: 0; } .footer-links a::before { content: "\F285"; font-family: "bootstrap-icons"; font-size: 10px; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.1); border-radius: 50%; transition: all 0.3s ease; } .footer-links a:hover { color: var(--white); transform: translateX(5px); } .footer-links a:hover::before { background: rgba(255, 255, 255, 0.2); transform: scale(1.1); } .contact-list { display: flex; flex-direction: column; gap: 0px; margin-top: 40px; } .contact-list li { display: flex; align-items: center; gap: 5px; color: rgba(255, 255, 255, 0.7); } .contact-list i { width: 25px; height: 25px; display: flex; align-items: center; justify-content: center; border-radius: 5px; background: rgba(255, 255, 255, 0.1); color: var(--white); font-size: 16px; } .contact-list span { font-size: 15px; } .footer-policy { display: flex; gap: 30px; } .footer-policy a { color: rgba(255, 255, 255, 0.6); text-decoration: none; font-size: 14px; transition: all 0.3s ease; } .footer-policy a:hover { color: var(--white); } @media (max-width: 991px) { .footer-content { grid-template-columns: 1fr; gap: 40px; } .footer-branding { grid-column: 1 / -1; } } @media (max-width: 767px) { .footer-content { grid-template-columns: 1fr; gap: 30px; } .footer-branding { text-align: center; } .footer-branding .contact-list { align-items: center; } .footer-links-col { text-align: center; } .footer-links-col h5::after { left: 50%; transform: translateX(-50%); } } .page-header { background-color: var(--primary-color); padding: 120px 0; margin-bottom: 50px; position: relative; } .page-header::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url('/assets/img/pat.svg'); opacity: 0.8; z-index: 0; } .page-header-content { text-align: center; position: relative; z-index: 1; } .page-title { font-size: 42px; font-weight: 700; color: var(--white); margin-bottom: 15px; } .breadcrumb-container { display: flex; justify-content: center; margin-top: 10px; } .breadcrumb { display: flex; list-style: none; margin: 0; padding: 3px 7px; background-color: rgba(255, 255, 255, 0.1); border-radius: 50px; backdrop-filter: blur(10px); flex-wrap: wrap; max-width: 100%; } .breadcrumb-item { font-size: 13px; padding: 5px; color: rgba(255, 255, 255, 0.8); display: flex; align-items: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .breadcrumb-item + .breadcrumb-item::before { content: "\F285"; font-family: "bootstrap-icons"; padding-right:5px; color: rgba(255, 255, 255, 0.5); font-size: 10px; } .breadcrumb-item a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: all 0.3s ease; padding:0; border-radius: 20px; overflow: hidden; text-overflow: ellipsis; max-width: 150px; } .breadcrumb-item a:hover { color: var(--white); } .breadcrumb-item .category-text { color: rgba(255, 255, 255, 0.9); font-weight: 500; cursor: default; overflow: hidden; text-overflow: ellipsis; max-width: 150px; } .breadcrumb-item.active { color: var(--primary-cream); font-weight: 600; text-shadow: 1px 1px 1px rgba(0,0,0,.5); border-radius: 20px; overflow: hidden; text-overflow: ellipsis; max-width: 200px; } @media (max-width: 767px) { .breadcrumb-container { margin-top: 8px; padding: 0 10px; } .breadcrumb { padding: 2px 5px; font-size: 11px; max-width: 95%; justify-content: center; } .breadcrumb-item { font-size: 11px; padding: 3px 2px; max-width: 120px; } .breadcrumb-item a { max-width: 100px; font-size: 11px; } .breadcrumb-item .category-text { max-width: 100px; font-size: 11px; } .breadcrumb-item.active { max-width: 120px; font-size: 11px; } .breadcrumb-item + .breadcrumb-item::before { font-size: 8px; padding-right: 3px; } } .page-layout { display: grid; grid-template-columns: 2fr 0.85fr; gap: 30px; margin-bottom: 80px; } .page-content hr { border:0 !important; display: block !important; margin: 30px 0 !important; padding: 0 !important; width: 100% !important; height: 1px !important; background: linear-gradient(to right, transparent, rgba(184, 162, 115, 0.2), transparent) !important; } .content-area { background-color: var(--white); border-radius: 15px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); padding: 30px 40px 40px 40px; } .content-area blockquote { line-height: 1.8; color: var(--text-light); margin: 20px 0 20px 0; border-left: 4px solid var(--primary-cream); padding-left: 20px; font-style: italic; } .blog-lists.content-area { padding:5px; box-shadow: none; } .blog-lists.content-area img { border: none; box-shadow:none; margin: 5px 0; } .blog-lists.content-area h3 { font-size: 17px; margin:15px 0 5px; } .blog-lists.content-area p { font-size:14px } .content-area p a { color:var(--primary-cream); border-bottom:2px solid var(--primary-cream); font-weight: 700; } .content-area p a:hover { opacity:.7; } .sidebar { position: sticky; top: 120px; align-self: flex-start; } .content-area img { display: block; width: 100%; height: auto; box-sizing: border-box; padding: 13px; border: 1px solid #ededed; border-radius: 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); margin: 30px 0; } .content-area ul { list-style: none; padding: 0; margin: 20px 0; } .content-area ul:not(.toc-list) { list-style: none; padding: 0; margin: 20px 0; } .content-area ul:not(.toc-list) li a { color:var(--primary-cream); border-bottom:2px solid var(--primary-cream); font-weight: 700; } .content-area ol li a { color:var(--primary-cream); border-bottom:2px solid var(--primary-cream); font-weight: 700; } .content-area ul:not(.toc-list) li { position: relative; padding: 4px 0 4px 25px; margin: 5px 0; line-height: 1.6; color: var(--text-light); border-left: 2px solid var(--primary-cream); padding-left: 20px; margin-left: 10px; } .content-area ul:not(.toc-list) li::before { content: ""; position: absolute; left: -7px; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; background: var(--primary-cream); border-radius: 50%; border: 2px solid var(--white); } .content-area ol { counter-reset: custom-counter; list-style: none; padding: 0; } .content-area ol ol { counter-reset: nested-counter; list-style: none !important; padding-left: 20px; margin: 10px 0; } .content-area ol ol > li { counter-increment: nested-counter; position: relative; padding: 4px 0 4px 30px; margin: 3px 0; } .content-area ol ol > li::before { content: counter(nested-counter); position: absolute; left: 0; top: 6px; width: 18px; height: 18px; background: rgba(184, 162, 115, 0.8); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 11px; } .content-area ol > li { position: relative; padding: 5px 0 5px 40px; margin: 0; line-height: 1.6; color: var(--text-light); counter-increment: custom-counter; } .content-area ol > li::before { content: counter(custom-counter); position: absolute; left: 0; top: 8px; width: 23px; height: 23px; background: var(--primary-cream); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 13px; } .content-area ol li ul { list-style-type: disc !important; padding-left: 20px !important; margin: 10px 0 !important; border: none !important; } .content-area ol li ul li { padding: 4px 0 !important; margin: 3px 0 !important; border: none !important; margin-left: 0 !important; padding-left: 0 !important; } .content-area ol li ul li::before { display: none !important; } .content-area ul:not(.toc-list) li ol { counter-reset: ul-nested-counter !important; list-style: none !important; padding-left: 20px !important; margin: 10px 0 !important; border: none !important; } .content-area ul:not(.toc-list) li ol > li { counter-increment: ul-nested-counter !important; padding: 4px 0 4px 30px !important; margin: 3px 0 !important; border: none !important; margin-left: 0 !important; position: relative !important; } .content-area ul:not(.toc-list) li ol > li::before { content: counter(ul-nested-counter) !important; position: absolute !important; left: 0 !important; top: 6px !important; width: 18px !important; height: 18px !important; background: rgba(184, 162, 115, 0.8) !important; color: var(--white) !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; font-weight: 600 !important; font-size: 11px !important; } .content-area iframe { max-width: 100%; border: 1px solid rgba(184, 162, 115, 0.3); border-radius: 10px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); margin: 20px 0; background: var(--white); } @media (max-width: 767px) { .content-area ul:not(.toc-list) li { padding-left: 15px; margin-left: 5px; font-size: 15px; } .content-area ol > li { padding-left: 35px; font-size: 15px; } .content-area ol > li::before { width: 22px; height: 22px; font-size: 12px; } .content-area ol li ul li, .content-area ul:not(.toc-list) li ol > li, .content-area ol ol > li { font-size: 14px; } .content-area iframe { border-radius: 8px; margin: 15px 0; } } .content-area table { margin: 2rem 0; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); } .content-area table thead th { background: linear-gradient(135deg, var(--primary-cream), rgba(184, 162, 115, 0.9)); color: var(--white); border-bottom: none; } .content-area table tbody tr:nth-child(even) { background: rgba(184, 162, 115, 0.02); } .content-area table tbody tr:nth-child(even):hover { background: rgba(184, 162, 115, 0.08); } .content-area h2 { font-size: 32px; font-weight: 700; color: var(--primary-color); margin-bottom: 20px; } .content-area h3 { font-size: 22px; font-weight: 600; color: var(--dark-color); margin: 30px 0 15px; } .content-area h4 { font-size: 20px; font-weight: 600; color: var(--dark-color); margin: 30px 0 15px; } .content-area h5 { font-size: 20px; font-weight: 700; color: var(--dark-color); margin: 15px 0; } .content-area p { font-size: 16px; line-height: 1.7; color: #5a5a5a; margin-bottom: 10px; } .image-caption { font-size: 14px; color: var(--text-light); font-style: italic; text-align: center; margin-top: 10px; } .values-list { list-style: none; padding: 0; margin: 0 0 30px; } .values-list li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid rgba(0, 0, 0, 0.05); } .values-list li:last-child { border-bottom: none; } .values-list li::before { content: "\F26A"; font-family: "bootstrap-icons"; position: absolute; left: 0; top: 10px; color: var(--primary-cream); font-size: 18px; } .values-list li strong { font-weight: 600; color: var(--dark-color); } .stats-section { margin: 40px 0; background-color: var(--background-light); padding: 30px; border-radius: 15px; } .stats-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; } .stat-box { background-color: var(--white); padding: 20px; border-radius: 10px; text-align: center; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03); transition: transform 0.3s ease; } .stat-box:hover { transform: translateY(-5px); } .stat-number { font-size: 32px; font-weight: 700; color: var(--primary-cream); margin-bottom: 5px; } .stat-text { font-size: 14px; color: var(--text-light); } .team-section { margin: 40px 0; } .team-members { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 30px; } .team-member { background-color: var(--white); border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); transition: transform 0.3s ease; } .team-member:hover { transform: translateY(-10px); } .member-photo { width: 100%; height: 200px; overflow: hidden; } .member-photo img { width: 100%; height: 100%; object-fit: cover; } .member-name { font-size: 18px; font-weight: 600; margin: 15px 15px 5px; color: var(--dark-color); } .member-title { font-size: 14px; color: var(--primary-cream); margin: 0 15px 10px; } .member-bio { font-size: 14px; color: var(--text-light); margin: 0 15px 20px; line-height: 1.5; } .cta-section { background-color: var(--primary-color); color: var(--white); padding: 40px; border-radius: 15px; text-align: center; margin: 40px 0 0; } .cta-section h2 { color: var(--white); font-size: 28px; margin-bottom: 20px; } .cta-section p { color: rgba(255, 255, 255, 0.8); margin-bottom: 30px; font-size: 16px; } .btn-primary-large { display: inline-block; background-color: var(--primary-cream); color: var(--white); padding: 15px 30px; border-radius: 50px; font-weight: 600; font-size: 16px; text-decoration: none; transition: all 0.3s ease; } .btn-primary-large:hover { background-color: var(--white); color: var(--primary-color); transform: translateY(-5px); } .sidebar-box { background-color: var(--white); border-radius: 15px; padding: 25px; margin-bottom: 30px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); } .sidebar-title { font-size: 18px; font-weight: 600; color: var(--primary-color); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--background-light); position: relative; display: flex; align-items: center; gap: 8px; } .sidebar-title i { font-size: 16px; color: var(--primary-cream); opacity: 0.9; transition: all 0.3s ease; } .sidebar-box:hover .sidebar-title i { opacity: 1; transform: scale(1.1); } .blog-box:hover .sidebar-title i.bi-fire { color: #ff6b35; animation: flicker 0.8s ease-in-out; } @keyframes flicker { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } } .sidebar-title::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 50px; height: 2px; background-color: var(--primary-cream); } .sidebar-list { list-style: none; padding: 0; margin: 0; } .sidebar-list li { margin-bottom: 10px; border-bottom: 1px solid rgba(0, 0, 0, 0.05); padding-bottom: 10px; } .sidebar-list li:last-child { margin-bottom: 0; border-bottom: none; } .sidebar-list a { display: flex; align-items: center; color: var(--text-color); font-size: 15px; text-decoration: none; transition: all 0.3s ease; } .sidebar-list a:hover { color: var(--primary-cream); transform: translateX(5px); } .sidebar-list a i { margin-right: 10px; color: var(--primary-cream); font-size: 14px; } .sidebar-posts { display: flex; flex-direction: column; gap: 15px; } .sidebar-post { display: flex; gap: 15px; text-decoration: none; color: inherit; transition: all 0.3s ease; border-radius: 8px; padding: 8px; margin: 0; } .sidebar-post:hover { background-color: rgba(184, 162, 115, 0.05); color: inherit; text-decoration: none; transform: translateY(-1px); } .post-image { flex: 0 0 80px; } .post-image img { width: 100%; height: 60px; object-fit: cover; border-radius: 8px; } .post-content { flex: 1; } .post-content h4 { font-size: 14px; font-weight: 600; margin: 0 0 5px; line-height: 1.4; } .post-content h4 { color: var(--text-color); transition: all 0.3s ease; } .sidebar-post:hover .post-content h4 { color: var(--primary-cream); } .post-date { font-size: 12px; color: var(--text-light); } .contact-box { background-color: var(--primary-color); color: var(--white); } .contact-box .sidebar-title { color: var(--white); border-bottom-color: rgba(255, 255, 255, 0.1); } .contact-box .sidebar-title i { color: rgba(255, 255, 255, 0.9); } .contact-box .sidebar-title::after { background-color: var(--primary-cream); } .contact-box p { color: rgba(255, 255, 255, 0.8); font-size: 14px; margin-bottom: 20px; } .sidebar-form .form-group { margin-bottom: 15px; } .sidebar-form input { width: 100%; padding: 12px 15px; border-radius: 8px; border: none; background-color: rgba(255, 255, 255, 0.1); color: var(--white); font-size: 14px; } .sidebar-form input::placeholder { color: rgba(255, 255, 255, 0.6); } .sidebar-form input:focus { outline: none; background-color: rgba(255, 255, 255, 0.2); } .sidebar-form select { width: 100%; padding: 12px 15px; border-radius: 8px; border: none; background-color: rgba(255, 255, 255, 0.1); color: var(--white); font-size: 14px; } .sidebar-form select option { background-color: var(--primary-color); color: var(--white); } .sidebar-form select:focus { outline: none; background-color: rgba(255, 255, 255, 0.2); } .sidebar-form textarea { width: 100%; padding: 12px 15px; border-radius: 8px; border: none; background-color: rgba(255, 255, 255, 0.1); color: var(--white); font-size: 14px; resize: vertical; min-height: 80px; } .sidebar-form textarea::placeholder { color: rgba(255, 255, 255, 0.6); } .sidebar-form textarea:focus { outline: none; background-color: rgba(255, 255, 255, 0.2); } .btn-sidebar-submit { width: 100%; background-color: var(--primary-cream); color: var(--white); border: none; border-radius: 8px; padding: 12px; font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.3s ease; position: relative; } .btn-sidebar-submit:hover { background-color: var(--white); color: var(--primary-color); } .btn-sidebar-submit:disabled { opacity: 0.7; cursor: not-allowed; } .spin { animation: spin 1s linear infinite; } @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } .alert { padding: 15px; border-radius: 8px; margin-bottom: 15px; } .alert-success { background-color: rgba(40, 167, 69, 0.1); color: #28a745; border: 1px solid rgba(40, 167, 69, 0.2); } .quick-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; } .quick-contact-item { display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, 0.8); font-size: 14px; } .quick-contact-item i { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background-color: rgba(255, 255, 255, 0.1); border-radius: 50%; } .services-category { margin-bottom: 8px; } .services-category:last-child { margin-bottom: 0; } .services-category .category-title { font-size: 13px; color: var(--primary-cream); font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; } .services-category .category-title i { margin-right: 6px; font-size: 12px; } @media (max-width: 991px) { .page-layout { grid-template-columns: 1fr; gap: 30px; } .sidebar { position: static; margin-top: 0px; } .stats-container { grid-template-columns: repeat(2, 1fr); } .team-members { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 767px) { .page-title { font-size: 32px; } .content-area { padding: 30px 20px; } .team-members { grid-template-columns: 1fr; } .stats-container { grid-template-columns: 1fr; } } .about-highlight-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin: 40px 0; } .highlight-box { background-color: var(--white); border-radius: 15px; padding: 30px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; border-top: 4px solid var(--primary-cream); text-align: center; } .highlight-box:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); } .highlight-icon { width: 70px; height: 70px; margin: 0 auto 20px; background-color: rgba(184, 162, 115, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; } .highlight-icon i { font-size: 28px; color: var(--primary-cream); } .highlight-title { font-size: 20px; font-weight: 600; margin-bottom: 15px; color: var(--primary-color); } .highlight-text { font-size: 15px; line-height: 1.6; color: var(--text-light); } .about-content .main-image { margin: 30px 0; overflow: hidden; position: relative; } .about-content .main-image img {border-radius: 10px; border:1px solid #e2e2e2; padding:7px} .about-intro {line-height: 1.8;color: var(--text-light);margin: 10px 0 40px 0;border-left: 4px solid var(--primary-cream);padding-left: 20px;font-style: italic;} @media (max-width: 991px) { .about-highlight-boxes { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 767px) { .about-highlight-boxes { grid-template-columns: 1fr; } } .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin: 30px 0; } .team-member { background-color: #fff; border: 1px solid #eaeaea; border-radius: 12px; padding: 6px 15px 15px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; } .team-member:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); } .member-photo { width: 100%; height: 20px; margin: 0 auto 20px; border-radius: 15px; overflow: hidden; } .member-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; } .member-name { font-size: 20px; font-weight: 600; color: var(--primary-color); margin-bottom: 8px; } .member-title { display: block; padding: 6px 5px; background-color: rgba(29, 55, 84, 0.05); color: var(--primary-color); border-radius: 20px; font-size: 13px; font-weight: 500; margin-bottom: 15px; } .member-bio { font-size: 14px; line-height: 1.6; color: #666; margin-bottom: 20px; max-width: 100%; } .social-links { display: flex; gap: 12px; justify-content: center; margin-top: 20px; } .social-links a { width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; color: var(--primary-color); background-color: rgba(29, 55, 84, 0.05); border-radius: 8px; font-size: 16px; transition: all 0.3s ease; } .social-links a:hover { background-color: var(--primary-cream); color: #fff; transform: translateY(-2px); } @media (max-width: 991px) { .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } } @media (max-width: 767px) { .team-grid { grid-template-columns: 1fr; gap: 20px; } .member-photo { width: 140px; height: 175px; } .member-name { font-size: 18px; } .member-bio { font-size: 13px; } } .teams .page-layout { display: block; max-width: 1000px; margin: 0 auto; padding: 0 20px; } .teams .content-area { width: 100%; box-shadow: none; padding: 0; } .team-member-alt { display: flex; align-items: center; margin-bottom: 10px; gap: 40px; position: relative; padding-bottom: 10px; } .team-member-alt:nth-child(even) { flex-direction: row-reverse; } .team-member-alt:not(:last-child)::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 85%; height: 1px; background: linear-gradient(to right, transparent, rgba(184, 162, 115, 0.2), transparent); } .team-member-image { flex: 0 0 320px; position: relative; padding: 7px; max-width: 320px; } .team-member-image::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border: 1px solid rgba(184, 162, 115, 0.1); border-radius: 30px; z-index: 0; } .team-member-image img { width: 100%; margin:7px 0; height: 100%; object-fit: cover; border:0; padding: 3px 10px 0; border-radius: 30px; box-shadow: none; position: relative; z-index: 1; transition: all 0.3s ease; } .team-member-content { flex: 1; padding: 40px 20px; } .member-name-alt { font-size: 28px; color: var(--primary-color); margin-bottom: 8px; } .member-title-alt { display: inline-block; padding: 6px 16px; background-color: rgba(184, 162, 115, 0.1); color: var(--primary-cream); border-radius: 30px; font-size: 14px; font-weight: 500; margin-bottom: 16px; } .member-bio-alt { font-size: 15px; line-height: 1.7; color: var(--text-light); margin-bottom: 20px; } .member-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 20px; } .stat-item { text-align: center; padding: 12px; background-color: #f8f9fa; border-radius: 10px; } .stat-number { font-size: 22px; font-weight: 700; color: var(--primary-cream); margin-bottom: 4px; } .stat-label { font-size: 13px; color: var(--text-light); } .social-links-alt { display: flex; gap: 12px; } .social-links-alt a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background-color: #f8f9fa; border-radius: 50%; color: var(--primary-color); transition: all 0.3s ease; } .social-links-alt a i { font-size: 18px; } .social-links-alt a:hover { background-color: var(--primary-cream); color: white; transform: translateY(-3px); } .section-title-alt { text-align: center; margin-bottom: 60px; } .section-subtitle-alt { display: inline-block; padding: 8px 20px; background-color: rgba(184, 162, 115, 0.1); color: var(--primary-cream); border-radius: 30px; font-size: 14px; font-weight: 600; margin-bottom: 15px; } .section-heading-alt { font-size: 42px; color: var(--primary-color); margin-bottom: 20px; } .section-desc-alt { font-size: 16px; color: var(--text-light); max-width: 700px; margin: 0 auto; line-height: 1.8; } @media (max-width: 991px) { .team-member-alt { flex-direction: column !important; gap: 30px; } .team-member-image { flex: 0 0 100%; padding: 10px; } .team-member-image img { height: 400px; } .team-member-content { padding: 0; text-align: center; } .member-stats { grid-template-columns: repeat(3, 1fr); } .social-links-alt { justify-content: center; } } @media (max-width: 767px) { .member-stats { grid-template-columns: repeat(2, 1fr); } .section-heading-alt { font-size: 32px; } .team-member-image img { height: 400px; } } .callout { padding: .8rem; margin-top: 1.25rem; margin-bottom: 1.25rem; border: 1px solid #e9ecef; border-left-width: 0.25rem; border-radius: 0.4rem; background-color: #f3f4f7; } .callout h4 { margin-top: 0; margin-bottom: 0.5rem; font-weight: 600; color: #212631; } .callout p:last-child { margin-bottom: 0; } .callout code { border-radius: 0.25rem; } .callout + .callout { margin-top: -0.25rem; } .callout-no1 { border-left-color: var(--primary-cream); background-color: rgba(243, 244, 247, 0.01); } .callout-info { border-left-color: #39f; background-color: rgba(51, 153, 255, 0.01); } .callout-info h4 { color: #39f; } .callout-warning { border-left-color: #f9b115; background-color: rgba(255, 219, 143, 0.01); } .callout-warning h4 { color: #f9b115; } .callout-danger { border-left-color: #e55353; background-color: rgba(229, 83, 83, 0.01); } .callout-danger h4 { color: #e55353; } .callout-success { border-left-color: #1b9e3e; background-color: rgba(27, 158, 62, 0.01); } .callout-success h4 { color: #1b9e3e; } .callout-primary { border-left-color: #5856d6; background-color: rgba(88, 86, 214, 0.01); } .callout-primary h4 { color: #5856d6; } .callout-secondary { border-left-color: #6b7785; background-color: rgba(107, 119, 133, 0.01); } .callout-secondary h4 { color: #6b7785; } .dark-mode .callout { background-color: rgba(243, 244, 247, 0.01); border-color: rgba(233, 236, 239, 0.2); } .dark-mode .callout h4 { color: #f3f4f7; } .dark-mode .callout-info { background-color: rgba(51, 153, 255, 0.15); } .dark-mode .callout-warning { background-color: rgba(249, 177, 21, 0.15); } .dark-mode .callout-danger { background-color: rgba(229, 83, 83, 0.15); } .dark-mode .callout-success { background-color: rgba(27, 158, 62, 0.15); } .dark-mode .callout-primary { background-color: rgba(88, 86, 214, 0.15); } .dark-mode .callout-secondary { background-color: rgba(107, 119, 133, 0.15); } @media (max-width: 768px) { .callout { padding: 1rem; margin-top: 1rem; margin-bottom: 1rem; } .callout h4 { font-size: 1.1rem; } } .tox .tox-listboxfield .tox-listbox--select { border: 1px solid #ccc; border-radius: 6px; } .tox .tox-collection--list .tox-collection__item { padding: 8px 12px; border-bottom: 1px solid #f0f0f0; } .tox .tox-collection--list .tox-collection__item:hover { background-color: #f8f9fa; } .tox .tox-collection--list .tox-collection__item-label { font-weight: 500; color: #333; } .tox .tox-collection--list .tox-collection__item-meta { color: #666; font-size: 12px; font-style: italic; } .tox .tox-dialog__body .tox-form__group { margin-bottom: 16px; } .tox .tox-textfield { border: 1px solid #ddd; border-radius: 6px; padding: 8px 12px; } .tox .tox-textfield:focus { border-color: var(--primary-cream); box-shadow: 0 0 0 2px rgba(184, 162, 115, 0.2); } .search-box { background: var(--primary-color); color: var(--white); border: none; position: relative; overflow: hidden; } .search-box::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); animation: searchGlow 3s ease-in-out infinite; } @keyframes searchGlow { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.7; } } .search-box .sidebar-title { color: var(--white); border-bottom-color: rgba(255, 255, 255, 0.2); position: relative; z-index: 2; } .search-box .sidebar-title i { color: rgba(255, 255, 255, 0.9); } .search-box .sidebar-title::after { background-color: var(--primary-cream); } .search-form { position: relative; z-index: 2; } .search-input-group { display: flex; background-color: rgba(255, 255, 255, 0.15); border-radius: 12px; padding: 3px; margin-bottom: 12px; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); transition: all 0.3s ease; } .search-input-group:focus-within { background-color: rgba(255, 255, 255, 0.25); border-color: rgba(255, 255, 255, 0.4); box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); } .search-input { flex: 1; border: none; background: transparent; padding: 12px 16px 12px 35px; color: var(--white); font-size: 14px; border-radius: 9px; outline: none; font-weight: 500; } .search-input::placeholder { color: rgba(255, 255, 255, 0.7); font-weight: 400; } .search-btn { background: linear-gradient(135deg, #b8a273 0%, #a18953 100%); border: 1px solid #b8a273; color: var(--white); padding: 12px 16px; border-radius: 9px; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; min-width: 48px; } .search-btn:hover { background: linear-gradient(135deg, #a18953 0%, #8f7742 100%); border-color: #a18953; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(184, 162, 115, 0.3); } .search-btn i { font-size: 16px; } .search-suggestions { text-align: center; margin-top: 8px; } .search-suggestions small { color: rgba(255, 255, 255, 0.6) !important; font-size: 12px; font-style: italic; } @media (max-width: 767px) { .search-input-group { flex-direction: column; gap: 5px; } .search-btn { width: 100%; justify-content: center; } } .search-results-section { padding: 30px 0 80px; background-color: var(--white); } .search-results-header { margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid var(--background-light); } .results-info h2 { font-size: 28px; color: var(--primary-color); margin-bottom: 10px; } .results-count { font-size: 16px; color: var(--text-light); margin: 0; } .highlight-number { font-weight: 700; color: var(--primary-cream); } .search-results-list { display: flex; flex-direction: column; gap: 25px; } .search-result-item { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 20px; margin-bottom: 20px; transition: all 0.3s ease; } .search-result-item:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); } .result-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; } .result-category { background: #f5f5f5; padding: 4px 8px; border-radius: 4px; font-size: 12px; color: #666; } .result-date { font-size: 12px; color: #888; } .result-title { font-size: 18px; color: #333; margin: 0; line-height: 1.4; } .result-title a { color: var(--primary-color); text-decoration: none; transition: all 0.3s ease; font-weight: 600; } .result-title a:hover { color: var(--primary-cream); } .result-description { font-size: 15px; line-height: 1.6; color: var(--text-light); margin-bottom: 20px; } .result-footer { display: flex; justify-content: flex-end; } .result-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-cream); font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.3s ease; padding: 8px 16px; border-radius: 20px; background-color: rgba(184, 162, 115, 0.1); } .result-link:hover { background-color: var(--primary-cream); color: var(--white); transform: translateX(3px); } .result-link i { font-size: 12px; transition: transform 0.3s ease; } .result-link:hover i { transform: translateX(3px); } .search-highlight { background-color: #fff3cd; color: #664d03; padding: 2px 4px; border-radius: 4px; font-weight: 600; } .search-empty, .search-no-results { display: flex; justify-content: center; align-items: center; min-height: 400px; } .empty-state, .no-results-state { text-align: center; max-width: 500px; padding: 40px 20px; } .empty-state i, .no-results-state i { font-size: 80px; color: var(--text-light); margin-bottom: 25px; opacity: 0.7; } .empty-state h2, .no-results-state h2 { font-size: 28px; color: var(--primary-color); margin-bottom: 15px; } .empty-state p, .no-results-state p { font-size: 16px; color: var(--text-light); margin-bottom: 30px; line-height: 1.6; } .search-form-large { margin-top: 30px; } .search-input-wrapper { display: flex; background-color: var(--white); border-radius: 50px; border: 2px solid var(--primary-cream); overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; } .search-input-wrapper:focus-within { border-color: var(--primary-color); box-shadow: 0 5px 25px rgba(29, 55, 84, 0.15); } .search-input-wrapper input { flex: 1; border: none; padding: 16px 24px; font-size: 16px; background: transparent; outline: none; } .search-input-wrapper input::placeholder { color: var(--text-light); } .search-input-wrapper button { background-color: var(--primary-cream); color: var(--white); border: none; padding: 16px 32px; font-weight: 600; font-size: 16px; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; gap: 8px; } .search-input-wrapper button:hover { background-color: var(--primary-color); } .search-suggestions-box { background-color: var(--background-light); border-radius: 12px; padding: 20px; margin: 25px 0; text-align: left; } .search-suggestions-box h4 { font-size: 16px; color: var(--primary-color); margin-bottom: 15px; } .search-suggestions-box ul { list-style: none; padding: 0; margin: 0; } .search-suggestions-box li { padding: 5px 0; color: var(--text-light); font-size: 14px; position: relative; padding-left: 20px; } .search-suggestions-box li::before { position: absolute; left: 0; color: var(--primary-cream); font-weight: 700; } .popular-searches { margin-top: 25px; } .popular-searches h4 { font-size: 16px; color: var(--primary-color); margin-bottom: 15px; } .search-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; } .search-tag { display: inline-block; padding: 8px 16px; background-color: rgba(29, 55, 84, 0.1); color: var(--primary-color); border-radius: 20px; font-size: 13px; font-weight: 500; text-decoration: none; transition: all 0.3s ease; } .search-tag:hover { background-color: var(--primary-cream); color: var(--white); transform: translateY(-2px); } .search-pagination-info { margin-top: 40px; text-align: center; } .pagination-note { display: inline-flex; align-items: center; gap: 10px; background-color: rgba(184, 162, 115, 0.1); color: var(--primary-color); padding: 12px 20px; border-radius: 25px; font-size: 14px; font-weight: 500; } .pagination-note i { font-size: 16px; color: var(--primary-cream); } .search-error { margin: 40px 0; text-align: center; } .alert { display: inline-flex; align-items: center; gap: 12px; padding: 15px 25px; border-radius: 12px; font-weight: 500; } .alert-warning { background-color: #fff3cd; color: #664d03; border: 1px solid #ffecb5; } .alert i { font-size: 18px; } .page-intro { margin-bottom: 40px; text-align: center; } .page-intro .lead { font-size: 18px; line-height: 1.6; color: var(--text-light); max-width: 800px; margin: 0 auto; } .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 50px; } .service-card-simple { text-align: center; padding: 30px 20px; transition: all 0.3s ease; } .service-card-simple:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); } .service-card-simple .service-icon { margin: 0 auto 20px; } .service-card-simple h3 { font-size: 18px; margin: 0; color: var(--primary-color); font-weight: 600; } .additional-info { margin-top: 60px; padding-top: 40px; border-top: 2px solid var(--background-light); } .additional-info h2 { font-size: 28px; color: var(--primary-color); margin-bottom: 20px; text-align: center; } .info-boxes { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 30px; } .info-box { background-color: var(--background-light); padding: 5px 0 25px ; border-radius: 12px; text-align: center; transition: all 0.3s ease; } .info-box:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); } .info-box h4 { color: var(--primary-color); margin-bottom: 10px; font-size: 18px; display: flex; align-items: center; justify-content: center; gap: 8px; } .info-box h4 i { color: var(--primary-cream); font-size: 20px; } .info-box p { color: var(--text-light); margin: 0; font-size: 14px; } @media (max-width: 991px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } .info-boxes { grid-template-columns: 1fr; gap: 20px; } } .search-results-header { margin-bottom: 25px; } .results-info h2 { font-size: 24px; } .search-result-item { padding: 20px; } .result-title { font-size: 20px; } .result-header { flex-direction: column; align-items: flex-start; gap: 8px; } @media (max-width: 767px) { .services-grid { grid-template-columns: 1fr; gap: 15px; } .service-card-simple { padding: 25px 15px; } .service-card-simple h3 { font-size: 16px; } .search-input-wrapper { flex-direction: column; } .search-input-wrapper button { border-radius: 0 0 50px 50px; } .search-tags { justify-content: flex-start; } .empty-state, .no-results-state { padding: 30px 15px; } .empty-state i, .no-results-state i { font-size: 60px; } .empty-state h2, .no-results-state h2 { font-size: 24px; } } .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 40px; margin-right: 0; } .blog-card-link { text-decoration: none; color: inherit; display: block; } .blog-card-modern { transition: transform 0.3s ease, box-shadow 0.3s ease; border-radius: 15px; overflow: hidden; background: white; box-shadow: 0 5px 20px rgba(0,0,0,0.08); height: 100%; } .blog-card-link:hover .blog-card-modern { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.15); } .blog-card-container { height: 100%; display: flex; flex-direction: column; } .blog-image-container { position: relative; overflow: hidden; } .blog-image-container img{ padding:0; margin:0; border-top-left-radius: 10px; border-top-right-radius: 10px; border: 2px solid #000; border-bottom-left-radius: 0; transition: transform 0.3s ease; border-bottom-right-radius: 0; } .blog-card-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; } .blog-card-link:hover .blog-card-image { transform: scale(1.05); } .blog-card-content { padding: 0px 20px 15px 20px; display: flex; flex-direction: column; } .blog-card-title { font-size: 18px; font-weight: 700; line-height: 1.4; margin-bottom: 15px; color: #1a1f37; } .blog-card-excerpt { color: #64748b; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; } .blog-card-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid #e2e8f0; } .meta-item { display: flex; align-items: center; gap: 6px; color: #64748b; font-size: 13px; } .meta-item i { font-size: 14px; } .category-list .category-link { display: flex; align-items: center; } .category-count { background: #b8a273 !important; color: white !important; border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; margin-left: auto; } .category-link.active .category-count { background: white; color: var(--primary-cream); } @media (max-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; margin-right: 0; } } @media (max-width: 480px) { .blog-grid { grid-template-columns: 1fr; } } .blog-article { padding: 0px; } .blog-meta { border-bottom: 1px solid #f1f1f1; padding-bottom: 0px; margin-bottom: 12px; } .blog-meta-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; } .meta-left { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; } .meta-right { margin-left: auto; } .blog-meta .meta-item { display: inline-flex; align-items: center; gap: 6px; color: #64748b; font-size: 13px; font-weight: 500; text-decoration: none; } .category-link { color: var(--primary-cream); text-decoration: none; font-weight: 600; transition: color 0.3s ease; } .category-link:hover { color: var(--secondary-green); text-decoration: underline; } .views-count { background: rgba(184, 162, 115, 0.1); padding: 4px 10px; border-radius: 20px; margin-bottom: 8px; border: 1px solid rgba(184, 162, 115, 0.2); transition: all 0.3s ease; } .views-count:hover { background: rgba(184, 162, 115, 0.15); transform: translateY(-1px); } .blog-meta .meta-item i { font-size: 13px; color: var(--primary-cream); } .blog-featured-image img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); margin: 7px 0 20px } .blog-content { font-size: 16px; line-height: 1.7; color: #374151; } .blog-content p { margin-bottom: 20px; } .blog-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 20px 0; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } .related-posts { border-radius: 15px; padding: 15px; } .related-post-card { background: white; border-radius: 12px; padding: 15px; transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; display: block; } .related-post-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); } .related-post-card a { color: inherit; text-decoration: none; } .related-post-card h4 { color: #1f2937; font-weight: 600; margin-bottom: 8px; } .related-post-card:hover h4 { color: var(--primary-cream); } @media (max-width: 768px) { .blog-article { border-radius: 12px; } .blog-meta-container { flex-direction: row; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; } .meta-left { flex-direction: row; align-items: center; gap: 8px; flex: 1; min-width: 0; } .meta-right { margin-left: 0; flex-shrink: 0; } .blog-meta .meta-item { font-size: 12px; white-space: nowrap; } .blog-meta .meta-item i { font-size: 11px; } .views-count { padding: 4px 8px; font-size: 11px; border-radius: 15px; } .blog-content { font-size: 15px; } .blog-content h2 { font-size: 24px; } .blog-content h3 { font-size: 20px; } .related-posts { padding: 20px; } } .categories-modern-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 40px; } .category-modern-link { text-decoration: none; color: inherit; display: block; } .category-modern-card { background: var(--white); border-radius: 15px; border: 1px solid rgba(0, 0, 0, 0.05); transition: all 0.3s ease; height: 100%; position: relative; overflow: hidden; } .category-modern-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, var(--primary-color), var(--primary-cream)); opacity: 0; transition: opacity 0.3s ease; z-index: 0; } .category-modern-link:hover .category-modern-card { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); border-color: var(--primary-cream); } .category-modern-link:hover .category-modern-card::before { opacity: 0.03; } .category-card-inner { padding: 30px 25px; position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; } .category-count-badge { position: absolute; top: 20px; right: 20px; width: 45px; height: 45px; background: linear-gradient(135deg, var(--primary-cream), rgba(184, 162, 115, 0.9)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; box-shadow: 0 4px 15px rgba(184, 162, 115, 0.3); transition: all 0.3s ease; } .category-modern-link:hover .category-count-badge { transform: scale(1.1); box-shadow: 0 6px 20px rgba(184, 162, 115, 0.4); } .category-content { padding-right: 30px; flex-grow: 1; display: flex; flex-direction: column; } .category-title { font-size: 22px; font-weight: 700; color: var(--primary-color); margin-bottom: 15px; line-height: 1.3; } .category-description { color: var(--text-light); font-size: 15px; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; } .category-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 15px; border-top: 1px solid rgba(0, 0, 0, 0.05); } .post-count-text { color: var(--text-light); font-size: 14px; font-weight: 500; } .category-arrow { width: 35px; height: 35px; background-color: rgba(184, 162, 115, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; } .category-arrow i { color: var(--primary-cream); font-size: 16px; transition: transform 0.3s ease; } .category-modern-link:hover .category-arrow { background-color: var(--primary-cream); transform: scale(1.1); } .category-modern-link:hover .category-arrow i { color: var(--white); transform: translateX(3px); } .category-modern-link:hover .category-title { color: var(--primary-cream); } .bg-primary-cream { background-color: var(--primary-cream) !important; } @media (max-width: 768px) { .categories-modern-grid { grid-template-columns: 1fr; gap: 15px; } .category-card-inner { padding: 25px 20px; } .category-content { padding-right: 20px; } .category-title { font-size: 20px; } .category-count-badge { width: 40px; height: 40px; font-size: 14px; top: 15px; right: 15px; } } .load-more-container { margin: 30px 0; } .load-more-btn { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--primary-cream), rgba(184, 162, 115, 0.9)); color: var(--white); padding: 12px 24px; border-radius: 25px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; border: none; box-shadow: 0 4px 15px rgba(184, 162, 115, 0.3); position: relative; overflow: hidden; } .load-more-btn::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 ease; } .load-more-btn:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184, 162, 115, 0.4); } .load-more-btn:hover::before { left: 100%; } .load-more-btn i { font-size: 18px; transition: transform 0.3s ease; } .load-more-btn:hover i { transform: scale(1.1); } .load-more-btn.loading { pointer-events: none; opacity: 0.8; } .load-more-btn.loading i { animation: spin 1s linear infinite; } @keyframes loadingPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } } .load-more-btn.loading { animation: loadingPulse 1.5s ease-in-out infinite; } @media (max-width: 768px) { .load-more-btn { padding: 10px 20px; font-size: 14px; } .load-more-btn i { font-size: 16px; } } .error-404-minimal { padding: 80px 0; background-color: rgba(184, 162, 115, 0.05); min-height: 70vh; } .error-content-wrapper { max-width: 800px; margin: 0 auto; text-align: center; } .error-main { margin-bottom: 60px; } .error-number { font-size: 120px; font-weight: 900; color: var(--primary-cream); line-height: 1; margin-bottom: 20px; } .error-title { font-size: 36px; font-weight: 700; color: var(--primary-color); margin-bottom: 20px; } .error-description { font-size: 18px; color: var(--text-light); margin-bottom: 40px; line-height: 1.6; } .error-actions { margin-bottom: 40px; display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; } .btn-home, .btn-back { padding: 12px 30px; border-radius: 8px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s ease; font-size: 16px; } .btn-home { background-color: var(--primary-color); color: var(--white); } .btn-home:hover { background-color: var(--primary-cream); color: var(--white); } .btn-back { background-color: var(--white); color: var(--primary-color); border: 2px solid var(--primary-color); } .btn-back:hover { background-color: var(--primary-color); color: var(--white); } .error-search { margin-bottom: 60px; } .error-search form { display: flex; max-width: 400px; margin: 0 auto; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } .error-404-minimal .search-input { flex: 1; padding: 14px 20px; border: none; font-size: 16px; outline: none; background-color: var(--white); color: var(--text-color); } .search-input::placeholder { color: var(--text-light); } .search-button { padding: 14px 25px; background-color: var(--primary-cream); color: var(--white); border: none; font-weight: 600; cursor: pointer; transition: all 0.3s ease; } .search-button:hover { background-color: var(--primary-color); } .error-links { text-align: left; max-width: 500px; margin: 0 auto; } .error-links h3 { font-size: 20px; color: var(--primary-color); margin-bottom: 20px; text-align: center; } .helpful-links { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; } .helpful-links li { margin-bottom: 8px; } .helpful-links a { display: block; padding: 10px 15px; color: var(--text-color); text-decoration: none; border-radius: 6px; transition: all 0.3s ease; border: 1px solid rgba(0, 0, 0, 0.1); } .helpful-links a:hover { background-color: var(--primary-cream); color: var(--white); border-color: var(--primary-cream); } @media (max-width: 768px) { .error-404-minimal { padding: 60px 0; } .error-number { font-size: 80px; } .error-title { font-size: 28px; } .error-description { font-size: 16px; } .error-actions { flex-direction: column; align-items: center; } .btn-home, .btn-back { width: 100%; max-width: 250px; } .error-search form { flex-direction: column; } .search-button { border-radius: 0 0 8px 8px; } .helpful-links { grid-template-columns: 1fr; } } .contact-section { padding: 4rem 0; background: #fff; } .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; } .contact-form-column { padding: 2rem; background: #fff; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .contact-form-wrapper h2 { color: var(--primary-color); font-size: 2rem; margin-bottom: 1rem; } .form-intro { color: var(--text-color); margin-bottom: 2rem; line-height: 1.6; } .modern-form .form-group { margin-bottom: 1rem; } .modern-form input, .modern-form select, .modern-form textarea { width: 100%; padding: 1rem; border: 1px solid #e2e2e2; border-radius: 8px; font-size: 1rem; transition: all 0.3s ease; } .modern-form input:focus, .modern-form select:focus, .modern-form textarea:focus { border-color: var(--primary-color); box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1); outline: none; } .form-submit-btn { width: 100%; padding: 1rem; background: var(--primary-color); color: #fff; border: none; border-radius: 8px; font-size: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; cursor: pointer; transition: all 0.3s ease; } .form-submit-btn:hover { background: var(--primary-cream) } .contact-info-column { display: flex; flex-direction: column; gap: 1.5rem; } .office-card { background: #fff; padding: 1.25rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; height: 100%; } .office-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); } .office-card h3 { color: var(--primary-color); font-size: 1.1rem; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; } .office-card address { font-style: normal; line-height: 1.5; color: var(--text-color); font-size: 0.95rem; } .contact-info { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; color: var(--primary-color); text-decoration: none; transition: color 0.3s ease; font-size: 0.95rem; } .contact-info:hover { color: var(--primary-dark); } .main-office { border-left: 4px solid var(--primary-color); grid-column: 1 / -1; } .other-offices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; } .social-media-box { background: #fff; padding: 1.5rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .social-media-box h3 { color: var(--primary-color); font-size: 1.25rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; } .social-links { display: flex; gap: 1rem; } .social-links a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: #f8f9fa; color: var(--primary-color); border-radius: 50%; transition: all 0.3s ease; } .social-links a:hover { background: var(--primary-color); color: #fff; transform: translateY(-3px); } .map-section { padding: 4rem 0; background: #f8f9fa; } .map-wrapper { border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } @media (max-width: 991px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } .contact-form-column, .contact-info-column { padding: 1.5rem; } .other-offices { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .contact-section { padding: 2rem 0; } .contact-form-wrapper h2 { font-size: 1.75rem; } .other-offices { grid-template-columns: 1fr; } .social-links { flex-wrap: wrap; } } @keyframes spin { to { transform: rotate(360deg); } } .spin { animation: spin 1s linear infinite; } .contact-section { padding: 2rem 0; background: #fff; } .section-header { margin-bottom: 3rem; } .section-subtitle { color: var(--primary-color); font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 2px; } .section-title { font-size: 2.5rem; color: var(--heading-color); margin-bottom: 1rem; } .section-description { color: var(--text-color); font-size: 16px; max-width: 800px; margin: 0 auto; line-height: 1.8; } .main-office-card { background: #fff; padding: 2rem; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; } .main-office-card h3 { color: var(--primary-color); font-size: 1.4rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; } .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; } .contact-form-column { background: #fff; padding: 2.5rem; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); } .contact-form-wrapper h3 { color: var(--heading-color); font-size: 1.8rem; margin-bottom: 1rem; } .form-intro { color: var(--text-color); margin-bottom: 2rem; line-height: 1.6; } .office-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 2rem; } .office-card { background: #fff; padding: 1.5rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; } .office-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); } .office-card h3 { color: var(--primary-color); font-size: 1.1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; } .office-card address { font-style: normal; line-height: 1.6; color: var(--text-color); font-size: 0.95rem; } .contact-info { display: flex; align-items: center; gap: 0.5rem; margin-top: 1rem; color: var(--primary-color); text-decoration: none; transition: color 0.3s ease; font-size: 0.95rem; } .contact-info:hover { color: var(--primary-dark); } .social-media-box { background: #fff; padding: 2rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .social-media-box h3 { color: var(--heading-color); font-size: 1.3rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; } .social-links { display: flex; gap: 1rem; flex-wrap: wrap; } .social-links a { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; background: #f8f9fa; color: var(--primary-color); border-radius: 50%; transition: all 0.3s ease; font-size: 1.2rem; } .social-links a:hover { background: var(--primary-color); color: #fff; transform: translateY(-3px); } .map-section { padding: 4rem 0; background: #f8f9fa; } .map-wrapper { border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid #ccc; padding: 10px; } .map-wrapper iframe { display: block; } @media (max-width: 1200px) { .section-title { font-size: 2.2rem; } } @media (max-width: 991px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } .office-cards { grid-template-columns: repeat(2, 1fr); } .section-title { font-size: 2rem; } } @media (max-width: 768px) { .contact-section { padding: 3rem 0; } .section-title { font-size: 1.8rem; } .office-cards { grid-template-columns: 1fr; } .contact-form-column, .social-media-box { padding: 1.5rem; } .main-office-card { padding: 1.5rem; margin-bottom: 2rem; } } @media (max-width: 576px) { .section-subtitle { font-size: 1rem; } .section-title { font-size: 1.6rem; } .contact-form-wrapper h3 { font-size: 1.5rem; } } .mobile-menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; padding: 5px; color: var(--primary-color); } @media (max-width: 991px) { .mobile-menu-toggle { display: block; } .main-nav { position: fixed; top: 0; right: -300px; width: 300px; height: 100vh; background: var(--white); padding: 20px; z-index: 1000; transition: right 0.3s ease; box-shadow: -5px 0 15px rgba(0,0,0,0.1); overflow-y: auto; } .main-nav.active { right: 0; } .nav-list { flex-direction: column; margin-top: 20px; } .nav-item { margin: 0; width: 100%; border-bottom: 1px solid rgba(0, 0, 0, 0.1); } .nav-link { padding: 15px 0; font-size: 16px; width: 100%; display: flex; justify-content: space-between; align-items: center; } .dropdown-menu { position: static; box-shadow: none; padding: 0 0 10px 20px; display: none; opacity: 1; visibility: visible; transform: none; transition: none; width: 100%; background: transparent; } .dropdown-menu.show { display: block; } .nav-item.dropdown.wide-menu .dropdown-menu { padding: 0; margin: 0; } .nav-item.dropdown.wide-menu .dropdown-menu > div { padding: 0 0 10px 20px; border: none; } .menu-category { margin: 15px 0 5px 0; color: var(--primary-cream); font-weight: 600; } .mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 999; display: none; opacity: 0; transition: opacity 0.3s ease; } .mobile-menu-overlay.active { display: block; opacity: 1; } } .nav-link { position: relative; } .nav-link::after { content: ''; position: absolute; bottom: -2px; left: 50%; width: 0; height: 2px; background: var(--primary-color); transition: all 0.3s ease; transform: translateX(-50%); } .nav-link.active::after { width: 100%; } .menu-toggle { display: none; background: none; border: 1px solid var(--primary-cream); padding: 20px 27px 20px 15px; cursor: pointer; border-radius: 4px; transition: all 0.3s ease; } .menu-toggle:hover { background: rgba(184, 162, 115, 0.1); } .hamburger { display: block; position: relative; width: 20px; height: 2px; background: var(--primary-cream); transition: all 0.3s ease; } .hamburger::before, .hamburger::after { content: ''; position: absolute; width: 20px; height: 2px; background: var(--primary-cream); transition: all 0.3s ease; } .hamburger::before { top: -6px; } .hamburger::after { bottom: -6px; } .menu-toggle.active { background: var(--primary-cream); } .menu-toggle.active .hamburger { background: transparent; } .menu-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; background: var(--white); } .menu-toggle.active .hamburger::after { transform: rotate(-45deg); bottom: 0; background: var(--white); } @media (max-width: 991px) { .menu-toggle { display: block; z-index: 1001; } .menu-container { position: fixed; top: 0; right: -300px; width: 300px; height: 100vh; background: var(--white); margin: 0; padding: 60px 20px 20px; box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; overflow-y: auto; z-index: 1000; } .menu-container.active { right: 0; } .menu { flex-direction: column; padding-top:40px; } .menu-item { margin: 0; border-bottom: 1px solid #f3f3f3; } .menu-link { padding: 15px 0; } .submenu, .mega-menu { position: static; box-shadow: none; padding: 0; margin: 0; visibility: visible; opacity: 1; transform: none; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; display: block; } .mega-menu { min-width: auto; } .mega-menu-column { padding: 0; } .menu-category { padding: 10px 0; color: var(--primary-cream); font-size: 13px; margin: 5px 0; } .mega-menu a, .submenu a { padding: 8px 15px; } .menu-item.open .submenu, .menu-item.open .mega-menu { max-height: 1000px; } .nav-right { display: none; } body.menu-open { overflow: hidden; } body.menu-open::after { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 999; } } @media (max-width: 991px) { .menu-item { position: relative; width: 100%; } .dropdown-toggle::after, .menu-link::after, .has-submenu > a::after, .has-mega > a::after { display: none !important; } .menu-item.has-submenu > .menu-link, .menu-item.has-mega > .menu-link { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; width: 100%; } .menu-item.has-submenu > .menu-link::before, .menu-item.has-mega > .menu-link::before { font-family: 'bootstrap-icons'; font-size: 16px; color: var(--primary-cream); transition: transform 0.3s ease; margin-left: 10px; line-height: 1; } .menu-item.has-submenu.open > .menu-link::before, .menu-item.has-mega.open > .menu-link::before { transform: rotate(180deg); } .submenu, .mega-menu { position: relative !important; left: 0 !important; top: 0 !important; width: 100% !important; margin: 0; opacity: 0; visibility: hidden; max-height: 0; overflow: hidden; transition: all 0.3s ease; transform: none !important; box-shadow: none; border-left: 2px solid var(--primary-cream); } .menu-item.open > .submenu, .menu-item.open > .mega-menu { opacity: 1; visibility: visible; max-height: 1000px; margin: 5px 0; border: none; } .mega-menu-column { padding: 5px 0; } .mega-menu-column:not(:last-child) { border-bottom: 1px solid rgba(0, 0, 0, 0.05); margin-bottom: 8px; } .menu-category { color: var(--primary-cream); font-size: 14px; font-weight: 600; margin-bottom: 8px; padding-left: 5px; } .mega-menu a, .submenu a { padding: 8px 5px; display: block; color: var(--primary-color); } .menu-item { position: relative; width: 100%; padding: 0 10px; } .menu-item.has-submenu > .menu-link, .menu-item.has-mega > .menu-link { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; width: 100%; } .menu-link { width: 100%; color: var(--primary-color); padding: 12px 0; } } .faq-section { padding: 10px 0 70px; } .faq-section .section-header { text-align: center; margin-bottom: 50px; } .accordion-container { max-width: 1000px; margin: 0 auto; } .accordion-item { background: var(--white); border-radius: var(--border-radius); box-shadow: var(--box-shadow); margin-bottom: 12px; margin-right: 10px; overflow: hidden; transition: var(--transition); } .accordion-item:hover { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12); } .accordion-header { display: flex; align-items: center; padding: 13px; cursor: pointer; background: var(--white); border: none; width: 100%; text-align: left; position: relative; transition: var(--transition); } .accordion-header:hover { background-color: var(--softgray-light); } .accordion-header[aria-expanded="true"] { background-color: var(--primary-cream); color: var(--white); } .accordion-header[aria-expanded="true"] .accordion-question { color: var(--white); } .accordion-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary-cream), rgba(184, 162, 115, 0.8)); border-radius: 50%; margin-right: 20px; transition: var(--transition); flex-shrink: 0; } .accordion-icon i { font-size: 20px; color: var(--white); transition: var(--transition); } .accordion-header[aria-expanded="true"] .accordion-icon { background: var(--white); transform: rotate(180deg); } .accordion-header[aria-expanded="true"] .accordion-icon i { color: var(--primary-cream); } .accordion-question { font-size: 15px; font-weight: 600; color: var(--dark-color); margin: 0; line-height: 1.4; transition: var(--transition); } .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out; background: var(--white); } .accordion-content.active { max-height: 500px; padding: 7px 25px 15px 25px; } .accordion-body { padding-top: 10px; } .accordion-body p { color: var(--text-light); line-height: 1.7; margin: 0; font-size: 16px; } @media (max-width: 768px) { .faq-section { padding: 40px 0; } .accordion-header { padding: 15px 20px; } .accordion-icon { width: 35px; height: 35px; margin-right: 15px; } .accordion-icon i { font-size: 18px; } .accordion-question { font-size: 16px; } .accordion-content.active { padding: 0 20px 20px 70px; } .accordion-body p { font-size: 15px; } } @media (max-width: 480px) { .accordion-header { padding: 10px 12px; } .accordion-icon { width: 30px; height: 30px; margin-right: 12px; } .accordion-icon i { font-size: 16px; } .accordion-question { font-size: 15px; } .accordion-content.active { padding: 0 15px 15px 57px; } .accordion-body p { font-size: 14px; } } .accordion-container.accordion-simple .accordion-item { border: 1px solid var(--softgray-dark); box-shadow: none; border-radius: 8px; } .accordion-container.accordion-simple .accordion-header { background: var(--softgray-light); } .accordion-container.accordion-simple .accordion-header:hover { background: var(--softgray-medium); } .accordion-container.accordion-dark .accordion-item { background: var(--dark-color); } .accordion-container.accordion-dark .accordion-header { background: var(--dark-color); } .accordion-container.accordion-dark .accordion-question { color: var(--white); } .accordion-container.accordion-dark .accordion-body p { color: rgba(255, 255, 255, 0.8); } .accordion-container.accordion-dark .accordion-content { background: var(--dark-color); } .related-post-card-simple { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid rgb(248 240 223); transition: all 0.3s ease; height: 100%; display: block; margin:5px; } .related-post-card-simple img{ border: none !important; margin:0; } .related-post-card-simple:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); border-color: var(--primary-cream); } .related-post-card-simple .related-post-image { overflow: hidden; height: 120px; } .related-post-card-simple .related-post-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; } .related-post-card-simple:hover .related-post-image img { transform: scale(1.05); } .related-post-card-simple .related-post-content { padding: 1px 15px 6px; } .related-post-card-simple .related-post-title { font-size: 16px; font-weight: 600; color: var(--dark-color); margin: 0 0 8px 0; line-height: 1.3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; } .related-post-card-simple:hover .related-post-title { color: var(--primary-cream); } .related-post-card-simple .related-post-excerpt { font-size: 14px; color: var(--text-light); margin: 0 0 12px 0; line-height: 1.5; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; } .related-post-card-simple .related-post-meta { font-size: 13px; color: var(--text-light); display: flex; align-items: center; } .related-post-card-simple .related-post-meta i { color: var(--primary-cream); font-size: 12px; padding-right: 3px; } .related-post-card-simple .related-post-meta i:last-child { margin-left:10px; } @media (max-width: 768px) { .related-post-card-simple .related-post-image { height: 100px; } .related-post-card-simple .related-post-content { padding: 12px; } .related-post-card-simple .related-post-title { font-size: 15px; } .related-post-card-simple .related-post-excerpt { font-size: 13px; } } .team-grid-compact { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; } .team-member-compact { background: var(--white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--box-shadow); transition: var(--transition); } .team-member-compact:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12); } .team-member-compact .member-photo { height: 270px; overflow: hidden; position: relative; } .team-member-compact .member-photo img { width: 100%; padding: 2px; height: 100%; object-fit: cover; object-position: top; border: none; margin:7px 0; box-shadow: none; } .team-member-compact .member-info { padding: 0px 5px 1px 5px; text-align: center; } .team-member-compact .member-name { font-size: 18px; font-weight: 700; margin-bottom: 5px; color: var(--dark-color); } .team-member-compact .member-title { color: var(--primary-cream); font-weight: 600; font-size: 13px; margin-bottom: 15px; letter-spacing: 0.5px; } .team-member-compact .social-links { display: flex; justify-content: center; gap: 8px; } .team-member-compact .social-links a { width: 35px; height: 35px; background: var(--primary-cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); font-size: 14px; } .team-member-compact .social-links a:hover { background: var(--primary-color); transform: translateY(-2px); } @media (max-width: 991px) { .team-grid-compact { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; } .team-member-compact .member-photo { height: 200px; } .team-member-compact .member-info { padding: 15px 12px 12px 12px; } .team-member-compact .member-name { font-size: 16px; } .team-member-compact .member-title { font-size: 12px; margin-bottom: 12px; } } @media (max-width: 767px) { .team-grid-compact { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; } .team-member-compact .member-photo { height: 180px; } .team-member-compact .member-info { padding: 12px 10px 10px 10px; } .team-member-compact .social-links a { width: 30px; height: 30px; font-size: 12px; } .page-header { padding:50px 0; margin-bottom: 20px; } .page-title { font-size: 28px; } .breadcrumb-item { font-size: 12px; padding: 3px; } .content-area { padding: 0 10px 10px 15px; } .jmm-5 { margin: 5px 0 !important } .content-area p { font-size: 14px; margin-bottom: 13px; } .content-area img { margin: 18px 0; padding: 13px; } .content-area h2 { font-size: 24px; margin-bottom: 7px; } .container { padding: 0 10px; } .content-area h3 { font-size: 22px; margin: 7px 0; } .content-area h3 { font-size: 20px; margin: 7px 0; } .content-area ul:not(.toc-list) { margin: 10px 0; } .accordion-item { margin-bottom: 7px; } .btn-to-top { margin-top: 15px; font-size: 13px; border: 1px solid #b8a273; padding: 7px 17px; } .btn-to-top { border: 1px solid #b8a273 !important; padding: 7px 12px !important; margin-top: 15px !important; font-size: 13px !important; } .page-content hr { margin: 20px 0 !important; } .sidebar-box { margin-bottom: 15px; } .page-layout { margin-bottom: 20px; } .footer-links { gap: 1px; } .hero-wrapper { padding: 20px 10px 0 10px; margin: 10px 0; } .header { padding: 15px 0 5px 0; } .hero-title { font-size: 32px; } .hero-text { font-size: 16px; } .features-banner { margin: 10px 0 0px; } .section-subtitle { font-size: 0.6rem; } .section-title { font-size: 1.3rem; } .feature-box { padding: 17px 20px 0; } .feature-image, .feature-box { min-height: 230px; } .service-card { padding: 15px; text-align: center; } .service-icon { margin:0 auto 10px; } .section-header h2 { font-size:23px; } .service-grid { margin:10px 0 } .section-header { margin-bottom:1.2rem } .faq-section .section-header { margin-bottom: 15px; } .section-description { font-size: 15px; padding-bottom: 10px; } .faq-section { padding: 10px; } .contact-lead-section { padding: 20px 0 25px; } .form-row { display: flex; gap: 0; margin-bottom: 0px; margin-top: 0; } .contact-lead-title { margin-bottom: 10px; } .contact-lead-text { margin-bottom: 20px; font-size: 15px; } .contact-lead-title { font-size:24px; } .footer-links-col { margin:0; } } @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); } 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); } } .voice-search-btn.listening i, .voice-search-btn-large.listening i, .voice-search-btn-404.listening i { animation: microphone-wave 0.8s ease-in-out infinite alternate; } @keyframes microphone-wave { 0% { transform: scale(1); } 100% { transform: scale(1.2); } } .voice-search-message { position: fixed; top: 20px; right: 20px; background: var(--white); border: 1px solid var(--primary-cream); border-radius: 8px; padding: 12px 16px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); z-index: 9999; min-width: 250px; opacity: 0; transform: translateX(100%); transition: all 0.3s ease; } .voice-search-message.show { opacity: 1; transform: translateX(0); } .voice-search-message.success { border-color: #10b981; background-color: #f0fdf4; } .voice-search-message.error { border-color: #ef4444; background-color: #fef2f2; } .voice-search-message.listening { border-color: #3b82f6; background-color: #eff6ff; } @media (max-width: 768px) { .voice-search-btn { right: 1110px; width: 28px; height: 28px; font-size: 14px; left: 5px; margin-right: 20px; top: 23px; } .voice-search-btn-large { padding: 10px 12px; font-size: 16px; margin-right: 6px; } .voice-search-btn-404 { padding: 8px 10px; font-size: 14px; margin-right: 6px; } .voice-search-message { top: 10px; right: 10px; left: 10px; min-width: auto; } .blog-lists.content-area h3 { margin:0 } .footer { padding: 10px 0 40px; } } .table-container { background: var(--white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--box-shadow); margin: 2rem 0; border: 1px solid rgba(184, 162, 115, 0.1); } .table-header { background: linear-gradient(135deg, var(--primary-cream), rgba(184, 162, 115, 0.9)); padding: 1.5rem; color: var(--white); position: relative; overflow: hidden; } .table-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0.3; } .table-title { font-size: 1.25rem; font-weight: 600; margin: 0; position: relative; z-index: 1; } .table-subtitle { font-size: 0.9rem; opacity: 0.9; margin: 0.5rem 0 0 0; position: relative; z-index: 1; } table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.95rem; margin: 2rem 0; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--box-shadow); border: 1px solid rgba(184, 162, 115, 0.1); } table thead th { background: var(--cream-color); color: var(--primary-color); font-weight: 600; text-align: left; padding: 1.2rem .8rem .9rem 1.2rem; border-bottom: 2px solid var(--primary-cream); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; position: relative; } table thead th:first-child { border-left: none; } table thead th:last-child { border-right: none; } table tbody tr { transition: all 0.3s ease; border-bottom: 1px solid rgba(184, 162, 115, 0.1); } table tbody tr:hover { background: rgba(184, 162, 115, 0.05); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(184, 162, 115, 0.1); } table tbody tr:last-child { border-bottom: none; } table tbody td { padding: .6rem 1.2rem; vertical-align: middle; color: var(--text-color); transition: all 0.3s ease; } table tbody td a { color: var(--primary-cream); border-bottom: 2px solid var(--primary-cream); font-weight: 700; } table tbody tr:hover td { color: var(--primary-color); } .modern-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.95rem; margin: 0; } .modern-table thead th { background: var(--cream-color); color: var(--primary-color); font-weight: 600; text-align: left; padding: 1rem 1.25rem; border-bottom: 2px solid var(--primary-cream); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; position: relative; } .modern-table thead th:first-child { border-left: none; } .modern-table thead th:last-child { border-right: none; } .modern-table tbody tr { transition: all 0.3s ease; border-bottom: 1px solid rgba(184, 162, 115, 0.1); } .modern-table tbody tr:hover { background: rgba(184, 162, 115, 0.05); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(184, 162, 115, 0.1); } .modern-table tbody tr:last-child { border-bottom: none; } .modern-table tbody td { padding: 1rem 1.25rem; vertical-align: middle; color: var(--text-color); transition: all 0.3s ease; } .modern-table tbody tr:hover td { color: var(--primary-color); } .modern-table.striped tbody tr:nth-child(even) { background: rgba(184, 162, 115, 0.02); } .modern-table.striped tbody tr:nth-child(even):hover { background: rgba(184, 162, 115, 0.08); } .modern-table.compact thead th { padding: 0.75rem 1rem; font-size: 0.85rem; } .modern-table.compact tbody td { padding: 0.75rem 1rem; font-size: 0.9rem; } .modern-table.bordered { border: 1px solid rgba(184, 162, 115, 0.2); } .modern-table.bordered thead th, .modern-table.bordered tbody td { border-right: 1px solid rgba(184, 162, 115, 0.1); } .modern-table.bordered thead th:last-child, .modern-table.bordered tbody td:last-child { border-right: none; } .table-cell-center { text-align: center !important; } .table-cell-right { text-align: right !important; } .table-cell-nowrap { white-space: nowrap; } .table-cell-break { word-break: break-word; } .status-badge { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.8rem; font-weight: 500; text-align: center; min-width: 80px; transition: all 0.3s ease; } .status-badge.success { background: rgba(155, 204, 80, 0.1); color: var(--primary-green); border: 1px solid rgba(155, 204, 80, 0.3); } .status-badge.warning { background: rgba(184, 162, 115, 0.1); color: var(--primary-cream); border: 1px solid rgba(184, 162, 115, 0.3); } .status-badge.danger { background: rgba(220, 53, 69, 0.1); color: #dc3545; border: 1px solid rgba(220, 53, 69, 0.3); } .status-badge.info { background: rgba(29, 55, 84, 0.1); color: var(--primary-color); border: 1px solid rgba(29, 55, 84, 0.3); } .table-actions { display: flex; gap: 0.5rem; align-items: center; justify-content: center; } .table-btn { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 6px; border: none; cursor: pointer; transition: all 0.3s ease; font-size: 0.85rem; text-decoration: none; } .table-btn.edit { background: rgba(184, 162, 115, 0.1); color: var(--primary-cream); } .table-btn.edit:hover { background: var(--primary-cream); color: var(--white); transform: translateY(-2px); } .table-btn.delete { background: rgba(220, 53, 69, 0.1); color: #dc3545; } .table-btn.delete:hover { background: #dc3545; color: var(--white); transform: translateY(-2px); } .table-btn.view { background: rgba(29, 55, 84, 0.1); color: var(--primary-color); } .table-btn.view:hover { background: var(--primary-color); color: var(--white); transform: translateY(-2px); } .table-pagination { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; background: var(--cream-color); border-top: 1px solid rgba(184, 162, 115, 0.1); } .pagination-info { color: var(--text-light); font-size: 0.9rem; } .pagination-controls { display: flex; gap: 0.5rem; } .pagination-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 6px; border: 1px solid rgba(184, 162, 115, 0.2); background: var(--white); color: var(--primary-color); text-decoration: none; font-size: 0.9rem; transition: all 0.3s ease; } .pagination-btn:hover { background: var(--primary-cream); color: var(--white); border-color: var(--primary-cream); transform: translateY(-1px); } .pagination-btn.active { background: var(--primary-cream); color: var(--white); border-color: var(--primary-cream); } .pagination-btn:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; } .table-controls { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; background: var(--cream-color); border-bottom: 1px solid rgba(184, 162, 115, 0.1); gap: 1rem; } .table-search { flex: 1; max-width: 300px; } .table-search input { width: 100%; padding: 0.75rem 1rem; border: 1px solid rgba(184, 162, 115, 0.2); border-radius: 6px; font-size: 0.9rem; transition: all 0.3s ease; background: var(--white); } .table-search input:focus { outline: none; border-color: var(--primary-cream); box-shadow: 0 0 0 3px rgba(184, 162, 115, 0.1); } .table-filters { display: flex; gap: 0.75rem; align-items: center; } .table-filter-select { padding: 0.5rem 1rem; border: 1px solid rgba(184, 162, 115, 0.2); border-radius: 6px; background: var(--white); color: var(--primary-color); font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease; } .table-filter-select:focus { outline: none; border-color: var(--primary-cream); box-shadow: 0 0 0 3px rgba(184, 162, 115, 0.1); } .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; } @media (max-width: 768px) { .table-container { margin: 1rem 0; border-radius: 8px; } .table-header { padding: 1rem; } .table-title { font-size: 1.1rem; } .table-subtitle { font-size: 0.8rem; } table, .modern-table { font-size: 0.85rem; } table thead th, .modern-table thead th { padding: 0.75rem 0.5rem; font-size: 0.8rem; } table tbody td, .modern-table tbody td { padding: 0.75rem 0.5rem; } .table-controls { flex-direction: column; align-items: stretch; gap: 1rem; padding: 1rem; } .table-search { max-width: none; } .table-filters { justify-content: center; flex-wrap: wrap; } .table-pagination { flex-direction: column; gap: 1rem; padding: 1rem; text-align: center; } .pagination-controls { justify-content: center; } .table-actions { gap: 0.25rem; } .table-btn { width: 28px; height: 28px; font-size: 0.75rem; } .status-badge { font-size: 0.7rem; padding: 0.2rem 0.5rem; min-width: 60px; } } @media (max-width: 480px) { table { display: block; margin: 1rem 0 !important; border-radius: 8px; } .g-recaptcha { margin: 15px 0; transform-origin: 0 0; display: block; justify-content: center; } @media (max-width: 480px) { .g-recaptcha { transform: scale(0.85); margin: 10px 0; } } @media (max-width: 360px) { .g-recaptcha { transform: scale(0.77); margin: 5px 0; } } .recaptcha-error { color: #dc3545; font-size: 14px; margin-top: 8px; padding: 10px 15px; background-color: rgba(220, 53, 69, 0.1); border: 1px solid rgba(220, 53, 69, 0.2); border-radius: 6px; display: flex; align-items: center; gap: 8px; } .recaptcha-error::before { content: "⚠️"; font-size: 16px; } .form-group .g-recaptcha { margin: 10px 0; } .sidebar-form .g-recaptcha { margin: 8px 0; justify-content: flex-start; } } @media (max-width: 360px) { .sidebar-form .g-recaptcha { transform: scale(0.75); margin: 5px -15px; } } .btn-to-top { background-color: #f9f7f2; color: #1d3754; border: 2px solid #b8a273; padding: 10px 17px; border-radius: 50px; font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; margin-top: 25px; } .btn-to-top:hover { background-color: #b8a273; color: #ffffff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(184, 162, 115, 0.3); } .btn-to-top:active { transform: translateY(0); } .btn-to-top i { font-size: 16px; transition: transform 0.3s ease; } .btn-to-top:hover i { transform: translateY(-2px); } /* Author Profile Styles */ .author-profile { margin: 2rem 0 0; padding: 0; } .author-card { background: #ffffff; border: 1px solid #e8e0d0; border-radius: 12px; padding: 0.2rem 0.9rem; display: flex; align-items: center; gap: 1.8rem; box-shadow: 0 2px 8px rgba(29, 55, 84, 0.08); transition: all 0.3s ease; position: relative; overflow: hidden; } .author-card:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(29, 55, 84, 0.12); border-color: var(--primary-cream); } .author-avatar { flex-shrink: 0; position: relative; } .author-card .author-img { width: 155px; padding: 3px; margin: 10px 0; height: 100%; border-radius: 10%; border: 1px solid #e9e9e9; box-shadow: none; transition: transform 0.3s ease; cursor: pointer; } .author-card:hover .author-img { transform: scale(1.03); } .author-placeholder { width: 120px; height: 120px; border-radius: 50%; background: linear-gradient(135deg, #e8e0d0, var(--cream-color)); display: flex; align-items: center; justify-content: center; border: 3px solid var(--white); box-shadow: 0 4px 12px rgba(29, 55, 84, 0.15); cursor: pointer; transition: transform 0.3s ease; } .author-placeholder i { font-size: 3rem; color: var(--text-light); } .author-info { flex-grow: 1; min-width: 0; } .author-info hr { border:0 !important; display: block !important; margin: 0 0 10px 0 !important; padding: 0 !important; width: 30% !important; height: 1px !important; background: linear-gradient(to top, transparent, rgba(184, 162, 115, 0.2), transparent) !important; } .author-name { color: var(--primary-color); font-weight: 600; margin: 0 0 0.2rem 0; font-size: 20px !important; line-height: 1.3; /* font-family: 'Inter', sans-serif; */ margin: 0 !important; } .author-title { color: var(--primary-cream); font-size: 0.85rem; font-weight: 400; font-size: 14px !important; margin: 0 0 0.6rem 0; line-height: 1.4; } .author-bio { color: var(--text-color); font-size: 0.9rem; line-height: 1.5; margin: 0 0 0.8rem 0; display: -webkit-box; font-size: 14px !important; -webkit-box-orient: vertical; overflow: hidden; } .author-detail-btn { display: inline-flex; align-items: center; padding: 0.2rem 0.6rem; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: var(--white) !important; border: none; border-radius: 6px; margin-top:5px; font-size: 0.7rem; font-weight: 500; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 2px 4px rgba(29, 55, 84, 0.15); } .author-detail-btn:hover { background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)); transform: translateY(-1px); box-shadow: 0 3px 8px rgba(29, 55, 84, 0.2); color: var(--white) !important; } .author-detail-btn i { font-size: 0.75rem; margin-right: 0.3rem; } @media (max-width: 768px) { .author-card { flex-direction: column; text-align: center; padding: 1.25rem; gap: 1rem; } .author-avatar { align-self: center; } .author-bio { text-align: center; } .author-detail-btn { align-self: center; } } @media (max-width: 480px) { .author-card { padding: 1rem; border-radius: 10px; } .author-card .author-img, .author-placeholder { width: 80px; height: 80px; } .author-name { font-size: 1rem; } .author-title { font-size: 0.8rem; } .author-bio { font-size: 0.85rem; } .author-detail-btn { font-size: 0.75rem; padding: 0.35rem 0.7rem; } } 