:root {
--primary: #3e6fb6;
--primary-dark: #2e4f86;
--primary-light: #5a89c9;
--accent: #7ac943;
--accent-hover: #6ab835;
--dark: #1a253a;
--dark-light: #2d3a52;
--gray: #64748b;
--gray-light: #94a3b8;
--light: #f1f5f9;
--white: #ffffff;
--gradient-primary: linear-gradient(
135deg,
var(--primary),
var(--primary-dark)
);
--gradient-accent: linear-gradient(135deg, var(--accent), #5fb830);
--gradient-hero: linear-gradient(
135deg,
#f8fbff 0%,
#e8f4e8 50%,
#eef4ff 100%
);
--gradient-bg: linear-gradient(135deg, #f0f7f0 0%, #e8f0f8 50%, #f0f7ff 100%);
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
--shadow-md: 0 8px 25px rgba(0, 0, 0, 0.12);
--shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
--transition-fast: 0.2s ease;
--transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
--transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
--radius-sm: 8px;
--radius-md: 16px;
--radius-lg: 24px;
--radius-full: 50px;
--container-padding: 8%;
--section-padding: 100px;
}

*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
scroll-padding-top: 80px;
}

body {
font-family:
"Poppins",
-apple-system,
BlinkMacSystemFont,
sans-serif;
/* background: var(--gradient-bg); */
background-color: #e2efe9;
color: var(--dark);
line-height: 1.6;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-webkit-tap-highlight-color: transparent;
}

img {
max-width: 100%;
height: auto;
display: block;
}

a {
text-decoration: none;
color: inherit;
transition: var(--transition-fast);
}

ul {
list-style: none;
}

button {
font-family: inherit;
cursor: pointer;
border: none;
background: none;
}

h1,
h2,
h3,
h4 {
font-weight: 700;
line-height: 1.2;
margin-bottom: 1rem;
}

h1 {
font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
font-size: clamp(1.5rem, 3vw, 1.875rem);
}

p {
color: var(--gray);
margin-bottom: 1rem;
}

/* ACCENT TEXT */
.accent {
color: var(--accent);
position: relative;
}

.accent::after {
content: "";
position: absolute;
bottom: 4px;
left: 0;
width: 100%;
height: 8px;
background: var(--accent);
opacity: 0.2;
border-radius: 4px;
z-index: -1;
}

/* SECTION TITLES */
.section-title {
text-align: center;
color: var(--primary-dark);
margin-bottom: 1rem;
position: relative;
display: inline-block;
left: 50%;
transform: translateX(-50%);
}
.section-title1 {
text-align: center;
color: var(--primary-dark);
margin-bottom: 1rem;
position: relative;
display: inline-block;
left: 40%;
transform: translateX(-50%);
}

.section-title::after {
content: "";
position: absolute;
bottom: -12px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 4px;
background: var(--gradient-accent);
border-radius: 2px;
}
.section-title1::after {
content: "";
position: absolute;
bottom: -12px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 4px;
background: var(--gradient-accent);
border-radius: 2px;
}

.section-subtitle {
text-align: center;
color: var(--gray);
max-width: 600px;
margin: 0 auto 3rem;
font-size: 1.1rem;
}
.section-subtitle1 {
text-align: justify;
text-indent: 30px;
color: var(--gray);
margin: 0 auto 3rem;
font-size: 1.1rem;
}
.section-subtitle2 {
text-align: center;
text-indent: 30px;
color: var(--gray);
margin: 0 auto 3rem;
font-size: 1.1rem;
 padding-right: 50px;
padding-left: 50px;
}

/* BUTTONS - MOBILE OPTIMIZED */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 14px 32px;
border-radius: var(--radius-full);
font-weight: 600;
font-size: 1rem;
transition: var(--transition-normal);
position: relative;
overflow: hidden;
z-index: 1;
min-height: 44px;
touch-action: manipulation;
}

.btn::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(20deg, #555e5a, rgba(91, 129, 194, 0.98));
border-radius: var(--radius-full);
z-index: -1;
transition: var(--transition-normal);
}

.btn-primary {
color: var(--white);
box-shadow: var(--shadow-md);
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}

.btn-primary:active {
transform: scale(0.95);
}

.btn-outline {
background: transparent;
color: var(--primary);
border: 2px solid var(--primary);
}

.btn-outline::before {
background: var(--primary);
opacity: 0;
}

.btn-outline:hover {
color: var(--white);
transform: translateY(-2px);
}

.btn-outline:hover::before {
opacity: 1;
}

.btn-outline:active {
transform: scale(0.95);
}

.btn-large {
padding: 18px 48px;
font-size: 1.1rem;
}

.magnetic {
transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* NAVIGATION BAR */
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
padding: 20px var(--container-padding);
display: flex;
align-items: center;
background: #fff;
/* background: linear-gradient(120deg, #fff, rgba(144, 168, 211, 0.98)); */
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(122, 201, 67, 0.2);
box-shadow: 0 4px 30px rgba(62, 111, 182, 0.3);
z-index: 1000;
transition: var(--transition-normal);
}

.navbar.scrolled {
padding: 15px var(--container-padding);
background: #fff;
/* background: linear-gradient(120deg, #fff, rgba(144, 168, 211, 0.98)); */
box-shadow: 0 8px 40px rgba(62, 111, 182, 0.4);
}

.nav-container {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
max-width: 1400px;
margin: 0 auto;
}

.nav-logo img {
height: 50px;
transition: var(--transition-fast);
/* filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)); */
}

.nav-links {
display: flex;
gap: 2.5rem;
align-items: center;
}

.nav-links a {
font-weight: 500;
color: #3e78c5;
position: relative;
padding: 8px 16px;
border-radius: var(--radius-full);
transition: var(--transition-fast);
}

.nav-links a::before {
content: "";
position: absolute;
inset: 0;
background: rgba(122, 201, 67, 0.2);
border-radius: var(--radius-full);
opacity: 0;
transition: var(--transition-fast);
}

.nav-links a::after {
content: "";
position: absolute;
bottom: 4px;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 2px;
/* background: var(--gradient-accent); */
transition: var(--transition-normal);
border-radius: 1px;
}

.nav-links a:hover::before {
opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
width: 80%;
}

.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 8px;
z-index: 1001;
}

.menu-toggle span {
width: 28px;
height: 3px;
background: #3e78c5;
border-radius: 2px;
transition: var(--transition-normal);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(6px, -6px);
}

.overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(8px);
opacity: 0;
pointer-events: none;
transition: var(--transition-normal);
z-index: 900;
}

.overlay.active {
opacity: 1;
pointer-events: auto;
}

/* RHOMBUS ANIMATIONS */
.rhombus-container {
position: absolute;
inset: 0;
pointer-events: none;
z-index: 0;
overflow: hidden;
}

.rhombus-shape {
position: absolute;
opacity: 0.12;
animation: floatRhombus 18s infinite ease-in-out;
transform-style: preserve-3d;
}

.rhombus-shape::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--primary), var(--accent));
transform: rotate(45deg);
border-radius: 12px;
box-shadow:
0 8px 32px rgba(62, 111, 182, 0.3),
inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.rhombus-shape::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--accent), var(--primary));
transform: rotate(45deg) scale(0.7);
border-radius: 8px;
opacity: 0.6;
filter: blur(8px);
}

@keyframes floatRhombus {
0%,
100% {
transform: translateY(0) rotate(0deg) scale(1);
opacity: 0.12;
}
25% {
transform: translateY(-40px) rotate(5deg) scale(1.05);
opacity: 0.18;
}
50% {
transform: translateY(-20px) rotate(-5deg) scale(0.95);
opacity: 0.15;
}
75% {
transform: translateY(-50px) rotate(3deg) scale(1.02);
opacity: 0.12;
}
}

/* HERO SECTION */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 120px var(--container-padding) 80px;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, #f0f7f0 0%, #e8f0f8 50%, #f0f7ff 100%);
}

.hero-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
max-width: 1400px;
width: 100%;
margin: 0 auto;
position: relative;
z-index: 2;
}

.hero-text {
animation: fadeInUp 0.8s ease-out;
}

.hero-title {
margin-bottom: 1.5rem;
color: var(--primary-dark);
}

.hero-subtitle {
text-align: justify;
text-indent: 30px;
font-size: 1.2rem;
color: var(--gray);
margin-bottom: 2rem;
max-width: 500px;
}

