fix how to work , about,blog

This commit is contained in:
2026-05-29 18:02:58 +05:30
parent 0a65d2e04a
commit 88722329d5
30 changed files with 2881 additions and 866 deletions

View File

@@ -1,6 +1,30 @@
/* Tailwind utilities ONLY — preflight/base and components are disabled so production Elementor/WordPress CSS controls body, typography, colors, spacing, and resets. */
@import "tailwindcss/utilities";
/* ============================================================
GLOBAL FONT OVERRIDE — Strict Manrope Default
Forced on all textual and structural elements while protecting
third-party icon fonts (FontAwesome, Fontello, Eicons, etc.).
============================================================ */
html {
scroll-behavior: smooth;
}
*, *::before, *::after {
font-family: var(--font-manrope), "Manrope", system-ui, -apple-system, sans-serif;
}
*:not(i):not(svg):not(path):not(canvas):not(.fa):not(.fas):not(.far):not(.fab):not([class*="fa-"]):not([class*="eicon-"]):not([class*="fontello"]) {
font-family: var(--font-manrope), "Manrope", system-ui, -apple-system, sans-serif !important;
}
/* Smoother text rendering */
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
@media (min-width: 1025px) {
#masthead .elementor-element.elementor-element-466de1b {
top: 5px !important;
@@ -10,7 +34,7 @@
#masthead .elementor-element.elementor-element-e052838 {
margin-left: 1.4% !important;
border-radius: 28px !important;
background: rgba(31, 31, 31, 0.82) !important;
background: transparent !important;
}
#masthead .elementor-element.elementor-element-d681ece {
@@ -542,7 +566,7 @@
margin: 0 !important;
letter-spacing: -0.5px !important;
text-transform: none !important;
font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
font-family: var(--font-manrope), 'Manrope', system-ui, -apple-system, sans-serif !important;
}
/* Hover state content wrapper */
@@ -589,7 +613,7 @@
margin: 0 !important;
font-weight: 600 !important;
letter-spacing: -0.2px !important;
font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
font-family: var(--font-manrope), 'Manrope', system-ui, -apple-system, sans-serif !important;
}
.industry-card-section-title {
@@ -600,7 +624,7 @@
margin-bottom: 10px !important;
text-transform: uppercase !important;
opacity: 0.9 !important;
font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
font-family: var(--font-manrope), 'Manrope', system-ui, -apple-system, sans-serif !important;
}
.industry-card-list {
@@ -621,7 +645,7 @@
opacity: 0;
transform: translateY(5px);
transition: opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
font-family: var(--font-manrope), 'Manrope', system-ui, -apple-system, sans-serif !important;
}
.industry-card-link:hover .industry-card-list-item {
@@ -681,7 +705,7 @@
font-size: 24px !important;
font-weight: 700 !important;
margin: 0 !important;
font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
font-family: var(--font-manrope), 'Manrope', system-ui, -apple-system, sans-serif !important;
text-transform: none !important;
letter-spacing: -0.5px !important;
}
@@ -690,3 +714,88 @@
padding-left: clamp(20px, 4vw, 50px) !important;
padding-right: clamp(20px, 4vw, 50px) !important;
}
/* Custom premium animations keyframes */
@keyframes shimmer-sweep {
0% {
background-position: 200% center;
}
100% {
background-position: -200% center;
}
}
/* ============================================================
CUSTOM STANDARDIZED HERO STYLES
Ensures all subpage hero sections have the exact same height,
width, framing margin/padding, and border-radius as the
Home Page content slider / hero container.
============================================================ */
/* Outer parent layout wrapper mirroring .elementor-element-741f56c */
.custom-standard-hero-container {
width: 100% !important;
max-width: 100% !important;
margin: 0 auto !important;
box-sizing: border-box !important;
padding: 20px 20px 20px 20px !important; /* Top, Right, Bottom, Left margin framing */
display: flex !important;
flex-direction: column !important;
position: relative !important;
}
/* Inner hero card mirroring .owl-stage-outer border-radius and slider dimensions */
.custom-standard-hero-card {
position: relative !important;
width: 100% !important;
height: 800px !important;
min-height: 800px !important;
border-radius: 25px !important;
overflow: hidden !important;
box-shadow: none !important;
margin: 0 !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
background-size: cover !important;
background-position: center !important;
background-repeat: no-repeat !important;
}
/* Dark background tint overlay to match home sliders and protect text contrast */
.custom-standard-hero-card::before {
content: '' !important;
position: absolute !important;
inset: 0 !important;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.78) 55%, rgba(0, 0, 0, 0.95) 100%) !important;
z-index: 1 !important;
}
.custom-standard-hero-card > * {
position: relative !important;
z-index: 2 !important;
}
/* Responsive constraints to keep all heroes matching the home page carousel perfectly */
@media (max-width: 1024px) {
.custom-standard-hero-container {
padding: 10px 10px 10px 10px !important;
}
.custom-standard-hero-card {
height: 620px !important;
min-height: 620px !important;
border-radius: 25px !important;
}
}
@media (max-width: 767px) {
.custom-standard-hero-container {
padding: 10px 10px 10px 10px !important;
}
.custom-standard-hero-card {
height: 560px !important;
min-height: 560px !important;
border-radius: 22px !important;
}
}