.hero-cta {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

/* 3D CUBE - DESKTOP & MOBILE */
.hero-cube-scene {
display: flex;
justify-content: center;
align-items: center;
perspective: 1500px;
animation: fadeInRight 0.8s ease-out 0.2s both;
}

.cube-3d {
width: 300px;
height: 300px;
position: relative;
transform-style: preserve-3d;
animation: rotateCube 24s linear infinite;
transition: transform 0.5s ease-out;
}

.cube-3d:hover {
animation-play-state: paused;
}

.cube-face {
position: absolute;
width: 300px;
height: 300px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.2rem;
color: var(--white);
text-align: center;
padding: 1rem;
border: 2px solid rgba(255, 255, 255, 0.3);
backdrop-filter: blur(8px);
box-shadow:
inset 0 0 40px rgba(0, 0, 0, 0.15),
0 0 30px rgba(62, 111, 182, 0.2);
transition: var(--transition-normal);
transform-style: preserve-3d;
}

.cube-face::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
border-radius: 8px;
}

.cube-face:hover {
transform: scale(1.05);
box-shadow:
inset 0 0 50px rgba(0, 0, 0, 0.2),
0 0 40px rgba(122, 201, 67, 0.3);
}

.cube-face.front {
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
transform: rotateY(0deg) translateZ(150px);
border-radius: 16px;
}

.cube-face.back {
background: linear-gradient(135deg, var(--primary-dark), var(--dark-light));
transform: rotateY(180deg) translateZ(150px);
border-radius: 16px;
}

.cube-face.right {
background: linear-gradient(135deg, var(--accent), #5fb830);
transform: rotateY(90deg) translateZ(150px);
border-radius: 16px;
}

.cube-face.left {
background: linear-gradient(135deg, var(--accent), #5fb830);
transform: rotateY(-90deg) translateZ(150px);
border-radius: 16px;
}

.cube-face.top {
background: linear-gradient(135deg, #3e78c5);
transform: rotateX(90deg) translateZ(150px);
border-radius: 16px;
}

.cube-face.bottom {
background: linear-gradient(135deg, var(--primary), var(--accent));
transform: rotateX(-90deg) translateZ(150px);
border-radius: 16px;
}

@keyframes rotateCube {
0% {
transform: rotateX(-15deg) rotateY(0deg);
}
100% {
transform: rotateX(-15deg) rotateY(360deg);
}
}

.hero-scroll-indicator {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
color: var(--gray);
font-size: 0.85rem;
animation: bounce 2s infinite;
z-index: 2;
}

.scroll-arrow {
width: 24px;
height: 24px;
border-right: 2px solid var(--primary);
border-bottom: 2px solid var(--primary);
transform: rotate(45deg);
}

@keyframes bounce {
0%,
20%,
50%,
80%,
100% {
transform: translateX(-50%) translateY(0);
}
40% {
transform: translateX(-50%) translateY(-10px);
}
60% {
transform: translateX(-50%) translateY(-5px);
}
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

/* SECTIONS */
.section {
padding: var(--section-padding) var(--container-padding);
position: relative;
background: linear-gradient(135deg, #ffffff 0%, #f8fbf8 100%);
overflow-x: hidden;
max-width: 100vw;
}

.section::before {
content: "";
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 80%;
max-width: 1200px;
height: 1px;
background: linear-gradient(
90deg,
transparent,
var(--primary-light),
transparent
);
opacity: 0.3;
}

.section:first-of-type::before {
display: none;
}

/* STATS */
.stats-section {
background: linear-gradient(135deg, #f0f7f0 0%, #e8f4e8 100%);
}

.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
max-width: 1200px;
margin: 3rem auto 0;
}

.stat-card {
text-align: center;
padding: 2rem;
background: linear-gradient(135deg, #ffffff, #f8fbf8);
border-radius: var(--radius-lg);
border: 1px solid rgba(122, 201, 67, 0.2);
transition: var(--transition-normal);
position: relative;
overflow: hidden;
}

.stat-card::before {
content: "";
position: absolute;
inset: 0;
background: var(--gradient-primary);
opacity: 0;
transition: var(--transition-normal);
z-index: 0;
}

.stat-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}

.stat-card:hover::before {
opacity: 0.05;
}

.stat-card > * {
position: relative;
z-index: 1;
}

.stat-card .counter {
font-size: 3rem;
font-weight: 800;
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.5rem;
}

.stat-card p {
color: var(--gray);
font-weight: 500;
margin: 0;
}

.stat-icon {
font-size: 2rem;
margin-top: 1rem;
opacity: 0.6;
display: inline-flex;
align-items: center;
justify-content: center;
}

.stat-icon i {
width: 40px;
height: 40px;
color: var(--primary);
stroke-width: 2;
transition: all var(--transition-fast);
}

/* SERVICES */
.services-section {
background: linear-gradient(135deg, #f8fbf8 0%, #f0f7ff 100%);
}

.cards-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}

.service-card {
background: linear-gradient(135deg, #ffffff, #f8fbf8);
padding: 2.5rem;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
border: 1px solid rgba(122, 201, 67, 0.15);
transition: var(--transition-normal);
position: relative;
overflow: hidden;
}

.service-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: var(--gradient-accent);
transform: scaleX(0);
transform-origin: left;
transition: var(--transition-normal);
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
transform: scaleX(1);
}

.card-icon {
font-size: 2.5rem;
margin-bottom: 1.5rem;
display: inline-flex;
align-items: center;
justify-content: center;
width: 70px;
height: 70px;
background: linear-gradient(135deg, #e8f4e8, #eef4ff);
border-radius: var(--radius-md);
border: 2px solid var(--accent);
}

.card-icon i {
width: 32px;
height: 32px;
color: var(--primary);
stroke-width: 2;
transition: all var(--transition-fast);
}

.service-card h3 {
color: var(--primary-dark);
margin-bottom: 1rem;
}

.service-features {
margin-top: 1.5rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(122, 201, 67, 0.2);
}

.service-features li {
color: var(--gray);
font-size: 0.95rem;
margin-bottom: 0.5rem;
padding-left: 1.2rem;
position: relative;
}

.service-features li::before {
content: "✓";
position: absolute;
left: 0;
color: var(--accent);
font-weight: 600;
}

/* ABOUT */
.about-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}

.about-text {
text-align: justify;
text-indent: 30px;
font-size: 1.1rem;
margin-bottom: 2rem;
}

.about-highlights {
display: flex;
gap: 2rem;
margin: 2rem 0;
}

.highlight-item {
text-align: center;
}

.highlight-number {
display: block;
font-size: 1.5rem;
font-weight: 700;
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.25rem;
}
.highlight-number1 {
display: block;
font-size: 1.1rem;
font-weight: 600;
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.25rem;
}

.highlight-label {
color: var(--gray);
font-size: 0.9rem;
}

.about-visual {
display: flex;
justify-content: center;
}

.cube-showcase {
perspective: 1000px;
}

.about-cube {
width: 220px;
height: 220px;
animation: rotateCube 20s linear infinite reverse;
}

.about-cube .cube-face {
width: 220px;
height: 220px;
font-size: 0.95rem;
}

.about-cube .cube-face.front {
transform: rotateY(0deg) translateZ(110px);
}

.about-cube .cube-face.back {
transform: rotateY(180deg) translateZ(110px);
}

.about-cube .cube-face.right {
transform: rotateY(90deg) translateZ(110px);
}

.about-cube .cube-face.left {
transform: rotateY(-90deg) translateZ(110px);
}

.about-cube .cube-face.top {
transform: rotateX(90deg) translateZ(110px);
}

.about-cube .cube-face.bottom {
transform: rotateX(-90deg) translateZ(110px);
}

/* OFFSHORE */
.offshore-premium {
background: linear-gradient(135deg, #e8f4e8 0%, #eef4ff 50%, #f0f7f0 100%);
overflow: hidden;
}

.offshore-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: start;
max-width: 1200px;
margin: 0 auto;
}

.offshore-content {
max-width: 600px;
}

.offshore-heading {
color: var(--primary-dark);
margin-bottom: 1.5rem;
}

.offshore-text {
color: var(--gray);
margin-bottom: 2rem;
line-height: 1.7;
}

.country-highlight {
display: flex;
align-items: flex-start;
gap: 1rem;
background: linear-gradient(135deg, #ffffff, #f8fbf8);
padding: 1.5rem;
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
margin-bottom: 1.5rem;
border-left: 4px solid var(--accent);
}

.flag-svg {
flex-shrink: 0;
width: 48px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #e8f4e8, #eef4ff);
border-radius: 4px;
overflow: hidden;
}

.flag-svg svg {
width: 100%;
height: 100%;
object-fit: cover;
}

.country-highlight strong {
display: block;
color: var(--primary-dark);
margin-bottom: 0.25rem;
}

.country-highlight p {
margin: 0;
font-size: 0.95rem;
}

.testimonial {
background: #fff;
padding: 1.5rem;
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
margin-bottom: 1.5rem;
font-style: italic;
border-left: 4px solid var(--primary);
}

.testimonial p {
margin: 0 0 0.75rem;
color: var(--dark);
}

.testimonial span {
display: block;
font-weight: 600;
color: var(--primary);
font-style: normal;
font-size: 0.95rem;
}

/* ===== OFFSHORE SLIDER - UNIVERSAL STYLES ===== */
.offshore-slider {
width: 100%;
overflow: hidden;
padding: 1rem 0;
}

.offshore-swiper {
width: 100%;
padding-bottom: 50px !important;
overflow: visible !important;
}

.swiper-wrapper {
align-items: stretch !important;
}

.swiper-slide {
height: auto !important;
width: 100% !important;
display: flex;
}

.swiper-pagination {
margin-top: 2rem !important;
position: relative !important;
}

.swiper-pagination-bullet {
width: 10px;
height: 10px;
background: var(--gray-light);
opacity: 0.5;
transition: var(--transition-fast);
}

.swiper-pagination-bullet-active {
background: var(--accent);
opacity: 1;
transform: scale(1.2);
}

/* Offshore Card - Universal */
.offshore-card {
background: #EBF4F5;
padding: 2rem 1.5rem;
border: 1px solid rgba(122, 201, 67, 0.2);
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
}

.offshore-card .offshore-heading {
font-size: 1.4rem;
margin-bottom: 1rem;
text-align: center;
color: var(--primary-dark);
line-height: 1.3;
}

.offshore-card .offshore-text {
font-size: 0.95rem;
margin-bottom: 2rem;
text-align: center;
line-height: 1.6;
color: var(--gray);
flex-grow: 1;
}

/* ===== RESPONSIVE: Desktop Shows Content + Slider ===== */
@media (min-width: 769px) {
.desktop-only {
display: block !important;
}
.offshore-container {
grid-template-columns: 1fr 1fr;
gap: 4rem;
}
.offshore-swiper {
display: block !important;
}
}

/* ===== RESPONSIVE: Mobile Shows Slider Only ===== */
@media (max-width: 768px) {
.desktop-only {
display: none !important;
}
.offshore-container {
grid-template-columns: 1fr !important;
gap: 2rem !important;
}
.offshore-card {
padding: 1.75rem 1.25rem;
}
.offshore-card .offshore-heading {
font-size: 1.3rem;
}
.swiper-pagination-bullet {
width: 8px;
height: 8px;
}
}

/* ===== Extra Small Mobile ===== */
@media (max-width: 480px) {
.offshore-card {
padding: 1.5rem 1rem;
}
.offshore-card .offshore-heading {
font-size: 1.2rem;
}
.offshore-card .offshore-text {
font-size: 0.9rem;
margin-bottom: 1.5rem;
}
}

.offshore-card .country-highlight,
.offshore-card .testimonial {
margin-bottom: 1rem;
padding: 1rem;
background: linear-gradient(135deg, #e8f4e8, #eef4ff);
border-radius: var(--radius-md);
}

/* MAP - MOBILE FIXED */
.world-map-container {
margin-top: 40px;
position: relative;
max-width: 650px;
width: 100%;
aspect-ratio: 1009.67/665.96;
border-radius: var(--radius-lg);
}

.world-map {
position: relative;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #ffffff, #f8fbf8);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
overflow: visible;
border: 1px solid rgba(122, 201, 67, 0.2);
}

.map-placeholder {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #f0f7f0, #e8f0f8);
}

.map-svg {
width: 100%;
height: 100%;
object-fit: contain;
}

.connection-svg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}

.animated-path {
stroke-dasharray: 2000;
stroke-dashoffset: 2000;
animation: drawPath 2.5s ease-out forwards;
}

@keyframes drawPath {
to {
stroke-dashoffset: 0;
}
}

.glow-dot {
position: absolute;
width: 14px;
height: 14px;
border-radius: 50%;
background: var(--accent);
box-shadow: 0 0 0 rgba(122, 201, 67, 0.4);
animation: pulseDot 2s infinite;
cursor: pointer;
z-index: 10;
transform: translate(-50%, -50%);
}

.glow-dot::after {
content: attr(data-location);
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background: var(--dark);
color: var(--white);
padding: 4px 10px;
border-radius: 20px;
font-size: 0.75rem;
white-space: nowrap;
opacity: 0;
transition: var(--transition-fast);
pointer-events: none;
}

.glow-dot:hover::after {
opacity: 1;
bottom: 25px;
}

.glow-dot:active::after {
opacity: 1;
bottom: 25px;
}

@keyframes pulseDot {
0% {
box-shadow: 0 0 0 0 rgba(122, 201, 67, 0.6);
transform: scale(1);
}
70% {
box-shadow: 0 0 0 12px rgba(122, 201, 67, 0);
transform: scale(1.1);
}
100% {
box-shadow: 0 0 0 0 rgba(122, 201, 67, 0);
transform: scale(1);
}
}

.finland {
left: 62%;
top: 24%;
}
.india {
left: 68%;
top: 62%;
}
.dubai {
left: 63%;
top: 56%;
}
.bahrain {
left: 60%;
top: 56%;
}

/* CLIENT STRIP */
.strip-title {
text-align: center;
display: block;
font-weight: 600;
color: var(--gray);
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 0.9rem;
}

.logos-marquee {
display: flex;
justify-content: center;
gap: 1.5rem;
flex-wrap: wrap;
}

.logo-box {
background: linear-gradient(135deg, #ffffff, #f8fbf8);
padding: 1rem 2rem;
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
font-weight: 600;
color: var(--primary-dark);
transition: var(--transition-normal);
display: flex;
align-items: center;
gap: 0.5rem;
border: 1px solid rgba(122, 201, 67, 0.2);
}

.logo-box:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-md);
}

.offshore-cta {
text-align: center;
margin-top: 3rem;
}

/* PROCESS */
.process-steps {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
max-width: 1200px;
margin: 3rem auto 0;
}

.process-step {
text-align: center;
padding: 2rem;
position: relative;
}

.process-step::after {
content: "";
position: absolute;
top: 40px;
right: -50%;
width: 100%;
height: 2px;
background: linear-gradient(90deg, var(--primary-light), transparent);
opacity: 0.3;
}

.process-step:last-child::after {
display: none;
}

.step-number {
display: inline-flex;
align-items: center;
justify-content: center;
width: 80px;
height: 80px;
background: var(--gradient-primary);
color: var(--white);
font-size: 1.5rem;
font-weight: 700;
border-radius: 50%;
margin: 0 auto 1.5rem;
box-shadow: var(--shadow-md);
}

.process-step h3 {
color: var(--primary-dark);
margin-bottom: 1rem;
}

/* PORTFOLIO - RHOMBUS CARDS */
.portfolio-section {
background: linear-gradient(135deg, #f8fbf8 0%, #f0f7ff 100%);
}

.portfolio-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 3rem;
max-width: 1200px;
margin: 3rem auto;
padding: 2rem 0;
}

.portfolio-item {
position: relative;
transition: var(--transition-normal);
cursor: pointer;
}

.portfolio-item:hover {
transform: rotate(0deg) scale(1.02) translateY(-10px);
z-index: 10;
}

.portfolio-rhombus {
position: relative;
background: var(--gradient-primary);
padding: 2.5rem 2rem;
border-radius: 20px;
box-shadow: var(--shadow-md);
overflow: hidden;
transition: var(--transition-normal);
min-height: 280px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.portfolio-rhombus::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
135deg,
rgba(122, 201, 67, 0.3),
rgba(62, 111, 182, 0.3)
);
opacity: 0;
transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-rhombus::before {
opacity: 1;
}

.portfolio-content {
position: relative;
z-index: 2;
text-align: center;
color: var(--white);
width: 100%;
}

.portfolio-content h4 {
font-size: 1.4rem;
margin-bottom: 0.75rem;
color: var(--white);
font-weight: 700;
line-height: 1.3;
}

.portfolio-content p {
color: rgba(255, 255, 255, 0.95);
font-size: 1rem;
margin: 0;
font-weight: 500;
}

.portfolio-icon {
font-size: 3rem;
margin-bottom: 1rem;
display: block;
}

.portfolio-icon i {
width: 56px;
height: 56px;
color: var(--white);
stroke-width: 1.5;
transition: all var(--transition-fast);
}

.portfolio-item:hover .portfolio-rhombus {
box-shadow: var(--shadow-lg);
background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.portfolio-item:hover .portfolio-icon i {
transform: scale(1.1);
}

.portfolio-cta {
text-align: center;
margin-top: 2rem;
}

/* CTA */
.cta-section {
background: var(--gradient-primary);
color: var(--white);
text-align: center;
}

.cta-section .section-title,
.cta-section .section-subtitle {
color: var(--white);
}

.cta-section .section-title::after {
background: var(--gradient-accent);
}

.cta-content {
max-width: 700px;
margin: 0 auto;
}

.cta-content h2 {
margin-bottom: 1.5rem;
}

.cta-content p {
color: rgba(255, 255, 255, 0.9);
font-size: 1.2rem;
margin-bottom: 2.5rem;
}

.cta-section .btn-primary::before {
background: var(--white);
}

.cta-section .btn-primary {
color: var(--primary);
}

.cta-section .btn-primary:hover {
color: var(--primary-dark);
}

/* OFFSHORE SECTION 2 */
.offshore-section {
background: linear-gradient(135deg, #f8fbf8 0%, #f0f7ff 100%);
}

.offshore-wrapper {
padding-top: 50px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: start;
max-width: 1200px;
margin: 0 auto;
}

.offshore-text {
max-width: 600px;
}

.offshore-text h3 {
color: var(--primary-dark);
margin-bottom: 1.5rem;
}

.offshore-text p {
margin-bottom: 2rem;
line-height: 1.7;
}

.global-badge {
display: flex;
align-items: flex-start;
gap: 1rem;
background: linear-gradient(135deg, #e8f4e8, #eef4ff);
padding: 1.5rem;
border-radius: var(--radius-md);
margin-bottom: 2rem;
border: 1px solid rgba(122, 201, 67, 0.2);
}

.flag-placeholder {
font-size: 2rem;
flex-shrink: 0;
}

.global-badge strong {
display: block;
color: var(--primary-dark);
margin-bottom: 0.25rem;
}

.global-badge p {
margin: 0;
font-size: 0.95rem;
}

.offshore-points {
margin-bottom: 2rem;
}

.offshore-points li {
color: var(--dark);
margin-bottom: 0.75rem;
font-weight: 500;
display: flex;
align-items: center;
gap: 0.5rem;
}

.offshore-stats {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}

.off-card {
background: linear-gradient(135deg, #ffffff, #f8fbf8);
padding: 2rem;
border-radius: var(--radius-lg);
text-align: center;
border: 1px solid rgba(122, 201, 67, 0.2);
transition: var(--transition-normal);
}

.off-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}

.off-card .counter {
font-size: 2.5rem;
font-weight: 800;
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.5rem;
}

.off-card p {
margin: 0;
color: var(--gray);
font-weight: 500;
}

/* CONTACT */
.contact-section {
background: linear-gradient(135deg, #f0f7f0 0%, #e8f4e8 100%);
}

.contact-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
max-width: 1100px;
margin: 3rem auto 0;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1.25rem;
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}

.contact-form input,
.contact-form textarea {
padding: 1rem 1.25rem;
border: 2px solid rgba(122, 201, 67, 0.2);
border-radius: var(--radius-md);
font-size: 1rem;
transition: var(--transition-fast);
background: linear-gradient(135deg, #ffffff, #f8fbf8);
width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
outline: none;
border-color: var(--accent);
background: var(--white);
box-shadow: 0 0 0 4px rgba(122, 201, 67, 0.1);
}

.contact-form textarea {
resize: vertical;
min-height: 120px;
}

.contact-info {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.info-item {
display: flex;
align-items: flex-start;
gap: 1rem;
padding: 1.25rem;
background: linear-gradient(135deg, #ffffff, #f8fbf8);
border-radius: var(--radius-md);
border: 1px solid rgba(122, 201, 67, 0.2);
}

.info-icon {
font-size: 1.5rem;
flex-shrink: 0;
display: inline-flex;
}

.info-icon i {
width: 24px;
height: 24px;
color: var(--primary);
stroke-width: 2;
transition: all var(--transition-fast);
}

.info-item strong {
display: block;
color: var(--primary-dark);
margin-bottom: 0.25rem;
}

.info-item p {
margin: 0;
color: var(--gray);
}

/* FOOTER */
.footer {
background: linear-gradient(135deg, var(--dark), var(--dark-light));
color: var(--white);
padding: 1rem var(--container-padding) 1rem;
}

.footer-content {
padding: 4rem var(--container-padding) 2rem;
background-color: #e2efe9;
display: grid;
grid-template-columns: 1.5fr 2fr;
gap: 3rem;
max-width: 1400px;
margin: 0 auto;
padding-bottom: 3rem;
border-bottom: 1px solid rgba(122, 201, 67, 0.2);
}

.footer-brand img {
height: 40px;
margin-bottom: 1rem;
}

.footer-brand p {
color: var(--primary-dark);
max-width: 300px;
}

.footer-links {
display: grid;
grid-template-columns: repeat(2, 1fr);
}

.link-group h4 {
color: var(--primary-dark);
margin-bottom: 1rem;
font-size: 1.1rem;
}

.link-group a {
display: block;
color: var(--primary-dark);
margin-bottom: 0.5rem;
transition: var(--transition-fast);
font-size: 0.95rem;
}

.link-group a:hover {
color: var(--accent);
transform: translateX(4px);
}

.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1400px;
margin: 0 auto;
padding-top: 2rem;
color: rgba(255, 255, 255, 0.6);
font-size: 0.9rem;
}

.social-links {
display: flex;
gap: 1rem;
}

.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 50%;
background: rgba(122, 201, 67, 0.2);
color: var(--white);
font-weight: 600;
transition: var(--transition-fast);
}

.social-links a:hover {
background: var(--accent);
transform: translateY(-3px);
}

/* WHATSAPP */
.whatsapp-float {
position: fixed;
bottom: 24px;
right: 24px;
width: 60px;
height: 60px;
background: #25d366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
z-index: 1000;
transition: var(--transition-normal);
animation: floatWhatsapp 3s ease-in-out infinite;
}

.whatsapp-float:hover {
transform: scale(1.1);
box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
width: 32px;
height: 32px;
}

@keyframes floatWhatsapp {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-8px);
}
}

@media (min-width: 769px) {
.mobile-only {
display: none !important;
}
.desktop-only {
display: block !important;
}
.offshore-container {
grid-template-columns: 1fr 1fr;
gap: 4rem;
}
}

@media (max-width: 768px) {
.desktop-only {
display: none !important;
}
.mobile-only {
display: block !important;
width: 100%;
}
.offshore-container {
grid-template-columns: 1fr !important;
gap: 2rem !important;
}

.offshore-card {
background: #EBF4F5;
padding: 1.5rem;
border-radius: var(--radius-lg);
border: 1px solid rgba(122, 201, 67, 0.2);
}

.offshore-card .offshore-heading {
font-size: 1.3rem;
margin-bottom: 1rem;
text-align: center;
}

.offshore-card .offshore-text {
font-size: 0.95rem;
margin-bottom: 1.5rem;
text-align: center;
}

.offshore-card .country-highlight,
.offshore-card .testimonial {
margin-bottom: 1rem;
padding: 1rem;
background: linear-gradient(135deg, #e8f4e8, #eef4ff);
border-radius: var(--radius-md);
}

.swiper.offshore-swiper {
padding-bottom: 30px !important;
}

.swiper-pagination-bullet {
width: 8px;
height: 8px;
background: var(--gray-light);
opacity: 0.5;
}
.swiper-pagination-bullet-active {
background: var(--accent);
opacity: 1;
}
}

@media (max-width: 1200px) {
:root {
--container-padding: 5%;
}
.stats-grid,
.cards-grid,
.process-steps,
.portfolio-grid {
grid-template-columns: repeat(2, 1fr);
}
.footer-links {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 992px) {
.menu-toggle {
display: flex;
}
.nav-links {
position: fixed;
top: 0;
right: -100%;
width: 320px;
height: 100vh;
background: linear-gradient(120deg, #fff, rgba(144, 168, 211, 0.98));
color: #3e78c5;
backdrop-filter: blur(20px);
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2.5rem;
box-shadow: 0 8px 40px rgba(62, 111, 182, 0.4);
transition: var(--transition-slow);
padding: 2rem;
z-index: 1001;
}
.nav-links.active {
right: 0;
}
.nav-links a {
font-size: 1.2rem;
color: #3e78c5;
padding: 12px 24px;
border-radius: var(--radius-full);
}
.hero-content,
.about-container,
.offshore-container,
.offshore-wrapper,
.contact-container {
grid-template-columns: 1fr;
text-align: center;
}
.hero-content {
gap: 3rem;
}
.hero-text {
order: 1;
}
.hero-cube-scene {
order: 2;
}
.hero-cta {
justify-content: center;
}
.about-highlights {
justify-content: center;
}
.offshore-content {
text-align: center;
margin: 0 auto;
}
.country-highlight,
.testimonial {
text-align: left;
}
.process-step::after {
display: none;
}
.footer-content {
grid-template-columns: 1fr;
text-align: center;
}
.footer-links {
justify-content: right;
}
.footer-bottom {
flex-direction: column;
gap: 1rem;
}
.portfolio-item,
.portfolio-item:nth-child(even),
.portfolio-item:nth-child(3n) {
transform: rotate(0deg);
}
}

@media (max-width: 768px) {
:root {
--section-padding: 70px;
}
h1 {
font-size: 2.5rem;
}
h2 {
font-size: 1.75rem;
}
.stats-grid,
.cards-grid,
.process-steps,
.portfolio-grid,
.offshore-stats {
grid-template-columns: 1fr;
}
.hero-cube-scene .cube-3d {
width: 220px;
height: 220px;
}
.cube-face {
width: 220px;
height: 220px;
font-size: 1rem;
}
.cube-face.front {
transform: rotateY(0deg) translateZ(120px);
}
.cube-face.back {
transform: rotateY(180deg) translateZ(120px);
}
.cube-face.right {
transform: rotateY(90deg) translateZ(120px);
}
.cube-face.left {
transform: rotateY(-90deg) translateZ(120px);
}
.cube-face.top {
transform: rotateX(90deg) translateZ(120px);
}
.cube-face.bottom {
transform: rotateX(-90deg) translateZ(120px);
}
.about-cube {
width: 180px;
height: 180px;
}
.about-cube .cube-face {
width: 180px;
height: 180px;
font-size: 0.8rem;
}
.about-cube .cube-face.front {
transform: rotateY(0deg) translateZ(90px);
}
.about-cube .cube-face.back {
transform: rotateY(180deg) translateZ(90px);
}
.about-cube .cube-face.right {
transform: rotateY(90deg) translateZ(90px);
}
.about-cube .cube-face.left {
transform: rotateY(-90deg) translateZ(90px);
}
.about-cube .cube-face.top {
transform: rotateX(90deg) translateZ(90px);
}
.about-cube .cube-face.bottom {
transform: rotateX(-90deg) translateZ(90px);
}
.form-row {
grid-template-columns: 1fr;
}
.logos-marquee {
gap: 1rem;
}
.logo-box {
padding: 0.75rem 1.5rem;
font-size: 0.9rem;
}
.portfolio-rhombus {
padding: 2rem 1.5rem;
min-height: 240px;
}
.portfolio-content h4 {
font-size: 1.2rem;
}
.portfolio-content p {
font-size: 0.95rem;
}
.stat-icon i,
.card-icon i {
width: 36px;
height: 36px;
}
.portfolio-icon i {
width: 48px;
height: 48px;
}
}

@media (max-width: 480px) {
:root {
--container-padding: 4%;
--section-padding: 50px;
}
* {
-webkit-tap-highlight-color: transparent;
}
body {
overflow-x: hidden;
}
.navbar {
padding: 12px var(--container-padding) !important;
}
.nav-logo img {
height: 40px !important;
}
.menu-toggle {
padding: 8px !important;
z-index: 1001 !important;
}
.menu-toggle span {
width: 26px !important;
height: 3px !important;
color: #555e5a !important;
}
.nav-links {
width: 280px !important;
padding: 2rem 1.5rem !important;
}
.nav-links a {
font-size: 1.15rem !important;
padding: 12px 20px !important;
}
.hero {
padding: 100px var(--container-padding) 60px !important;
min-height: auto !important;
}
.hero-content {
grid-template-columns: 1fr !important;
gap: 2.5rem !important;
text-align: center !important;
}
.hero-text {
order: 1 !important;
}
.hero-cube-scene {
order: 2 !important;
}
.hero-title {
font-size: 2rem !important;
margin-bottom: 1.2rem !important;
line-height: 1.3 !important;
}
.hero-subtitle {
text-align: justify;
text-indent: 30px;
font-size: 1rem !important;
margin-bottom: 1.8rem !important;
}
.hero-cta {
justify-content: center !important;
flex-wrap: wrap !important;
gap: 0.8rem !important;
margin-bottom: 20px;
}
.btn {
padding: 12px 28px !important;
font-size: 0.95rem !important;
min-height: 44px !important;
width: 100%;
max-width: 280px !important;
}
.btn-large {
padding: 14px 36px !important;
font-size: 1rem !important;
}
.hero-cube-scene .cube-3d {
width: 220px;
height: 220px;
animation: rotateCube 20s linear infinite forwards;
}
.cube-face {
width: 200px !important;
height: 200px !important;
font-size: 0.85rem !important;
padding: 0.5rem !important;
}
.cube-face.front {
transform: rotateY(0deg) translateZ(100px) !important;
}
.cube-face.back {
transform: rotateY(180deg) translateZ(100px) !important;
}
.cube-face.right {
transform: rotateY(90deg) translateZ(100px) !important;
}
.cube-face.left {
transform: rotateY(-90deg) translateZ(100px) !important;
}
.cube-face.top {
transform: rotateX(90deg) translateZ(100px) !important;
}
.cube-face.bottom {
transform: rotateX(-90deg) translateZ(100px) !important;
}
.section {
padding: var(--section-padding) var(--container-padding) !important;
overflow-x: hidden !important;
}
.section-title {
font-size: 1.5rem !important;
margin-bottom: 1rem !important;
text-align: center !important;
justify-content: center !important;
}
.section-subtitle {
font-size: 1rem !important;
text-align: center !important;
margin-bottom: 2rem !important;
}
.section-subtitle1 {
text-align: justify;
text-indent: 30px;
font-size: 1rem !important;
margin-bottom: 2rem !important;
}
.section-subtitle2 {
text-align: justify;
text-indent: 30px;
font-size: 1rem !important;
margin-bottom: 2rem !important;
padding-right: 20px;
padding-left: 20px;
}
 
.stats-grid {
grid-template-columns: 1fr !important;
gap: 1.2rem !important;
}
.stat-card {
padding: 1.6rem !important;
}
.stat-card .counter {
font-size: 2.5rem !important;
}
.stat-icon {
font-size: 1.6rem !important;
margin-top: 0.8rem !important;
}
.cards-grid {
grid-template-columns: 1fr !important;
gap: 1.6rem !important;
}
.service-card {
padding: 2rem !important;
}
.card-icon {
width: 64px !important;
height: 64px !important;
font-size: 2rem !important;
margin-bottom: 1.2rem !important;
}
.service-features li {
font-size: 0.95rem !important;
}
.about-container {
grid-template-columns: 1fr !important;
gap: 2.5rem !important;
text-align: center !important;
}
.about-text {
text-align: justify !important;
text-indent: 30px !important;
font-size: 1rem !important;
margin-bottom: 2rem !important;
}
.global{
text-align: justify !important;
text-indent: 30px !important;
font-size: 1rem !important;
margin-bottom: 2rem !important;
}
.about-highlights {
justify-content: center !important;
gap: 1.8rem !important;
flex-wrap: wrap !important;
}
.highlight-number {
font-size: 1.4rem !important;
}
.highlight-number1 {
font-size: 1rem !important;
}
.highlight-label {
font-size: 0.9rem !important;
}
.about-cube {
width: 180px !important;
height: 180px !important;
}
.about-cube .cube-face {
width: 180px !important;
height: 180px !important;
font-size: 0.8rem !important;
}
.about-cube .cube-face.front {
transform: rotateY(0deg) translateZ(90px) !important;
}
.about-cube .cube-face.back {
transform: rotateY(180deg) translateZ(90px) !important;
}
.about-cube .cube-face.right {
transform: rotateY(90deg) translateZ(90px) !important;
}
.about-cube .cube-face.left {
transform: rotateY(-90deg) translateZ(90px) !important;
}
.about-cube .cube-face.top {
transform: rotateX(90deg) translateZ(90px) !important;
}
.about-cube .cube-face.bottom {
transform: rotateX(-90deg) translateZ(90px) !important;
}
.offshore-premium {
padding: 50px var(--container-padding) !important;
overflow: hidden !important;
}
.offshore-container {
grid-template-columns: 1fr !important;
gap: 3rem !important;
max-width: 100% !important;
}
.offshore-content {
max-width: 100% !important;
text-align: center !important;
margin: 0 auto !important;
width: 100% !important;
}
.offshore-heading {
font-size: 1.4rem !important;
margin-bottom: 1.2rem !important;
text-align: center !important;
}
.offshore-text {
font-size: 0.95rem !important;
margin-bottom: 2rem !important;
text-align: center !important;
line-height: 1.7 !important;
}
.offshore-swiper {
margin-top: 1rem !important;
width: 100% !important;
overflow: hidden !important;
}
.swiper-slide {
height: auto !important;
padding: 0.5rem !important;
}
.country-highlight,
.testimonial {
text-align: left !important;
padding: 1.2rem !important;
margin-bottom: 1.2rem !important;
width: 100% !important;
box-sizing: border-box !important;
}
.flag-svg {
width: 42px !important;
height: 28px !important;
}
.country-highlight strong {
font-size: 1rem !important;
margin-bottom: 0.3rem !important;
}
.country-highlight p,
.testimonial p {
font-size: 0.9rem !important;
margin: 0 !important;
line-height: 1.5 !important;
}
.testimonial span {
font-size: 0.85rem !important;
margin-top: 0.5rem !important;
}
.swiper-pagination {
margin-top: 1rem !important;
position: relative !important;
}
.swiper-pagination-bullet {
width: 7px !important;
height: 7px !important;
}
.world-map-container {

width: 100% !important;
max-width: 100% !important;
height: auto !important;
min-height: 280px !important;
aspect-ratio: auto !important;
margin-top: 1px;
padding: 0 !important;
position: relative !important;
overflow: visible !important;
}
.world-map {
width: 100% !important;
height: auto !important;
min-height: 280px !important;
border-radius: var(--radius-lg) !important;
overflow: visible !important;
position: relative !important;
}
.map-placeholder {
width: 100% !important;
height: auto !important;
min-height: 280px !important;
display: block !important;
position: relative !important;
}
.map-placeholder img,
.map-placeholder svg,
.map-svg {
width: 100% !important;
height: auto !important;
max-height: 280px !important;
object-fit: contain !important;
object-position: center !important;
display: block !important;
}
.connection-svg {
width: 100% !important;
height: 100% !important;
position: absolute !important;
top: 0 !important;
left: 0 !important;
pointer-events: none !important;
z-index: 5 !important;
}
.animated-path {
stroke-width: 2 !important;
}
.glow-dot {
width: 12px !important;
height: 12px !important;
transform: translate(-50%, -50%) !important;
z-index: 10 !important;
position: absolute !important;
}
.glow-dot::after {
font-size: 0.7rem !important;
padding: 3px 8px !important;
bottom: 16px !important;
white-space: nowrap !important;
transform: translateX(-50%) !important;
display: none !important;
}
.glow-dot:active::after {
display: block !important;
bottom: 20px !important;
}
.client-strip {
padding: 2rem 0 1.5rem !important;
}
.strip-title {
font-size: 0.85rem !important;
margin-bottom: 1.2rem !important;
text-align: center !important;
}
.logos-marquee {
gap: 0.8rem !important;
justify-content: center !important;
}
.logo-box {
padding: 0.6rem 1.2rem !important;
font-size: 0.85rem !important;
}
.offshore-cta {
margin-top: 2.5rem !important;
text-align: center !important;
}
.offshore-cta .btn {
width: 100% !important;
max-width: 300px !important;
}
.offshore-section {
padding: 50px var(--container-padding) !important;
}
.offshore-wrapper {
grid-template-columns: 1fr !important;
gap: 3rem !important;
}
.offshore-text {
max-width: 100% !important;
text-align: center !important;
}
.offshore-text h3 {
font-size: 1.4rem !important;
margin-bottom: 1.5rem !important;
text-align: center !important;
}
.offshore-text p {
font-size: 0.95rem !important;
margin-bottom: 2rem !important;
text-align: center !important;
}
.global-badge {
padding: 1.2rem !important;
margin-bottom: 1.8rem !important;
text-align: left !important;
}
.flag-placeholder {
font-size: 1.8rem !important;
}
.global-badge strong {
font-size: 1rem !important;
}
.global-badge p {
font-size: 0.9rem !important;
}
.offshore-points li {
font-size: 0.95rem !important;
margin-bottom: 0.6rem !important;
}
.offshore-stats {
grid-template-columns: repeat(2, 1fr) !important;
gap: 1rem !important;
}
.off-card {
padding: 1.4rem !important;
}
.off-card .counter {
font-size: 2rem !important;
}
.off-card p {
font-size: 0.9rem !important;
}
.process-steps {
grid-template-columns: 1fr !important;
gap: 1.8rem !important;
}
.process-step {
padding: 1.8rem !important;
text-align: center !important;
}
.process-step::after {
display: none !important;
}
.step-number {
width: 70px !important;
height: 70px !important;
font-size: 1.3rem !important;
margin-bottom: 1.2rem !important;
}
.process-step h3 {
font-size: 1.2rem !important;
margin-bottom: 0.8rem !important;
}
.process-step p {
font-size: 0.95rem !important;
}
.portfolio-grid {
grid-template-columns: 1fr !important;
gap: 1.8rem !important;
padding: 1rem 0 !important;
}
.portfolio-item,
.portfolio-item:nth-child(even),
.portfolio-item:nth-child(3n) {
transform: rotate(0deg) !important;
}
.portfolio-rhombus {
padding: 2rem 1.5rem !important;
min-height: 240px !important;
}
.portfolio-icon {
font-size: 2.5rem !important;
margin-bottom: 0.8rem !important;
}
.portfolio-content h4 {
font-size: 1.2rem !important;
margin-bottom: 0.5rem !important;
}
.portfolio-content p {
font-size: 0.95rem !important;
}
.portfolio-cta {
margin-top: 1.5rem !important;
}
.cta-content h2 {
font-size: 1.5rem !important;
margin-bottom: 1.2rem !important;
}
.cta-content p {
font-size: 1rem !important;
margin-bottom: 2rem !important;
}
.cta-section .btn-large {
width: 100% !important;
max-width: 300px !important;
}
.contact-container {
grid-template-columns: 1fr !important;
gap: 2.5rem !important;
}
.form-row {
grid-template-columns: 1fr !important;
gap: 0.8rem !important;
}
.contact-form input,
.contact-form textarea {
padding: 0.9rem 1.1rem !important;
font-size: 0.95rem !important;
min-height: 44px !important;
}
.contact-form textarea {
min-height: 110px !important;
}
.contact-info {
gap: 1.2rem !important;
}
.info-item {
padding: 1.2rem !important;
gap: 0.8rem !important;
text-align: left !important;
}
.info-icon {
font-size: 1.3rem !important;
}
.info-item strong {
font-size: 0.95rem !important;
}
.info-item p {
font-size: 0.9rem !important;
}
.footer {
padding: 3.5rem var(--container-padding) 1.5rem !important;
}
.footer-content {
grid-template-columns: 1fr !important;
gap: 2.2rem !important;
text-align: center !important;
}
.footer-brand img {
justify-content: center !important;
height: 38px !important;
margin-bottom: 0.8rem !important;
}
.footer-brand p {
max-width: 100% !important;
font-size: 0.95rem !important;
}
.footer-links {
grid-template-columns: repeat(2, 1fr) !important;
justify-content: right !important;
}
.link-group h4 {
font-size: 1.05rem !important;
margin-bottom: 0.8rem !important;
}
.link-group a {
font-size: 0.95rem !important;
margin-bottom: 0.45rem !important;
}
.footer-bottom {
flex-direction: column !important;
gap: 1.2rem !important;
padding-top: 1.8rem !important;
text-align: center !important;
font-size: 0.9rem !important;
}
.social-links {
gap: 0.8rem !important;
}
.social-links a {
width: 34px !important;
height: 34px !important;
font-size: 0.9rem !important;
}
.whatsapp-float {
width: 56px !important;
height: 56px !important;
bottom: 18px !important;
right: 18px !important;
}
.whatsapp-float img {
width: 30px !important;
height: 30px !important;
}
.stat-icon i,
.card-icon i {
width: 36px !important;
height: 36px !important;
}
.portfolio-icon i {
width: 48px !important;
height: 48px !important;
}
.info-icon i {
width: 22px !important;
height: 22px !important;
}
.rhombus-shape {
opacity: 0.08 !important;
animation-duration: 24s !important;
}
.rhombus-shape::before {
border-radius: 10px !important;
}
button:active,
.btn:active {
transform: scale(0.98) !important;
}
.section,
.hero,
.offshore-premium,
.offshore-section {
overflow-x: hidden !important;
max-width: 100vw !important;
}
}

@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
html {
scroll-behavior: auto;
}
}

a:focus,
button:focus,
input:focus,
textarea:focus {
outline: 2px solid var(--accent);
outline-offset: 2px;
}
.offshore-card {
background:#EBF4F5;
padding: 2rem 1.5rem;
border: 1px solid rgba(122, 201, 67, 0.2);
width: 100%;
}

.offshore-card .offshore-heading {
font-size: 1.4rem;
margin-bottom: 1rem;
text-align: center;
color: var(--primary-dark);
line-height: 1.3;
}

.offshore-card .offshore-text {
font-size: 0.95rem;
margin-bottom: 2rem;
text-align: center;
line-height: 1.6;
color: var(--gray);
}

.offshore-card .country-highlight,
.offshore-card .testimonial {
margin-bottom: 1.5rem;
padding: 1.25rem;
background: #fff;
width: 100%;
box-sizing: border-box;
}

.offshore-card .country-highlight {
display: flex;
align-items: flex-start;
gap: 1rem;
border-left: 4px solid var(--accent);
}

.offshore-card .flag-svg {
flex-shrink: 0;
width: 48px;
height: 32px;
background: linear-gradient(135deg, #e8f4e8, #eef4ff);
border-radius: 4px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}

.offshore-card .flag-svg svg {
width: 100%;
height: 100%;
object-fit: cover;
}

.offshore-card .country-highlight strong {
display: block;
color: var(--primary-dark);
margin-bottom: 0.3rem;
font-size: 1rem;
}

.offshore-card .country-highlight p {
margin: 0;
font-size: 0.9rem;
color: var(--gray);
line-height: 1.5;
}

.offshore-card .testimonial {
border-left: 4px solid var(--primary);
font-style: italic;
}

.offshore-card .testimonial p {
background: #fff;
margin: 0 0 0.75rem;
color: var(--dark);
font-size: 0.95rem;
line-height: 1.6;
}

.offshore-card .testimonial span {
display: block;
font-weight: 600;
color: var(--primary);
font-style: normal;
font-size: 0.9rem;
}

/* Swiper Container Fixes */
.offshore-slider {
width: 100%;
overflow: hidden;
padding: 1rem 0;
}

.offshore-swiper {
width: 100%;
padding-bottom: 40px !important;
}

.swiper-slide {
height: auto;
width: 100%;
}

.swiper-wrapper {
align-items: stretch;
}

.swiper-pagination {
margin-top: 1.5rem !important;
position: relative !important;
}

.swiper-pagination-bullet {
width: 10px;
height: 10px;
background: var(--gray-light);
opacity: 0.5;
transition: var(--transition-fast);
}

.swiper-pagination-bullet-active {
background: var(--accent);
opacity: 1;
transform: scale(1.2);
}

/* ===== RESPONSIVE TOGGLE: Desktop vs Mobile Slider ===== */
@media (min-width: 769px) {
.mobile-only {
display: none !important;
}
.desktop-only {
display: block !important;
}
.offshore-container {
grid-template-columns: 1fr 1fr;
gap: 4rem;
}
}

@media (max-width: 768px) {
.desktop-only {
display: none !important;
}
.mobile-only {
display: block !important;
width: 100%;
}
.offshore-container {
grid-template-columns: 1fr !important;
gap: 2rem !important;
}

.offshore-card {
padding: 1.75rem 1.25rem;
}
.offshore-card .offshore-heading {
font-size: 1.3rem;
}
.offshore-card .offshore-text {
font-size: 0.9rem;
margin-bottom: 1.5rem;
}
.offshore-card .country-highlight,
.offshore-card .testimonial {
padding: 1rem;
margin-bottom: 1.25rem;
}
.offshore-card .country-highlight {
flex-direction: row;
gap: 0.75rem;
}
.offshore-card .flag-svg {
width: 42px;
height: 28px;
}
.offshore-card .country-highlight strong {
font-size: 0.95rem;
}
.offshore-card .country-highlight p,
.offshore-card .testimonial p {
font-size: 0.85rem;
}
.offshore-card .testimonial span {
font-size: 0.85rem;
}
}

@media (max-width: 480px) {
.offshore-card {
padding: 1.5rem 1rem;
}
.offshore-card .offshore-heading {
font-size: 1.2rem;
margin-bottom: 0.875rem;
}
.offshore-card .offshore-text {
font-size: 0.875rem;
margin-bottom: 1.25rem;
}
.offshore-card .country-highlight,
.offshore-card .testimonial {
padding: 0.875rem;
margin-bottom: 1rem;
}
.offshore-card .country-highlight {
gap: 0.625rem;
}
.offshore-card .flag-svg {
width: 36px;
height: 24px;
}
.offshore-card .country-highlight strong {
font-size: 0.9rem;
margin-bottom: 0.25rem;
}
.offshore-card .country-highlight p,
.offshore-card .testimonial p {
font-size: 0.825rem;
line-height: 1.5;
}
.offshore-card .testimonial span {
font-size: 0.825rem;
}
.swiper-pagination-bullet {
width: 8px;
height: 8px;
}
}

@media (max-width: 360px) {
.offshore-card {
padding: 1.25rem 0.875rem;
}
.offshore-card .offshore-heading {
font-size: 1.1rem;
}
.offshore-card .offshore-text {
font-size: 0.85rem;
}
.offshore-card .country-highlight strong {
font-size: 0.875rem;
}
.offshore-card .country-highlight p,
.offshore-card .testimonial p {
font-size: 0.8rem;
}
}
/* ===== LOGO SLIDER - MINIMAL FIX (Height 120px + Smooth Animation) ===== */
.logo-slider-section {
/* background: linear-gradient(135deg, #f8fbf8 0%, #f0f7ff 100%); */
padding: 60px 0;
overflow: hidden;
position: relative;
}

.logo-slider-container {
position: relative;
width: 100%;
overflow: hidden;
/* Fade edges for professional look */
}

.logo-track {
display: flex;
align-items: center;
width: fit-content;
animation: scrollLogos 50s linear infinite;
gap: 0;
will-change: transform;
}

.logo-track:hover {
animation-play-state: paused;
}

@keyframes scrollLogos {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}

.logo-item {
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
padding: 0 35px;
transition: transform 0.3s ease;
min-width: 300px;
height: 200px;
box-sizing: border-box;
}

.logo-item:hover {
transform: scale(1.05);
z-index: 2;
}

/* ✅ KEY FIX: All logos - 120px height, clear & consistent */
.logo-item img {
height: 200px;
width: auto;
max-width: 300px;
object-fit: contain;
object-position: center;
transition: opacity 0.3s ease;
display: block;
}

.logo-item img:hover {
opacity: 1;
}

/* ✅ Handle inline style heights from HTML - override to 120px */
.logo-item img[style*="height"] {
height: 120px !important;
max-height: 120px !important;
}

/* ✅ Background colors from inline style - keep but center logo */
.logo-item[style*="background-color"],
.logo-item[style*="background:"] {
display: flex;
align-items: center;
justify-content: center;
border-radius: 12px;
padding: 10px;
box-sizing: border-box;
}

/* ===== RESPONSIVE - Keep animation, adjust height ===== */
@media (max-width: 768px) {
.logo-slider-section {
padding: 40px 0;
}

.logo-item {
min-width: 200px;
height: 150px;
padding: 0 25px;
}

.logo-item img {
height: 150px; /* Mobile: proportional to 120px desktop */
max-width: 200px;
}

.logo-item img[style*="height"] {
height: 150px !important;
}
}

@media (max-width: 480px) {
.logo-item {
min-width: 200px;
height: 150px;
padding: 0 20px;
}

.logo-item img {
height: 150px;
max-width: 200px;
}

.logo-item img[style*="height"] {
height: 150px !important;
}
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
.logo-track {
animation: none !important;
transform: translateX(0) !important;
flex-wrap: wrap;
justify-content: center;
}
.logo-item {
padding: 10px;
}
}
/* ===== Fix Swiper Slide Visibility ===== */
.onshore-swiper .swiper-slide {
width: 100%;
height: auto;
min-height: 320px;
/* background: linear-gradient(
135deg,
#ffffff,
#f8fbf8
);*/
border-radius: 16px;
padding: 2rem 1.5rem;
/* border: 2px solid rgba(102, 126, 234, 0.3); */
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
opacity: 1 !important;
visibility: visible !important;
position: relative;
z-index: 1;
}

.onshore-swiper .swiper-slide-active {
opacity: 1 !important;
z-index: 10;
/* border-color: rgba(102, 126, 234, 0.6); */
}

/* Country Highlight - DARK TEXT */
.onshore-swiper .country-highlight {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1.5rem;
width: 100%;
opacity: 1 !important;
visibility: visible !important;
position: relative;
z-index: 2;
}

.onshore-swiper .flag-svg {
width: 48px;
height: 32px;
border-radius: 6px;
overflow: hidden;
flex-shrink: 0;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
background: #fff;
}

.onshore-swiper .country-highlight > div {
display: flex;
flex-direction: column;
gap: 0.25rem;
opacity: 1 !important;
}

.onshore-swiper .country-highlight strong {
color: #1a253a !important; /* ✅ DARK BLUE - Visible! */
font-size: 1.1rem;
font-weight: 700;
display: block;
opacity: 1 !important;
}

.onshore-swiper .country-highlight p {
color: #64748b !important; /* ✅ GRAY - Visible! */
font-size: 0.95rem;
margin: 0;
line-height: 1.4;
opacity: 1 !important;
}

/* Testimonial Section - DARK TEXT */
.onshore-swiper .testimonial {
font-style: italic;
color: #2d3a52 !important; /* ✅ DARK GRAY - Visible! */
font-size: 1rem;
line-height: 1.7;
margin-top: 1rem;
padding-top: 1.5rem;
padding-left: 1.5rem;
border-left: 4px solid #667eea;
width: 100%;
opacity: 1 !important;
visibility: visible !important;
background: #fff;
border-radius: 8px;
}

.onshore-swiper .testimonial p {
color: #2d3a52 !important; /* ✅ DARK GRAY - Visible! */
margin: 0 0 1rem 0;
opacity: 1 !important;
background: #fff;

}

.onshore-swiper .testimonial span {
display: block;
font-style: normal;
font-weight: 700;
color: #3e6fb6 !important; /* ✅ BLUE - Visible! */
font-size: 0.95rem;
opacity: 1 !important;
}

/* Swiper Wrapper */
.onshore-swiper .swiper-wrapper {
display: flex;
flex-direction: row;
align-items: stretch;
}

/* Ensure All Content is Visible */
.onshore-swiper .swiper-slide > * {
opacity: 1 !important;
visibility: visible !important;
}

/* Pagination & Navigation */
.onshore-swiper .swiper-pagination {
position: absolute;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
z-index: 20;
}

.onshore-swiper .swiper-pagination-bullet {
width: 10px;
height: 10px;
background: rgba(62, 111, 182, 0.4);
border-radius: 50%;
opacity: 1;
margin: 0 4px !important;
}

.onshore-swiper .swiper-pagination-bullet-active {
background: #3e6fb6;
width: 28px;
border-radius: 6px;
}

@media (max-width: 768px) {
.onshore-swiper {
display: none !important;
}
}
/* Remove border/outline on anchor click/focus */
a:focus,
a:active,
a:hover {
outline: none !important;
border: none !important;
box-shadow: none !important;
}

/* If you want to keep accessibility but remove visual border */
a:focus-visible {
outline: none !important;
border: none !important;
}

/* Specific fix for email and location links in contact section */
.email-link,
.location-link {
outline: none !important;
border: none !important;
}

.email-link:focus,
.email-link:active,
.location-link:focus,
.location-link:active {
outline: none !important;
border: none !important;
box-shadow: none !important;
}
/* ===== FOOTER CONTENT - DESKTOP LAYOUT ===== */
.footer-content {
padding: 4rem var(--container-padding) 2rem;
background-color: #e2efe9;
display: flex; /* Changed from grid to flex */
justify-content: space-between; /* Logo left, Links right */
align-items: flex-start;
gap: 3rem;
max-width: 1400px;
margin: 0 auto;
padding-bottom: 3rem;
border-bottom: 1px solid rgba(122, 201, 67, 0.2);
}

.footer-brand {
flex: 0 0 auto; /* Don't grow, keep natural width */
text-align: left; /* Logo & text left aligned */
max-width: 320px;
}

.footer-brand img {
height: 40px;
margin-bottom: 1rem;
display: block;
}

.footer-brand p {
color: var(--primary-dark);
font-size: 0.95rem;
line-height: 1.5;
}

.footer-links {
flex: 1;
display: flex;
justify-content: flex-end; /* Links right aligned */
gap: 3rem;
}

.link-group {
min-width: 180px;
}

.link-group h4 {
color: var(--primary-dark);
margin-bottom: 1rem;
font-size: 1.1rem;
}

.link-group a {
display: block;
color: var(--primary-dark);
margin-bottom: 0.5rem;
transition: var(--transition-fast);
font-size: 0.95rem;
}

.link-group a:hover {
color: var(--accent);
transform: translateX(4px);
}

/* ===== MOBILE VIEW - CENTER ALIGN LOGO ===== */
@media (max-width: 992px) {
.footer-content {
flex-direction: column;
align-items: center; /* Center everything */
text-align: center;
gap: 2.5rem;
}

.footer-brand {
text-align: center; /* Logo & text centered */
max-width: 100%;
}

.footer-brand img {
margin: 0 auto 1rem; /* Center logo */
}

.footer-links {
justify-content: center; /* Links centered */
flex-wrap: wrap;
gap: 2rem;
}

.link-group {
min-width: 150px;
}
}

/* ===== EXTRA SMALL MOBILE ===== */
@media (max-width: 480px) {
.footer-content {
padding: 3rem 4% 1.5rem;
gap: 2rem;
}

.footer-links {
gap: 1.5rem;
}

.link-group {
min-width: 100%;
text-align: center;
}
}
@media (max-width: 480px) {
.footer-links {
display: flex;
flex-direction: row;
justify-content: space-around;
gap: 1.5rem;
flex-wrap: wrap;
}

.link-group {
flex: 1;
min-width: 120px;
max-width: 160px;
text-align: center;
}

.link-group h4 {
font-size: 1rem;
margin-bottom: 0.7rem;
}

.link-group a {
font-size: 0.825rem;
margin-bottom: 0.35rem;
}
}
.nav-links a.active {
color: var(--accent);
font-weight: 600;
}

.nav-links a.active::after {
width: 80%;
opacity: 1;
}

.nav-links a.active::before {
opacity: 1;
}
/* Mobile Menu Toggle - Hidden on Desktop */
.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 8px;
z-index: 1001;
}

.menu-toggle span {
width: 28px;
height: 3px;
background: #3e78c5;
border-radius: 2px;
transition: var(--transition-normal);
}

/* Mobile Menu Animation */
.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay */
.overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(8px);
opacity: 0;
pointer-events: none;
transition: var(--transition-normal);
z-index: 900;
}

.overlay.active {
opacity: 1;
pointer-events: auto;
}

/* Mobile Navigation */
@media (max-width: 992px) {
.menu-toggle {
display: flex; /* ✅ Show on Mobile */
}

.nav-links {
position: fixed;
top: 0;
right: -100%; /* ✅ Hidden by default */
width: 320px;
height: 100vh;
background: linear-gradient(120deg, #fff, rgba(144, 168, 211, 0.98));
backdrop-filter: blur(20px);
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2.5rem;
box-shadow: 0 8px 40px rgba(62, 111, 182, 0.4);
transition: var(--transition-slow);
padding: 2rem;
z-index: 1001;
}

.nav-links.active {
right: 0; /* ✅ Slide in when active */
}
}