/* ==================================================
   NISMA LNG — PREMIUM CORPORATE LNG PLATFORM
   Version: 6.0 | Final | Clean
================================================== */

/* ==================================================
   1. ROOT VARIABLES
================================================== */

:root {
    --nisma-dark: #071226;
    --nisma-dark-soft: #1b2a3a;
    --nisma-gold: #8b6f47;
    --nisma-gold-hover: #a38357;
    --nisma-bg: #fafaf8;
    --nisma-white: #ffffff;
    --nisma-border: rgba(7, 18, 38, 0.08);
    --nisma-text-soft: rgba(7, 18, 38, 0.72);
    --nisma-shadow: 0 20px 60px rgba(7, 18, 38, 0.08);
    --nisma-footer-text: rgba(255, 255, 255, 0.68);
    --nisma-footer-border: rgba(255, 255, 255, 0.06);
}

/* ==================================================
   2. RESET & GLOBALS
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: var(--nisma-bg);
    color: var(--nisma-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ==================================================
   3. CONTAINER SYSTEM
================================================== */

.nisma-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 42px;
}

.site-content{

padding-top:0;

}
/* ==================================================
   4. SECTION SYSTEM
================================================== */

.nisma-section {
    position: relative;
    padding: 100px 0;
    background: var(--nisma-bg);
    overflow: hidden;
}

.nisma-section-header {
    max-width: 760px;
    margin-bottom: 60px;
}

.nisma-section-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nisma-gold);
    margin-bottom: 18px;
}
.nisma-section-title {

    font-size: 52px;

    line-height: 1.06;

    letter-spacing: -2px;

    font-weight: 600;

    color: var(--nisma-dark);

    margin-bottom: 24px;

}
.nisma-section-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--nisma-text-soft);
    max-width: 680px;
}

/* ==================================================
   5. BUTTONS
================================================== */

.nisma-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 38px;
    background: var(--nisma-gold);
    color: var(--nisma-white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: 0.35s ease;
}

.nisma-btn:hover {
    background: var(--nisma-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 111, 71, 0.18);
}

/* ==================================================
   6. HEADER & NAVIGATION
================================================== */

.nisma-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}

.nisma-header-container {
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 42px;
}

.nisma-logo img {
    max-height: 55px;
    width: auto;
}

/* Desktop Menu */
.nisma-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nisma-menu a {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: var(--nisma-dark);
    transition: 0.35s ease;
}

.nisma-menu a:hover {
    color: var(--nisma-gold);
}

.nisma-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--nisma-gold);
    transition: 0.35s ease;
}

.nisma-menu a:hover::after {
    width: 100%;
}

/* Mobile Toggle */
.nisma-mobile-toggle {
    display: none;
    width: 34px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.nisma-mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--nisma-dark);
    border-radius: 20px;
}

/* Mobile Menu */
.nisma-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--nisma-white);
    padding: 120px 35px 40px;
    z-index: 99999;
    transition: 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
}

.nisma-mobile-menu.active {
    right: 0;
}

.nisma-mobile-nav {
    list-style: none;
}

.nisma-mobile-nav li {
    margin-bottom: 22px;
}

.nisma-mobile-nav a {
    font-size: 17px;
    font-weight: 500;
    color: var(--nisma-dark);
    transition: 0.3s ease;
}

.nisma-mobile-nav a:hover {
    color: var(--nisma-gold);
}

/* Overlay */
.nisma-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    z-index: 99998;
}

.nisma-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==================================================
   7. FLEET HERO SECTION
================================================== */

.fleet-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--nisma-dark);
}

.fleet-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.fleet-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(7, 18, 38, 0.75) 0%, rgba(7, 18, 38, 0.4) 50%, rgba(7, 18, 38, 0.2) 100%);
    z-index: 2;
}

.fleet-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
	padding-top:160px;
}

.fleet-hero h1 {
font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 600;
    color: var(--nisma-white);
    margin-bottom: 24px;
}

.fleet-hero p {
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto 32px;
}

/* ==================================================
   8. INTERACTIVE CARDS
================================================== */

.nisma-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.nisma-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--nisma-white);
    border: 1px solid var(--nisma-border);
    transition: 0.5s ease;
    cursor: pointer;
    box-shadow: var(--nisma-shadow);
    text-decoration: none;
    display: block;
}

.nisma-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(7, 18, 38, 0.14);
    border-color: rgba(139, 111, 71, 0.18);
}

.nisma-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nisma-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.4s ease;
}

.nisma-card:hover .nisma-card-image img {
    transform: scale(1.08);
}

.nisma-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 18, 38, 0.04) 0%, rgba(7, 18, 38, 0.18) 45%, rgba(7, 18, 38, 0.82) 100%);
    z-index: 2;
    transition: 0.4s ease;
}

.nisma-card-content {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 3;
    transition: 0.45s ease;
}

.nisma-card:hover .nisma-card-content {
    transform: translateY(-4px);
}

.nisma-card-subtitle {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 14px;
}

.nisma-card-title {
    font-size: 32px;
    line-height: 1.08;
    font-weight: 600;
    color: var(--nisma-white);
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.nisma-card-arrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--nisma-gold);
    transition: 0.35s ease;
}

.nisma-card:hover .nisma-card-arrow {
    transform: translateX(4px);
}

/* ==================================================
   9. FOOTER - FINAL VERSION
   - 6 أيقونات (3 × 3)
   - الشعار مكبر قليلاً
   - الفوتر مصغر بدون فراغات
   - المحتوى في المنتصف على الموبايل والتابلت
================================================== */

.nisma-footer {
    background: var(--nisma-dark);
    padding: 60px 0 0;
    margin-top: 0;
    position: relative;
}

.nisma-footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 42px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

/* Brand - شعار مكبر */
.footer-brand {
    max-width: 360px;
}

.footer-brand img {
    width: 200px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--nisma-footer-text);
}

/* Links Wrapper */
.footer-links-wrapper {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex: 1;
}

.footer-links h4 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nisma-gold);
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.86);
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--nisma-gold);
}

/* Email */
.footer-email {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.footer-email img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Social - 6 أيقونات (3 × 3) */
.footer-social-wrapper {
    display: flex;
    align-items: flex-start;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.35s ease;
}

.footer-social a:hover {
    background: var(--nisma-gold);
    border-color: var(--nisma-gold);
    transform: translateY(-3px);
}

.footer-social img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 50px;
    padding: 20px;
    border-top: 1px solid var(--nisma-footer-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.48);
}

/* ==================================================
   10. RESPONSIVE BREAKPOINTS
================================================== */

/* Tablet */
@media (max-width: 991px) {
    .nisma-container,
    .nisma-header-container {
        padding: 0 28px;
    }
    
    .nisma-header-container {
        height: 80px;
    }
    
    .nisma-logo img {
        max-height: 50px;
    }
    
    .nisma-menu {
        display: none;
    }
    
    .nisma-mobile-toggle {
        display: flex;
    }
    
    .nisma-section {
        padding: 70px 0;
    }
    
    .nisma-section-title {
        font-size: 46px;
    }
    
    .nisma-section-header {
        margin-bottom: 45px;
    }
    
    .fleet-hero {
        min-height: 90vh;
		
    }
    
    .fleet-hero h1 {
        font-size: 58px;
    }
    
    /* Cards */
    .nisma-cards-grid {
        gap: 20px;
    }
          
    .nisma-card-title {
        font-size: 26px;
    }
    
    /* Footer - Tablet */
    .nisma-footer {
        padding-top: 50px;
    }
    
    .nisma-footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand img {
        margin: 0 auto 20px;
    }
    
    .footer-links-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 45px;
        width: 100%;
    }
    
    .footer-links {
        text-align: center;
        min-width: 140px;
    }
    
    /* أيقونات 3 × 3 على التابلت */
    .footer-social-wrapper {
        width: 100%;
        justify-content: center;
    }
    
    .footer-social {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .footer-social a {
        width: 48px;
        height: 48px;
    }
    
    .footer-bottom {
        margin-top: 40px;
        padding: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .site-content {
        padding-top: 80px;
    }
    
    .nisma-container,
    .nisma-header-container {
        padding: 0 20px;
    }
    
    .nisma-header-container {
        height: 70px;
    }
    
    .nisma-logo img {
        max-height: 45px;
    }
    
    .nisma-section {
        padding: 50px 0;
    }
    
    .nisma-section-title {
        font-size: 32px;
        letter-spacing: -1px;
    }
    
    .nisma-section-text {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .nisma-section-header {
        margin-bottom: 35px;
    }
    
    .fleet-hero {
        min-height: 85vh;
        align-items: center;
    }
    
    .fleet-hero h1 {
        font-size: 28px;
        letter-spacing: -1px;
    }
    
    .fleet-hero p {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    /* Cards - 2 per row */
    .nisma-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
            
    .nisma-card-content {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }
    
    .nisma-card-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .nisma-card-subtitle {
        font-size: 10px;
        margin-bottom: 8px;
    }
    
    .nisma-card-arrow {
        font-size: 12px;
    }
    
    /* Footer - Mobile - كل المحتوى في المنتصف */
    .nisma-footer {
        padding-top: 40px;
    }
    
    .nisma-footer-container {
        padding: 0 20px;
        gap: 35px;
    }
    
    .footer-brand img {
        width: 170px;
    }
    
    .footer-brand p {
        font-size: 13px;
    }
    
    .footer-links-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .footer-links {
        text-align: center;
        width: 100%;
    }
    
    .footer-links a {
        margin-bottom: 10px;
        font-size: 13px;
        display: inline-block;
        margin-left: 8px;
        margin-right: 8px;
    }
    
    /* اسماء الصفحات بجوار بعض مع مسافات */
    .footer-links nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
    }
    
    .footer-links .footer-email {
        justify-content: center;
    }
    
    /* أيقونات 3 × 3 على الموبايل */
    .footer-social-wrapper {
        width: 100%;
        justify-content: center;
    }
    
    .footer-social {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }
    
    .footer-social a {
        width: 44px;
        height: 44px;
    }
    
    .footer-social img {
        width: 16px;
        height: 16px;
    }
    
    .footer-bottom {
        margin-top: 35px;
        padding: 16px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .nisma-section-title {
        font-size: 28px;
    }
    
    .fleet-hero {
        min-height: 80vh;
    }
    
    .fleet-hero h1 {
        font-size: 32px;
    }
        	  
    .nisma-card-title {
        font-size: 18px;
    }
    
    .nisma-card-subtitle {
        font-size: 9px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .footer-social a {
        width: 42px;
        height: 42px;
    }
    
    .footer-bottom {
        padding: 14px;
    }
}
/* ==================================================
   FOOTER FINAL COMPACT
================================================== */

.nisma-footer{

padding:45px 0 0;

}

.nisma-footer-container{

gap:45px;

}

/* تقليل الفراغات */

.footer-links-wrapper{

gap:65px;

}

/* السوشيال 3 × 2 */

.footer-social{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:12px;

}

/* الأيقونات */

.footer-social a{

width:48px;

height:48px;

}

.footer-social img{

width:18px;

height:18px;

}

/* تصغير الجزء السفلي */

.footer-bottom{

margin-top:35px;

padding:16px;

}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

.footer-social{

display:flex;

flex-wrap:wrap;

justify-content:center;

gap:14px;

}

}
/* ==================================================
   FOOTER FINAL RESPONSIVE
================================================== */

/* الكمبيوتر */
/* لا نلمس Layout الحالي نهائياً */

/* Resources */

.footer-links:nth-child(3){

min-width:170px;

}

/* Connect */

.footer-links:nth-child(4){

min-width:110px;

}

/* ==================================================
   TABLET + MOBILE
================================================== */

@media(max-width:991px){

/* Wrapper */

.footer-links-wrapper{

display:flex;

flex-direction:column;

align-items:center;

gap:30px;

}

/* كل قسم */

.footer-links{

width:100%;

text-align:center;

}

/* الروابط أفقية */

.footer-links nav{

display:flex !important;

justify-content:center;

align-items:center;

flex-wrap:wrap;

gap:10px 18px;

}

/* السوشيال تحت Connect */

.footer-social-wrapper{

width:100%;

display:flex;

justify-content:center;

margin-top:-10px;

}

/* 3 فوق 3 */

.footer-social{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:14px;

}

/* الأيقونات */

.footer-social a{

width:48px;

height:48px;

}

}
/* ==================================================
   GLOBAL HERO SYSTEM
================================================== */

.global-hero{

position:relative;

width:100%;

min-height:48vh;

margin-bottom:120px;

display:flex;

align-items:center;

justify-content:center;

overflow:hidden;

background:var(--nisma-dark);

}

.global-hero-image{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

object-fit:cover;

z-index:1;

}

.global-hero-overlay{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

background:linear-gradient(
90deg,
rgba(7,18,38,.82) 0%,
rgba(7,18,38,.48) 45%,
rgba(7,18,38,.25) 100%
);

z-index:2;

}

.global-hero-content{

position:relative;

z-index:3;

max-width:900px;

width:90%;

margin:auto;

text-align:center;

padding-top:100px;

}

.global-hero-label{

display:inline-block;

font-size:12px;

letter-spacing:2px;

text-transform:uppercase;

color:var(--nisma-gold);

margin-bottom:18px;

}

.global-hero h1{

font-size:clamp(38px,5vw,62px);

line-height:1.05;

letter-spacing:-2px;

font-weight:600;

color:var(--nisma-white);

margin-bottom:24px;

text-shadow:
0 10px 30px rgba(0,0,0,.35);

}

.global-hero p{

font-size:17px;

line-height:1.8;

color:rgba(255,255,255,.82);

max-width:720px;

margin:auto;

}

/* ==================================================
   GLOBAL CTA SYSTEM
================================================== */

.global-cta{

padding:120px 0;

background:var(--nisma-dark);

}

.global-cta-box{

max-width:900px;

margin:auto;

text-align:center;

}

.global-cta-label{

display:inline-block;

font-size:12px;

letter-spacing:2px;

text-transform:uppercase;

color:var(--nisma-gold);

margin-bottom:18px;

}

.global-cta h2{

font-size:clamp(34px,5vw,58px);

line-height:1.05;

letter-spacing:-2px;

color:var(--nisma-white);

margin-bottom:24px;

}

.global-cta p{

font-size:17px;

line-height:1.9;

color:rgba(255,255,255,.72);

max-width:720px;

margin:0 auto 38px;

}

/* ==================================================
   SECTION SYSTEM
================================================== */

.section-spacing{

padding:120px 0;

}

.section-header{

max-width:760px;

margin:0 auto 70px;

}

.section-header.center{

text-align:center;

}

.section-label{

display:inline-block;

font-size:12px;

letter-spacing:2px;

text-transform:uppercase;

color:var(--nisma-gold);

margin-bottom:18px;

}

.section-title{

font-size:clamp(34px,5vw,54px);

line-height:1.05;

letter-spacing:-2px;

font-weight:600;

color:var(--nisma-dark);

margin-bottom:24px;

}

.section-description{

font-size:17px;

line-height:1.9;

color:var(--nisma-text-soft);

}

/* ==================================================
   BUTTON SYSTEM
================================================== */

.nisma-button{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 34px;

background:var(--nisma-gold);

color:var(--nisma-white);

font-size:14px;

font-weight:600;

letter-spacing:.5px;

transition:.35s ease;

border:none;

cursor:pointer;

}

.nisma-button:hover{

background:var(--nisma-gold-hover);

transform:translateY(-3px);

}

/* ==================================================
   COMPANY SECTION
================================================== */

.company-content-section{

padding:0 0 120px;

}
.company-grid:first-child{

margin-top:60px;

}
.company-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.company-image-wrapper img{

width:100%;

border-radius:6px;

box-shadow:var(--nisma-shadow);

}

.company-features{

display:grid;

grid-template-columns:1fr;

gap:26px;

margin-top:40px;

}

.company-feature h3{

font-size:22px;

margin-bottom:12px;

color:var(--nisma-dark);

}

.company-feature p{

font-size:15px;

line-height:1.8;

color:var(--nisma-text-soft);

}
/* ==================================================
   FLEET SECTION
================================================== */

.fleet-content-section{

padding:120px 0;

}

.fleet-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:32px;

}

.fleet-item{

background:var(--nisma-white);

box-shadow:var(--nisma-shadow);

overflow:hidden;

transition:.35s ease;

}

.fleet-item:hover{

transform:translateY(-6px);

}

.fleet-item-image img{

width:100%;

height:280px;

object-fit:cover;

}

.fleet-item-content{

padding:32px;

}

.fleet-item-content h3{

font-size:24px;

margin-bottom:14px;

color:var(--nisma-dark);

}

.fleet-item-content p{

font-size:15px;

line-height:1.8;

color:var(--nisma-text-soft);

}

/* ==================================================
   PROJECTS SECTION
================================================== */

.projects-content-section{

padding:120px 0;

}

.projects-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:32px;

}

.project-card{

background:var(--nisma-white);

box-shadow:var(--nisma-shadow);

overflow:hidden;

transition:.35s ease;

}

.project-card:hover{

transform:translateY(-6px);

}

.project-card img{

width:100%;

height:280px;

object-fit:cover;

}

.project-card-content{

padding:32px;

}

.project-card-content h3{

font-size:24px;

margin-bottom:14px;

color:var(--nisma-dark);

}

.project-card-content p{

font-size:15px;

line-height:1.8;

color:var(--nisma-text-soft);

}

/* ==================================================
   PARTNERSHIPS SECTION
================================================== */

.partnerships-content-section{

padding:120px 0;

}

.partnership-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:32px;

}

.partnership-card{

padding:42px;

background:var(--nisma-white);

box-shadow:var(--nisma-shadow);

text-align:center;

transition:.35s ease;

}

.partnership-card:hover{

transform:translateY(-6px);

}

.partnership-icon{

margin-bottom:24px;

}

.partnership-icon img{

width:72px;

height:72px;

object-fit:contain;

}

.partnership-card h3{

font-size:24px;

margin-bottom:16px;

color:var(--nisma-dark);

}

.partnership-card p{

font-size:15px;

line-height:1.8;

color:var(--nisma-text-soft);

}
/* ==================================================
   FINANCIALS SECTION
================================================== */

.financials-content-section{

padding:120px 0;

}

.financial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:32px;

}

.financial-card{

padding:42px;

background:var(--nisma-white);

box-shadow:var(--nisma-shadow);

transition:.35s ease;

}

.financial-card:hover{

transform:translateY(-6px);

}

.financial-card h3{

font-size:24px;

margin-bottom:16px;

color:var(--nisma-dark);

}

.financial-card p{

font-size:15px;

line-height:1.8;

color:var(--nisma-text-soft);

}

/* ==================================================
   CAREERS SECTION
================================================== */

.careers-content-section{

padding:120px 0;

}

.careers-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:32px;

}

.career-card{

padding:42px;

background:var(--nisma-white);

box-shadow:var(--nisma-shadow);

transition:.35s ease;

}

.career-card:hover{

transform:translateY(-6px);

}

.career-card h3{

font-size:24px;

margin-bottom:16px;

color:var(--nisma-dark);

}

.career-card p{

font-size:15px;

line-height:1.8;

color:var(--nisma-text-soft);

}

/* ==================================================
   CONTACT SECTION
================================================== */

.contact-content-section{

padding:120px 0;

}

.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:flex-start;

}

.contact-items{

display:grid;

gap:28px;

margin-top:42px;

}

.contact-item h3{

font-size:22px;

margin-bottom:10px;

color:var(--nisma-dark);

}

.contact-item p{

font-size:15px;

line-height:1.8;

color:var(--nisma-text-soft);

}

.nisma-contact-form{

display:grid;

gap:20px;

}

.nisma-contact-form input,
.nisma-contact-form textarea{

width:100%;

padding:18px 22px;

border:1px solid var(--nisma-border);

background:var(--nisma-white);

font-size:15px;

font-family:inherit;

outline:none;

transition:.3s ease;

}

.nisma-contact-form textarea{

height:180px;

resize:none;

}

.nisma-contact-form input:focus,
.nisma-contact-form textarea:focus{

border-color:var(--nisma-gold);

}

/* ==================================================
   BLOG SECTION
================================================== */

.blog-content-section{

padding:120px 0;

}

.blog-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:32px;

}

.blog-card{

background:var(--nisma-white);

box-shadow:var(--nisma-shadow);

overflow:hidden;

transition:.35s ease;

}

.blog-card:hover{

transform:translateY(-6px);

}

.blog-image img{

width:100%;

height:280px;

object-fit:cover;

}

.blog-content{

padding:32px;

}

.blog-date{

display:block;

font-size:12px;

letter-spacing:1px;

text-transform:uppercase;

color:var(--nisma-gold);

margin-bottom:16px;

}

.blog-content h3{

font-size:24px;

line-height:1.2;

margin-bottom:16px;

}

.blog-content h3 a{

color:var(--nisma-dark);

text-decoration:none;

}

.blog-content p{

font-size:15px;

line-height:1.8;

color:var(--nisma-text-soft);

}

/* ==================================================
   POLICY SECTION
================================================== */

.policy-content-section{

padding:180px 0 120px;

}

.policy-header{

margin-bottom:60px;

}

.policy-title{

font-size:clamp(34px,5vw,54px);

line-height:1.05;

letter-spacing:-2px;

color:var(--nisma-dark);

}

.policy-content{

max-width:900px;

}

.policy-content p{

font-size:16px;

line-height:2;

color:var(--nisma-text-soft);

margin-bottom:24px;

}

.policy-content h2,
.policy-content h3{

margin:42px 0 18px;

color:var(--nisma-dark);

}
/* ==================================================
   RESPONSIVE SYSTEM
================================================== */

/* =========================
   TABLET
========================= */

@media(max-width:991px){

/* Sections */

.section-spacing,
.company-content-section,
.fleet-content-section,
.projects-content-section,
.partnerships-content-section,
.financials-content-section,
.careers-content-section,
.contact-content-section,
.blog-content-section,
.global-cta{

padding:90px 0;

}

/* Hero */

.global-hero{

min-height:75vh;

}

.global-hero-content{

padding-top:130px;

}

.global-hero h1{

font-size:52px;

}

/* Grids */

.company-grid,
.contact-grid{

grid-template-columns:1fr;

gap:50px;

}

.fleet-grid,
.projects-grid,
.partnership-grid,
.financial-grid,
.careers-grid,
.blog-grid{

grid-template-columns:repeat(2,1fr);

}

/* Policy */

.policy-content-section{

padding:160px 0 90px;

}

}

/* =========================
   MOBILE
========================= */

@media(max-width:767px){

/* Sections */

.section-spacing,
.company-content-section,
.fleet-content-section,
.projects-content-section,
.partnerships-content-section,
.financials-content-section,
.careers-content-section,
.contact-content-section,
.blog-content-section,
.global-cta{

padding:70px 0;

}

/* Hero */

.global-hero{

min-height:68vh;

}

.global-hero-content{

padding-top:120px;

width:92%;

}

.global-hero h1{

font-size:36px;

line-height:1.08;

letter-spacing:-1px;

}

.global-hero p{

font-size:15px;

line-height:1.8;

}

/* Section */

.section-title{

font-size:34px;

line-height:1.08;

letter-spacing:-1px;

}

.section-description{

font-size:15px;

line-height:1.9;

}

/* Grids */

.fleet-grid,
.projects-grid,
.partnership-grid,
.financial-grid,
.careers-grid,
.blog-grid{

grid-template-columns:1fr;

}

/* Cards */

.fleet-item-content,
.project-card-content,
.partnership-card,
.financial-card,
.career-card,
.blog-content{

padding:26px;

}

/* Images */

.fleet-item-image img,
.project-card img,
.blog-image img{

height:240px;

}

/* Contact */

.contact-items{

margin-top:34px;

}

/* Buttons */

.nisma-button{

width:100%;

}

/* Policy */

.policy-content-section{

padding:140px 0 70px;

}

.policy-title{

font-size:34px;

}

.policy-content p{

font-size:15px;

line-height:1.9;

}

}
/* ==================================================

.single-post-body h2,
.single-post-body h3{

margin:40px 0 20px;

color:var(--nisma-dark);

}

.single-post-body p{

margin-bottom:24px;

}

/* ==================================================
   BLOG RESPONSIVE
================================================== */

@media(max-width:991px){

.blog-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.nisma-blog-page,
.single-post-page{

padding:150px 0 80px;

}

.blog-grid{

grid-template-columns:1fr;

}

.blog-content{

padding:24px;

}

.blog-content h2{

font-size:22px;

}

.single-post-header h1{

font-size:36px;

letter-spacing:-1px;

}

.single-post-body{

font-size:16px;

line-height:1.9;

}

}
/* ==================================================
   POLICY PAGES
================================================== */

.nisma-policy-page{

padding:180px 0 120px;

background:#fff;

}

.policy-wrapper{

max-width:860px;

margin:0 auto;

}

.policy-header{

padding-bottom:40px;

margin-bottom:50px;

border-bottom:1px solid rgba(0,0,0,0.08);

}

.policy-updated{

display:block;

font-size:13px;

letter-spacing:1px;

text-transform:uppercase;

color:var(--nisma-gold);

margin-bottom:18px;

}

.policy-title{

font-size:clamp(38px,5vw,62px);

line-height:1.05;

letter-spacing:-2px;

color:var(--nisma-dark);

}

.policy-content{

font-size:17px;

line-height:2;

color:var(--nisma-text-soft);

}

.policy-content h2{

font-size:34px;

line-height:1.2;

margin:60px 0 24px;

color:var(--nisma-dark);

}

.policy-content h3{

font-size:26px;

line-height:1.3;

margin:40px 0 18px;

color:var(--nisma-dark);

}

.policy-content p{

margin-bottom:24px;

}

.policy-content ul,
.policy-content ol{

padding-left:24px;

margin-bottom:28px;

}

.policy-content li{

margin-bottom:14px;

}

.policy-content a{

color:var(--nisma-gold);

text-decoration:none;

}

/* ==================================================
   POLICY RESPONSIVE
================================================== */

@media(max-width:767px){

.nisma-policy-page{

padding:150px 0 80px;

}

.policy-title{

font-size:38px;

letter-spacing:-1px;

}

.policy-content{

font-size:16px;

line-height:1.9;

}

.policy-content h2{

font-size:28px;

}

.policy-content h3{

font-size:22px;

}

}
.contact-email-link{

display:inline-block;

margin-top:22px;

font-size:15px;

font-weight:600;

color:var(--nisma-gold);

word-break:break-word;

transition:.3s ease;

}

.contact-email-link:hover{

opacity:.7;

}
.single-featured-image{

margin-bottom:50px;

overflow:hidden;

border-radius:6px;

}

.single-featured-image img{

width:100%;

height:auto;

display:block;

}

.single-post-body{

font-size:17px;

line-height:2;

color:var(--nisma-text-soft);

}

.single-post-body h2{

font-size:34px;

line-height:1.2;

margin:60px 0 24px;

color:var(--nisma-dark);

}

.single-post-body h3{

font-size:26px;

line-height:1.3;

margin:40px 0 18px;

color:var(--nisma-dark);

}

.single-post-body p{

margin-bottom:24px;

}

.single-post-body ul,
.single-post-body ol{

padding-left:24px;

margin-bottom:28px;

}

.single-post-body li{

margin-bottom:14px;

}

.single-post-body a{

color:var(--nisma-gold);

text-decoration:none;

}

@media(max-width:767px){

.single-post-body{

font-size:16px;

line-height:1.9;

}

.single-post-body h2{

font-size:28px;

}

.single-post-body h3{

font-size:22px;

}

}
.nisma-pagination{

display:flex;

justify-content:center;

margin-top:70px;

gap:12px;

flex-wrap:wrap;

}

.nisma-pagination .page-numbers{

display:flex;

align-items:center;

justify-content:center;

min-width:48px;

height:48px;

padding:0 18px;

background:var(--nisma-white);

border:1px solid var(--nisma-border);

color:var(--nisma-dark);

font-size:14px;

font-weight:500;

transition:.3s ease;

text-decoration:none;

}

.nisma-pagination .page-numbers.current,
.nisma-pagination .page-numbers:hover{

background:var(--nisma-gold);

border-color:var(--nisma-gold);

color:#fff;

}
/* Count-up Stats Section */
.stats-grid {
    background: var(--color-gray-50);
    padding: 2rem;
    border-radius: 0;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-gray-900);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gray-500);
    margin-top: 0.5rem;
}

.stat-sub {
    font-size: 0.65rem;
    color: var(--color-gray-400);
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .project-structure {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ============================================
   NISMA LNG - MAIN CSS with Animations
   Development-stage LNG maritime platform
   ============================================ */

:root {
    --color-white: #ffffff;
    --color-black: #111111;
    --color-gray-50: #f8f8f8;
    --color-gray-100: #f0f0f0;
    --color-gray-200: #e5e5e5;
    --color-gray-300: #cccccc;
    --color-gray-400: #999999;
    --color-gray-500: #666666;
    --color-gray-600: #444444;
    --color-gray-700: #333333;
    --color-gray-800: #222222;
    --color-gray-900: #111111;
    --color-navy: #1a2a4f;
    --color-slate: #2c3e50;
    
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    --container-width: 1280px;
    --container-padding: 2rem;
    --transition-slow: all 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --transition-medium: all 0.4s ease-out;
    --transition-fast: all 0.2s ease;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Classes */
.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scale {
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-slide {
    animation: slideIn 0.8s ease-out forwards;
}

/* Stagger Children */
.stagger-children > * {
    opacity: 0;
}

.stagger-children > *:nth-child(1) { animation: fadeInUp 0.5s ease-out 0.1s forwards; }
.stagger-children > *:nth-child(2) { animation: fadeInUp 0.5s ease-out 0.2s forwards; }
.stagger-children > *:nth-child(3) { animation: fadeInUp 0.5s ease-out 0.3s forwards; }
.stagger-children > *:nth-child(4) { animation: fadeInUp 0.5s ease-out 0.4s forwards; }
.stagger-children > *:nth-child(5) { animation: fadeInUp 0.5s ease-out 0.5s forwards; }
.stagger-children > *:nth-child(6) { animation: fadeInUp 0.5s ease-out 0.6s forwards; }

/* Hover Effects */
.hover-lift {
    transition: var(--transition-medium);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hover-glow {
    transition: var(--transition-medium);
}

.hover-glow:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.hover-border {
    transition: var(--transition-medium);
}

.hover-border:hover {
    border-color: var(--color-gray-700);
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-gray-800);
    background: var(--color-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-gray-600);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-spacing {
    padding: 5rem 0;
}

.section-spacing-sm {
    padding: 3rem 0;
}

.section-spacing-lg {
    padding: 6rem 0;
}

/* Section Headers with Animation */
.section-header {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.section-header.center {
    text-align: center;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gray-500);
    display: inline-block;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 1px;
    background: var(--color-gray-400);
    transform: translateY(-50%);
}

.section-label.center::before {
    display: none;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1rem;
    color: var(--color-gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Systems */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Cards with Animations */
.phase-card,
.financial-card,
.partner-category,
.revenue-card,
.career-card,
.project-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    padding: 2rem;
    transition: var(--transition-medium);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.phase-card:hover,
.financial-card:hover,
.partner-category:hover,
.revenue-card:hover,
.career-card:hover,
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gray-300);
}

/* Icon Styles */
.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.icon-small {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Stats Grid with Counters */
.stats-grid {
    background: var(--color-gray-50);
    padding: 2.5rem;
    border-radius: 0;
}

.stat-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--color-gray-900);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gray-500);
    margin-top: 0.5rem;
}

.stat-sub {
    font-size: 0.65rem;
    color: var(--color-gray-400);
    margin-top: 0.25rem;
}

/* Image Wrapper with Hover */
.company-image-wrapper,
.section-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.company-image-wrapper img,
.section-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-slow);
}

.company-image-wrapper:hover img,
.section-image:hover img {
    transform: scale(1.02);
}

.image-caption {
    font-size: 0.7rem;
    color: var(--color-gray-400);
    text-align: center;
    display: block;
    margin-top: 0.5rem;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    background: var(--color-gray-100);
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    color: var(--color-gray-500);
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

/* Hero Section with Parallax */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    margin-top: 60px;
    overflow: hidden;
}

.hero-desktop,
.hero-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease-out;
}

.hero-section:hover .hero-desktop {
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gray-300);
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-gray-200);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1rem;
}

.hero-stat {
    text-align: left;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 500;
    display: block;
    color: var(--color-white);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-gray-300);
    letter-spacing: 0.5px;
}

/* Corporate Structure Diagram */
.corporate-structure {
    background: var(--color-gray-50);
    padding: 1.5rem;
    border-left: 3px solid var(--color-gray-700);
}

.structure-diagram {
    margin-top: 1rem;
}

.structure-level {
    padding: 0.75rem;
    background: var(--color-gray-100);
    border-left: 3px solid var(--color-gray-600);
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.structure-level:hover {
    background: var(--color-gray-200);
    transform: translateX(4px);
}

/* Partner Status */
.partner-status {
    font-size: 0.7rem;
    color: var(--color-gray-400);
    font-style: italic;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-gray-200);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-gray-300);
    background: transparent;
    font-size: 0.875rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-medium);
}

.btn:hover {
    background: var(--color-gray-900);
    color: var(--color-white);
    border-color: var(--color-gray-900);
    transform: translateY(-2px);
}

/* Contact Form */
.nisma-contact-form input,
.nisma-contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-gray-200);
    background: var(--color-white);
    font-family: var(--font-sans);
    transition: var(--transition-fast);
}

.nisma-contact-form input:focus,
.nisma-contact-form textarea:focus {
    outline: none;
    border-color: var(--color-gray-600);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.nisma-button {
    width: 100%;
    padding: 0.875rem;
    background: var(--color-gray-900);
    color: var(--color-white);
    border: none;
    font-size: 0.875rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-medium);
}

.nisma-button:hover {
    background: var(--color-gray-700);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-spacing {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-section {
        height: 70vh;
        min-height: 550px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 1.5rem;
    }
    
    .phase-card,
    .financial-card,
    .partner-category {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .hero-stat {
        text-align: center;
    }
}
/* ============================================
   NISMA LNG - RESPONSIVE & COLOR FIXES
   Updated with #8b6f47 brand color
   ============================================ */

/* Brand Color */
:root {
    --color-brand: #8b6f47;
    --color-brand-light: #a8885a;
    --color-brand-dark: #6b5535;
    --color-text-dark: #1a1a1a;
    --color-text-gray: #666666;
    --color-border: #e5e5e5;
    --color-bg-alt: #f8f8f8;
}

/* Brand Color Applications */
.section-label {
    color: var(--color-brand);
}

.section-label::before {
    background: var(--color-brand);
}

.card-icon,
.stat-icon,
.phase-number,
.icon-small {
    color: var(--color-brand);
}

.stat-number {
    color: var(--color-text-dark) !important;
}

.hero-stat .stat-number {
    color: var(--color-white) !important;
}

.btn:hover {
    background: var(--color-brand);
    border-color: var(--color-brand);
}

.nisma-button {
    background: var(--color-brand);
}

.nisma-button:hover {
    background: var(--color-brand-dark);
}

.highlight-text {
    color: var(--color-brand);
}

.structure-level {
    border-left-color: var(--color-brand);
}

/* ============================================
   FIX COUNTER NUMBERS COLOR
   ============================================ */
.stats-grid .stat-number {
    color: var(--color-text-dark) !important;
    font-size: 2.5rem;
    font-weight: 500;
}

.stats-grid {
    background: var(--color-bg-alt);
}

.stat-label {
    color: var(--color-text-gray);
}

.stat-sub {
    color: #999999;
}

/* ============================================
   RESPONSIVE STYLES - MOBILE FIRST
   ============================================ */

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    
    /* General */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section-spacing {
        padding: 2rem 0;
    }
    
    .section-spacing-lg {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.875rem;
        padding: 0 0.5rem;
    }
    
    /* Grid Systems - Stack on mobile */
    .company-grid,
    .company-grid.section-spacing,
    .grid-2,
    .grid-3,
    .grid-4,
    .financial-grid,
    .fleet-grid,
    .projects-grid,
    .careers-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        display: grid !important;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        padding: 1rem !important;
    }
    
    .stats-grid .stat-number {
        font-size: 1.75rem !important;
    }
    
    .stat-label {
        font-size: 0.65rem !important;
    }
    
    .stat-sub {
        font-size: 0.6rem !important;
    }
    
    /* Hero Section */
    .hero-section {
        height: auto !important;
        min-height: 500px !important;
        padding: 2rem 0 !important;
        margin-top: 60px !important;
    }
    
    .hero-content {
        padding: 0 1rem !important;
        text-align: center !important;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .hero-description {
        font-size: 0.875rem !important;
    }
    
    .hero-stats {
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: center !important;
    }
    
    .hero-stat {
        text-align: center !important;
    }
    
    .hero-stat .stat-number {
        font-size: 1.25rem !important;
    }
    
    .hero-stat .stat-label {
        font-size: 0.65rem !important;
    }
    
    /* Cards */
    .phase-card,
    .financial-card,
    .partner-category,
    .revenue-card,
    .career-card,
    .project-card {
        padding: 1rem !important;
    }
    
    .phase-card h3,
    .financial-card h3,
    .partner-category h3 {
        font-size: 1rem !important;
    }
    
    .phase-card li,
    .financial-card p,
    .partner-category p {
        font-size: 0.8rem !important;
    }
    
    /* SPV Items */
    .spv-grid {
        grid-template-columns: 1fr !important;
    }
    
    .spv-item {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1rem !important;
    }
    
    .spv-item[style*="grid-column: span 2"] {
        grid-column: auto !important;
        max-width: 100% !important;
    }
    
    /* Project Structure Icons */
    .project-structure {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    .structure-icon-card {
        padding: 0.75rem !important;
    }
    
    .structure-icon-card > div:first-child {
        font-size: 1.5rem !important;
    }
    
    .structure-icon-card > div:nth-child(2) {
        font-size: 0.7rem !important;
    }
    
    /* Key Parameters */
    .key-parameters {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    .param-card {
        padding: 1rem !important;
    }
    
    .param-card > div:first-child {
        font-size: 1.5rem !important;
    }
    
    .param-card > div:nth-child(2) {
        font-size: 1.25rem !important;
    }
    
    /* Image Wrappers */
    .company-image-wrapper,
    .section-image {
        margin: 0 !important;
        order: -1 !important;
    }
    
    .company-image-wrapper:first-child {
        order: 0 !important;
    }
    
    /* Corporate Structure */
    .corporate-structure {
        padding: 0.75rem !important;
    }
    
    .structure-level {
        margin-left: 0 !important;
        padding: 0.5rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Deal Summary */
    .deal-summary {
        padding: 0.75rem !important;
    }
    
    .deal-summary p {
        font-size: 0.75rem !important;
        margin: 0.25rem 0 !important;
    }
    
    /* Leadership Card */
    .leadership-card {
        padding: 1rem !important;
        max-width: 90% !important;
    }
    
    /* Contact Form */
    .contact-form-wrapper {
        margin-top: 1rem !important;
    }
    
    .nisma-contact-form input,
    .nisma-contact-form textarea {
        padding: 0.6rem !important;
        font-size: 0.875rem !important;
    }
    
    .direct-contact {
        max-width: 90% !important;
        padding: 1rem !important;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .footer-menu {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
    }
    
    .disclaimer-note {
        font-size: 0.6rem !important;
        padding: 0 0.5rem !important;
    }
    
    /* Header */
    .site-header .container {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .logo {
        font-size: 1rem !important;
    }
    
    /* Section Header */
    .section-header {
        margin-bottom: 1.5rem !important;
    }
    
    .section-label {
        font-size: 0.65rem !important;
        letter-spacing: 2px !important;
    }
    
    /* Animation adjustments for mobile */
    .animate-fade-up,
    .animate-fade-left,
    .animate-fade-right,
    .animate-scale,
    .animate-slide {
        animation-duration: 0.5s !important;
    }
    
    /* Hide some decorations on mobile */
    .section-label::before {
        width: 0.75rem !important;
    }
    
    /* Button full width on mobile */
    .btn,
    .nisma-button {
        width: 100% !important;
        text-align: center !important;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    .project-structure {
        grid-template-columns: 1fr !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .phase-card ul li,
    .financial-card p {
        font-size: 0.75rem !important;
    }
    
    .stat-number.counter {
        font-size: 1.5rem !important;
    }
}

/* Tablet (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .project-structure {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .key-parameters {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1280px;
    }
}

/* ============================================
   ADDITIONAL TOUCHES
   ============================================ */

/* Smooth transitions for all interactive elements */
a, button, .btn, .nisma-button, .phase-card, .financial-card, 
.partner-category, .project-card, .career-card, .spv-item,
.structure-level, .korea-item, .stat-item {
    transition: all 0.3s ease;
}

/* Hover effects for cards on desktop only */
@media (min-width: 769px) {
    .phase-card:hover,
    .financial-card:hover,
    .partner-category:hover,
    .project-card:hover,
    .career-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
    
    .hover-lift:hover {
        transform: translateY(-3px);
    }
}

/* Image lazy loading fade */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.4s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Status badge */
.status-badge {
    background: var(--color-bg-alt);
    color: var(--color-text-gray);
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    display: inline-block;
}

/* Partner status */
.partner-status {
    color: var(--color-brand);
    font-style: italic;
}

/* Brand color for numbers in stats */
.stat-number {
    color: var(--color-text-dark);
}

/* Footer */
.site-footer {
    background: var(--color-bg-alt);
    border-top-color: var(--color-border);
}

.disclaimer-note {
    color: #999999;
}
/* ============================================
   HOME PAGE - HERO VIDEO & CARDS
   ============================================ */

/* Hero Video Section */
.hero-video-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Badge */
.hero-badge {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.hero-badge-text {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(139, 111, 71, 0.2);
    border: 1px solid rgba(139, 111, 71, 0.5);
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--color-white);
    backdrop-filter: blur(4px);
}

/* Hero Title */
.hero-main-title {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.hero-main-title .highlight {
    color: var(--color-brand);
    font-weight: 500;
}

/* Hero Description */
.hero-description-text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--color-brand);
    font-family: var(--font-serif);
}

.hero-stat-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 0.25rem;
}

.hero-stat-sub {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.2rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.hero-btn {
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-btn-primary {
    background: var(--color-brand);
    color: var(--color-white);
    border: none;
}

.hero-btn-primary:hover {
    background: var(--color-brand-dark);
    transform: translateY(-2px);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-btn-secondary:hover {
    border-color: var(--color-brand);
    background: rgba(139, 111, 71, 0.1);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    display: block;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    font-size: 1.25rem;
    color: var(--color-brand);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ============================================
   CARDS SECTION - 6 CARDS GRID
   ============================================ */
.cards-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.cards-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Premium Card Styles */
.premium-card {
    position: relative;
    display: block;
    height: 280px;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    background: var(--color-gray-900);
}

.nisma-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nisma-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-card:hover .nisma-card-image img {
    transform: scale(1.05);
}

.card-icon-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(139, 111, 71, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
}

.card-icon {
    font-size: 1.25rem;
    color: var(--color-white);
}

.premium-card:hover .card-icon-overlay {
    transform: scale(1.1);
    background: var(--color-brand);
}

.nisma-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.nisma-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 3;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.premium-card:hover .nisma-card-content {
    transform: translateY(-5px);
}

.card-subtitle {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-brand);
    display: block;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-white);
    margin: 0 0 0.75rem;
    font-family: var(--font-serif);
}

.card-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.premium-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.arrow-text {
    font-size: 0.75rem;
    color: var(--color-brand);
    letter-spacing: 1px;
}

.arrow-icon {
    font-size: 0.875rem;
    color: var(--color-brand);
    transition: transform 0.3s ease;
}

.premium-card:hover .arrow-icon {
    transform: translateX(5px);
}

/* ============================================
   HOME PAGE RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero-main-title {
        font-size: 2.75rem;
    }
    
    .hero-stats-row {
        gap: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.75rem;
    }
    
    .cards-grid-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .premium-card {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-video-section {
        height: auto;
        min-height: 100vh;
        padding: 4rem 0;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-description-text {
        font-size: 0.875rem;
        padding: 0 1rem;
    }
    
    .hero-stats-row {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-btn {
        width: 80%;
        text-align: center;
    }
    
    .cards-grid-6 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .premium-card {
        height: 220px;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .cards-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .premium-card {
        height: 260px;
    }
}
/* ============================================
   HOME PAGE - MOBILE FIXES
   ============================================ */

/* Hero Video Section - Mobile Fix */
@media (max-width: 768px) {
    
    .hero-video-section {
        position: relative;
        min-height: 100vh;
        height: auto;
        padding: 6rem 1rem 4rem 1rem;
        display: flex;
        align-items: center;
        margin-top: 60px;
    }
    
    .hero-background-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 100%);
    }
    
    .hero-content-wrapper {
        position: relative;
        z-index: 3;
        text-align: center;
        padding: 0;
        width: 100%;
    }
    
    /* Hero Badge */
    .hero-badge {
        margin-bottom: 1rem;
    }
    
    .hero-badge-text {
        font-size: 0.6rem;
        padding: 0.25rem 0.75rem;
        letter-spacing: 1px;
    }
    
    /* Hero Title - أصغر على الهاتف */
    .hero-main-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
        word-wrap: break-word;
    }
    
    .hero-main-title br {
        display: none;
    }
    
    .hero-main-title .highlight {
        display: inline-block;
    }
    
    /* Hero Description - أصغر */
    .hero-description-text {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
        padding: 0 0.5rem !important;
        color: rgba(255,255,255,0.8);
    }
    
    /* Stats Row - تنسيق مختلف على الهاتف */
    .hero-stats-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-stat-item {
        text-align: center;
        background: rgba(0,0,0,0.4);
        padding: 0.75rem 0.5rem;
        border-radius: 0;
        backdrop-filter: blur(4px);
    }
    
    .hero-stat-number {
        font-size: 1.5rem !important;
    }
    
    .hero-stat-label {
        font-size: 0.6rem !important;
        letter-spacing: 0.5px;
    }
    
    .hero-stat-sub {
        font-size: 0.55rem !important;
    }
    
    /* Buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
        text-align: center;
    }
    
    /* Scroll Indicator - أخفيه على الهاتف تماماً */
    .hero-scroll-indicator {
        display: none !important;
    }
}

/* للموبايل الصغير جداً (480px) */
@media (max-width: 480px) {
    .hero-video-section {
        padding: 5rem 0.75rem 3rem 0.75rem;
    }
    
    .hero-main-title {
        font-size: 1.25rem !important;
    }
    
    .hero-description-text {
        font-size: 0.7rem !important;
    }
    
    .hero-stats-row {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
    
    .hero-stat-item {
        padding: 0.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.25rem !important;
    }
    
    .hero-btn {
        max-width: 200px;
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
}

/* ============================================
   CARDS SECTION - MOBILE FIX
   ============================================ */
@media (max-width: 768px) {
    .cards-section {
        padding: 2rem 0 !important;
    }
    
    .cards-grid-6 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 1rem;
    }
    
    .premium-card {
        height: 200px !important;
    }
    
    .card-icon-overlay {
        width: 32px !important;
        height: 32px !important;
        top: 0.75rem !important;
        right: 0.75rem !important;
    }
    
    .card-icon {
        font-size: 1rem !important;
    }
    
    .nisma-card-content {
        padding: 1rem !important;
    }
    
    .card-subtitle {
        font-size: 0.55rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .card-title {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .card-arrow {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
    
    .arrow-text {
        font-size: 0.65rem !important;
    }
    
    /* Section Header */
    .nisma-section-header {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .nisma-section-subtitle {
        font-size: 0.6rem !important;
    }
    
    .nisma-section-title {
        font-size: 1.25rem !important;
    }
    
    .nisma-section-text {
        font-size: 0.75rem !important;
        padding: 0 0.5rem;
    }
}

/* Tablet Fix (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .hero-main-title {
        font-size: 2.5rem !important;
    }
    
    .hero-description-text {
        font-size: 0.95rem !important;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats-row {
        gap: 1.5rem;
    }
    
    .cards-grid-6 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .premium-card {
        height: 240px !important;
    }
}

/* التأكد من ظهور الخلفية بشكل جيد */
.hero-background-video {
    object-fit: cover;
}

/* تحسين القراءة على الهاتف */
@media (max-width: 768px) {
    .hero-content-wrapper {
        background: rgba(0,0,0,0.3);
        border-radius: 0;
    }
    
    .hero-stat-item {
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(4px);
    }
}

/* إصلاح مشكلة تغطية الكلام للخلفية */
@media (max-width: 768px) {
    .hero-video-section {
        min-height: 100vh;
    }
    
    .hero-content-wrapper {
        width: 100%;
        max-width: 100%;
    }
}
/* ============================================
   CARDS SECTION - MOBILE (2 COLUMNS)
   ============================================ */

/* Default: 3 columns on desktop */
.cards-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Tablet: 2 columns */
@media (min-width: 769px) and (max-width: 992px) {
    .cards-grid-6 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .premium-card {
        height: 240px !important;
    }
}

/* Mobile: 2 columns (جنب بعض) */
@media (max-width: 768px) {
    .cards-grid-6 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        padding: 0 0.75rem !important;
    }
    
    .premium-card {
        height: 180px !important;
        margin: 0 !important;
    }
    
    .nisma-card-image img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .card-icon-overlay {
        width: 28px !important;
        height: 28px !important;
        top: 0.5rem !important;
        right: 0.5rem !important;
    }
    
    .card-icon {
        font-size: 0.85rem !important;
    }
    
    .nisma-card-content {
        padding: 0.75rem !important;
    }
    
    .card-subtitle {
        font-size: 0.5rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 0.2rem !important;
    }
    
    .card-title {
        font-size: 0.85rem !important;
        margin-bottom: 0.35rem !important;
    }
    
    .card-arrow {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
    
    .arrow-text {
        font-size: 0.55rem !important;
    }
    
    .arrow-icon {
        font-size: 0.65rem !important;
    }
    
    /* Section Header */
    .cards-section {
        padding: 2rem 0 !important;
    }
    
    .nisma-section-header {
        padding: 0 0.75rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .nisma-section-subtitle {
        font-size: 0.55rem !important;
    }
    
    .nisma-section-title {
        font-size: 1.15rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .nisma-section-text {
        font-size: 0.7rem !important;
        padding: 0 0.5rem !important;
    }
}

/* Small Mobile (480px and below) - still 2 columns but smaller */
@media (max-width: 480px) {
    .cards-grid-6 {
        gap: 0.5rem !important;
        padding: 0 0.5rem !important;
    }
    
    .premium-card {
        height: 160px !important;
    }
    
    .card-icon-overlay {
        width: 24px !important;
        height: 24px !important;
        top: 0.35rem !important;
        right: 0.35rem !important;
    }
    
    .card-icon {
        font-size: 0.7rem !important;
    }
    
    .nisma-card-content {
        padding: 0.5rem !important;
    }
    
    .card-subtitle {
        font-size: 0.45rem !important;
    }
    
    .card-title {
        font-size: 0.75rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .arrow-text {
        font-size: 0.5rem !important;
    }
    
    .arrow-icon {
        font-size: 0.55rem !important;
    }
}
/* ============================================
   FIXES - HERO, CARDS, MOBILE, SPACING
   Added at the end of file
   ============================================ */

/* Fix white space between header and hero */
.hero-video-section {
    margin-top: 0 !important;
}

/* Remove scroll indicator text */
.hero-scroll-indicator {
    display: none !important;
}

/* Make cards bigger on desktop */
@media (min-width: 993px) {
    .cards-grid-6 {
        max-width: 1400px !important;
        gap: 2rem !important;
        margin: 0 auto !important;
        padding: 0 2rem !important;
    }
    
    .premium-card {
        height: 340px !important;
    }
    
    .card-title {
        font-size: 1.5rem !important;
    }
}

/* Mobile: Cards 2 columns with space */
@media (max-width: 768px) {
    .cards-grid-6 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        padding: 0 1rem !important;
    }
    
    .premium-card {
        height: 190px !important;
    }
    
    .card-icon-overlay {
        width: 30px !important;
        height: 30px !important;
        top: 0.5rem !important;
        right: 0.5rem !important;
    }
    
    .card-icon {
        font-size: 0.9rem !important;
    }
    
    .nisma-card-content {
        padding: 0.75rem !important;
    }
    
    .card-subtitle {
        font-size: 0.5rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .card-title {
        font-size: 0.85rem !important;
        margin-bottom: 0.35rem !important;
    }
    
    .card-arrow {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
    
    .arrow-text {
        font-size: 0.55rem !important;
    }
    
    .arrow-icon {
        font-size: 0.6rem !important;
    }
    
    /* Fix hero spacing */
    .hero-video-section {
        min-height: auto !important;
        padding: 3rem 1rem !important;
    }
    
    .hero-main-title {
        font-size: 1.5rem !important;
    }
    
    .hero-description-text {
        font-size: 0.8rem !important;
    }
    
    .hero-stats-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    .hero-stat-number {
        font-size: 1.25rem !important;
    }
    
    .hero-stat-label {
        font-size: 0.55rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero-btn {
        width: 80%;
        max-width: 220px;
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .cards-grid-6 {
        gap: 0.75rem !important;
        padding: 0 0.75rem !important;
    }
    
    .premium-card {
        height: 160px !important;
    }
    
    .card-title {
        font-size: 0.75rem !important;
    }
    
    .card-subtitle {
        font-size: 0.45rem !important;
    }
}
/* ============================================
   CARDS FIX - COLORS, SPACING, MOBILE
   ============================================ */

/* Card Colors Fix - استخدام اللون #8b6f47 */
.card-subtitle,
.nisma-card-subtitle {
    color: #8b6f47 !important;
}

.card-arrow .arrow-text,
.card-arrow .arrow-icon {
    color: #8b6f47 !important;
}

.premium-card:hover .card-icon-overlay {
    background: #8b6f47 !important;
}

/* Desktop Cards - أكبر حجماً */
@media (min-width: 993px) {
    .cards-grid-6 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1400px;
        margin: 2rem auto 0;
        padding: 0 2rem;
    }
    
    .premium-card {
        height: 360px;
        border-radius: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .premium-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    
    .card-title {
        font-size: 1.75rem !important;
        font-weight: 500;
    }
    
    .card-subtitle {
        font-size: 0.75rem !important;
        letter-spacing: 2px;
    }
}

/* Tablet Cards */
@media (min-width: 769px) and (max-width: 992px) {
    .cards-grid-6 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .premium-card {
        height: 280px;
    }
    
    .card-title {
        font-size: 1.35rem !important;
    }
}

/* Mobile Cards - 2 columns with space, not touching */
@media (max-width: 768px) {
    .cards-grid-6 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
        padding: 0 1rem !important;
    }
    
    .premium-card {
        height: 210px !important;
        border-radius: 0 !important;
        overflow: hidden !important;
    }
    
    /* Add margin between cards */
    .nisma-card {
        margin: 0 !important;
    }
    
    .card-title {
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        margin-bottom: 0.4rem !important;
    }
    
    .card-subtitle {
        font-size: 0.6rem !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 0.3rem !important;
    }
    
    .nisma-card-content {
        padding: 1rem !important;
    }
    
    .card-arrow {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
    
    .arrow-text {
        font-size: 0.6rem !important;
    }
    
    .arrow-icon {
        font-size: 0.7rem !important;
    }
    
    /* Remove icon overlay on mobile for cleaner look */
    .card-icon-overlay {
        display: none !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .cards-grid-6 {
        gap: 0.875rem !important;
        padding: 0 0.75rem !important;
    }
    
    .premium-card {
        height: 180px !important;
    }
    
    .card-title {
        font-size: 0.95rem !important;
    }
    
    .card-subtitle {
        font-size: 0.5rem !important;
    }
    
    .nisma-card-content {
        padding: 0.75rem !important;
    }
    
    .arrow-text {
        font-size: 0.55rem !important;
    }
}

/* Card overlay gradient for better text readability */
.nisma-card-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%) !important;
}

/* Card image hover effect */
.nisma-card-image img {
    transition: transform 0.5s ease;
}

.premium-card:hover .nisma-card-image img {
    transform: scale(1.05);
}

/* Card arrow animation on hover */
.card-arrow {
    transition: all 0.3s ease;
}

.premium-card:hover .card-arrow {
    transform: translateX(5px);
}

.premium-card:hover .arrow-icon {
    transform: translateX(3px);
}
/* ============================================
   CARDS SECTION - COMPLETE REWRITE
   ============================================ */

.cards-section {
    padding: 4rem 0;
    background: #ffffff;
}

.nisma-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nisma-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.nisma-section-subtitle {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8b6f47;
    margin-bottom: 0.5rem;
}

.nisma-section-title {
    font-size: 2rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-family: 'Georgia', serif;
}

.nisma-section-text {
    font-size: 0.95rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

/* Desktop: 3 columns */
.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card-link {
    text-decoration: none;
    display: block;
}

.card-inner {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #111;
}

.card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-link:hover .card-inner img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}

.card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    color: white;
}

.card-category {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8b6f47;
    display: block;
    margin-bottom: 0.3rem;
}

.card-name {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 0.5rem;
    font-family: 'Georgia', serif;
}

.card-arrow {
    font-size: 0.8rem;
    color: #8b6f47;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    display: inline-block;
}

.card-link:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   MOBILE: 2 COLUMNS, CENTERED, WITH GAP
   ============================================ */
@media (max-width: 768px) {
    .cards-section {
        padding: 2rem 0;
    }
    
    .nisma-container {
        padding: 0 1rem;
    }
    
    .cards-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        justify-content: center;
    }
    
    .card-inner {
        height: 190px;
    }
    
    .card-text {
        padding: 0.75rem;
    }
    
    .card-category {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }
    
    .card-name {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .card-arrow {
        font-size: 0.65rem;
        opacity: 1;
        transform: translateX(0);
    }
    
    .nisma-section-title {
        font-size: 1.5rem;
    }
    
    .nisma-section-text {
        font-size: 0.8rem;
        padding: 0 0.5rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .cards-wrapper {
        gap: 0.75rem;
    }
    
    .card-inner {
        height: 170px;
    }
    
    .card-text {
        padding: 0.6rem;
    }
    
    .card-name {
        font-size: 0.9rem;
    }
    
    .card-category {
        font-size: 0.5rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 992px) {
    .cards-wrapper {
        gap: 1.25rem;
    }
    
    .card-inner {
        height: 250px;
    }
}
/* ============================================
   PROJECT PAGE - SPV CARDS MOBILE FIX
   ============================================ */

/* Desktop: 5 columns */
.spv-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

/* Tablet: 3 columns */
@media (max-width: 992px) {
    .spv-cards-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
    }
}

/* Mobile: 2 columns */
@media (max-width: 768px) {
    .spv-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.875rem !important;
        padding: 0 0.5rem !important;
    }
    
    .spv-card {
        padding: 1rem 0.75rem !important;
    }
    
    .spv-card-icon {
        font-size: 1.75rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .spv-card-title {
        font-size: 0.65rem !important;
        margin-bottom: 0.35rem !important;
    }
    
    .spv-card-company {
        font-size: 0.7rem !important;
        margin-bottom: 0.2rem !important;
        word-break: break-word;
    }
    
    .spv-card-vessel {
        font-size: 0.65rem !important;
        padding-top: 0.35rem !important;
        margin-top: 0.35rem !important;
    }
}

/* Small mobile: 2 columns (smaller padding) */
@media (max-width: 480px) {
    .spv-cards-grid {
        gap: 0.75rem !important;
        padding: 0 0.25rem !important;
    }
    
    .spv-card {
        padding: 0.75rem 0.5rem !important;
    }
    
    .spv-card-icon {
        font-size: 1.5rem !important;
    }
    
    .spv-card-title {
        font-size: 0.6rem !important;
    }
    
    .spv-card-company {
        font-size: 0.65rem !important;
    }
    
    .spv-card-vessel {
        font-size: 0.6rem !important;
    }
}

/* Fix for key parameters on mobile */
@media (max-width: 768px) {
    .key-parameters {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    .param-card {
        padding: 1rem !important;
    }
    
    .param-card > div:nth-child(2) {
        font-size: 1.25rem !important;
    }
    
    .param-card > div:nth-child(3) {
        font-size: 0.65rem !important;
    }
}

/* Fix for project structure on mobile */
@media (max-width: 768px) {
    .project-structure {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    .structure-icon-card {
        padding: 0.75rem !important;
    }
    
    .structure-icon-card > div:first-child {
        font-size: 1.5rem !important;
    }
    
    .structure-icon-card > div:nth-child(2) {
        font-size: 0.7rem !important;
    }
    
    .structure-icon-card > div:nth-child(3) {
        font-size: 0.6rem !important;
    }
}

/* Fix for company-grid on mobile */
@media (max-width: 768px) {
    .company-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .company-grid .company-image-wrapper {
        order: -1 !important;
        margin-bottom: 0 !important;
    }
    
    .company-content {
        order: 0 !important;
    }
}
/* ============================================
   REDUCE SPACE BETWEEN HERO AND SECTIONS
   ============================================ */

/* For all pages - reduce top margin of first section after hero */
.cards-section,
.nisma-section.cards-section,
.project-content-section,
.company-content-section,
.fleet-content-section,
.financials-content-section,
.partners-content-section,
.careers-content-section,
.contact-content-section {
    margin-top: -2rem !important;
    padding-top: 2rem !important;
}

/* For home page - cards section after hero */
.home-main .cards-section,
.front-page .cards-section {
    margin-top: -3rem !important;
    padding-top: 2rem !important;
}

/* For project page */
.project-content-section {
    margin-top: -2rem !important;
    padding-top: 1rem !important;
}

/* For company page */
.company-content-section {
    margin-top: -2rem !important;
    padding-top: 1rem !important;
}

/* For fleet page */
.fleet-content-section {
    margin-top: -2rem !important;
    padding-top: 1rem !important;
}

/* For partners page */
.partners-content-section {
    margin-top: -2rem !important;
    padding-top: 1rem !important;
}

/* For financials page */
.financials-content-section {
    margin-top: -2rem !important;
    padding-top: 1rem !important;
}

/* For careers page */
.careers-content-section {
    margin-top: -2rem !important;
    padding-top: 1rem !important;
}

/* For contact page */
.contact-content-section {
    margin-top: -2rem !important;
    padding-top: 1rem !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .cards-section,
    .nisma-section.cards-section,
    .project-content-section,
    .company-content-section,
    .fleet-content-section,
    .financials-content-section,
    .partners-content-section,
    .careers-content-section,
    .contact-content-section {
        margin-top: -1rem !important;
        padding-top: 1rem !important;
    }
    
    .home-main .cards-section,
    .front-page .cards-section {
        margin-top: -1.5rem !important;
        padding-top: 1rem !important;
    }
}

/* Remove extra space from section-spacing class */
.section-spacing:first-of-type {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* ============================================
   FIX SPACING BETWEEN HERO AND SECTIONS
   ============================================ */

/* HOME PAGE - Increase space between hero and cards on desktop */
.home-main .cards-section,
.front-page .cards-section {
    margin-top: 2rem !important;
    padding-top: 2rem !important;
}

/* HOME PAGE - Mobile: normal space */
@media (max-width: 768px) {
    .home-main .cards-section,
    .front-page .cards-section {
        margin-top: 1rem !important;
        padding-top: 1rem !important;
    }
}

/* OTHER PAGES - Remove white space on mobile */
@media (max-width: 768px) {
    .project-content-section,
    .company-content-section,
    .fleet-content-section,
    .financials-content-section,
    .partners-content-section,
    .careers-content-section,
    .contact-content-section {
        margin-top: -2rem !important;
        padding-top: 0 !important;
    }
    
    /* First section in each page */
    .project-content-section .section-header:first-child,
    .company-content-section .section-header:first-child,
    .fleet-content-section .section-header:first-child,
    .financials-content-section .section-header:first-child,
    .partners-content-section .section-header:first-child,
    .careers-content-section .section-header:first-child,
    .contact-content-section .section-header:first-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Remove top padding from first grid */
    .project-content-section .company-grid:first-of-type,
    .company-content-section .company-grid:first-of-type,
    .fleet-content-section .company-grid:first-of-type,
    .financials-content-section .company-grid:first-of-type,
    .partners-content-section .company-grid:first-of-type,
    .careers-content-section .company-grid:first-of-type,
    .contact-content-section .company-grid:first-of-type {
        margin-top: -1rem !important;
        padding-top: 0 !important;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 992px) {
    .home-main .cards-section,
    .front-page .cards-section {
        margin-top: 1.5rem !important;
        padding-top: 1.5rem !important;
    }
}
/* FORCE FIX - Home page cards section spacing */
body.home .cards-section,
body.front-page .cards-section {
    margin-top: 80px !important;
    padding-top: 40px !important;
}

body.home .nisma-section-header,
body.front-page .nisma-section-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
    text-align: center !important;
}

/* Mobile */
@media (max-width: 768px) {
    body.home .cards-section,
    body.front-page .cards-section {
        margin-top: 40px !important;
        padding-top: 20px !important;
    }
}
/* ============================================
   HERO SECTION - ADJUST CONTENT POSITION & BRIGHTNESS
   ============================================ */

/* Move content down so ship appears */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 80px !important;
}

/* Desktop: more padding top */
@media (min-width: 992px) {
    .hero-content-wrapper {
        padding-top: 120px !important;
    }
}

/* Brighten the video - make it lighter */
.hero-background-video {
    filter: brightness(1.1) contrast(0.95);
}

/* Overlay - make it lighter (not dark) */
.hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%) !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-content-wrapper {
        padding-top: 40px !important;
        padding-bottom: 20px !important;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 100%) !important;
    }
    
    .hero-background-video {
        filter: brightness(1.05) contrast(0.98);
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 992px) {
    .hero-content-wrapper {
        padding-top: 80px !important;
    }
}
/* ============================================
   HERO - MOVE CONTENT DOWN & WHITE NUMBERS
   ============================================ */

/* Move entire hero content down */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    transform: translateY(80px) !important;
}

/* Desktop: move down more */
@media (min-width: 992px) {
    .hero-content-wrapper {
        transform: translateY(120px) !important;
    }
}

/* Mobile: move down less */
@media (max-width: 768px) {
    .hero-content-wrapper {
        transform: translateY(40px) !important;
    }
}

/* Make all numbers white */
.hero-stat-number {
    color: #ffffff !important;
}

.hero-stat-number.counter {
    color: #ffffff !important;
}

/* Make stat labels white */
.hero-stat-label {
    color: rgba(255, 255, 255, 0.85) !important;
}

.hero-stat-sub {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Make title and description white */
.hero-main-title {
    color: #ffffff !important;
}

.hero-description-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Badge stays white */
.hero-badge-text {
    color: #ffffff !important;
}
/* ============================================
   HERO - BLACK & WHITE ONLY (NO GOLD)
   ============================================ */

/* Move content down */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    transform: translateY(100px) !important;
}

@media (min-width: 992px) {
    .hero-content-wrapper {
        transform: translateY(140px) !important;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        transform: translateY(50px) !important;
    }
}

/* All text white */
.hero-main-title,
.hero-description-text,
.hero-stat-number,
.hero-stat-label,
.hero-stat-sub,
.hero-badge-text {
    color: #ffffff !important;
}

/* Remove gold from highlight */
.hero-main-title .highlight {
    color: #ffffff !important;
    font-weight: 500;
}

/* Remove gold from badge border */
.hero-badge-text {
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Buttons - Black & White */
.hero-btn-primary {
    background: #ffffff !important;
    color: #000000 !important;
    border: none !important;
}

.hero-btn-primary:hover {
    background: #e0e0e0 !important;
    color: #000000 !important;
}

.hero-btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.hero-btn-secondary:hover {
    border-color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Video overlay - lighter */
.hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%) !important;
}

/* Video brightness */
.hero-background-video {
    filter: brightness(1.15) contrast(0.95);
}
/* Reduce the downward shift of hero content */
.hero-content-wrapper {
    transform: translateY(60px) !important;
}

@media (min-width: 992px) {
    .hero-content-wrapper {
        transform: translateY(80px) !important;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        transform: translateY(30px) !important;
    }
}
/* ============================================
   HERO SECTION - COMPLETE FIXES
   ============================================ */

/* Video separation - Desktop vs Mobile */
.desktop-video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.mobile-video {
    display: none;
}

/* Hide videos until loaded */
.desktop-video, .mobile-video {
    opacity: 0;
    animation: fadeVideoIn 0.3s ease-out 0.1s forwards;
}

@keyframes fadeVideoIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .desktop-video {
        display: none !important;
    }
    
    .mobile-video {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

/* Content wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    transform: translateY(60px);
}

@media (min-width: 992px) {
    .hero-content-wrapper {
        transform: translateY(80px);
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        transform: translateY(30px);
        padding: 0 1rem;
    }
}

/* All text white */
.hero-main-title,
.hero-description-text,
.hero-stat-number,
.hero-stat-label,
.hero-stat-sub,
.hero-badge-text {
    color: #ffffff !important;
}

.hero-main-title .highlight {
    color: #ffffff !important;
}

.hero-badge-text {
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Buttons */
.hero-btn-primary {
    background: #ffffff !important;
    color: #000000 !important;
    border: none !important;
}

.hero-btn-primary:hover {
    background: #e0e0e0 !important;
}

.hero-btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.hero-btn-secondary:hover {
    border-color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Stats row */
.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-stat-number {
    font-size: 2.25rem;
    font-weight: 500;
}

.hero-stat-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-stat-sub {
    font-size: 0.65rem;
}

@media (max-width: 768px) {
    .hero-stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.6rem;
    }
    
    .hero-stat-sub {
        font-size: 0.55rem;
    }
}

/* Hero buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.hero-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 0;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-btn {
        width: 80%;
        max-width: 220px;
        text-align: center;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}
/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog Hero */
.blog-hero {
    text-align: center;
    padding: 4rem 0 3rem;
}

.blog-hero-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8b6f47;
    display: block;
    margin-bottom: 1rem;
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 400;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
}

.blog-hero-description {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.blog-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.blog-card-link {
    text-decoration: none;
    display: block;
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.03);
}

.blog-card-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

.blog-card-category span {
    background: #8b6f47;
    color: #fff;
    padding: 0.25rem 0.75rem;
    font-size: 0.65rem;
    letter-spacing: 1px;
}

.blog-card-content {
    padding: 1.25rem;
}

.blog-card-date {
    font-size: 0.7rem;
    color: #999;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 0.75rem;
    line-height: 1.4;
    color: #1a1a1a;
}

.blog-card-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.blog-card-excerpt {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.blog-card-read-more {
    font-size: 0.75rem;
    color: #8b6f47;
    letter-spacing: 1px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-read-more {
    transform: translateX(5px);
}

/* Load More Button */
.blog-load-more {
    text-align: center;
    margin: 2rem 0 4rem;
}

.load-more-btn {
    background: transparent;
    border: 1px solid #1a1a1a;
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Pagination */
.nisma-pagination {
    text-align: center;
    margin: 2rem 0 4rem;
}

.nisma-pagination a,
.nisma-pagination span {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.8rem;
}

.nisma-pagination .current {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.nisma-pagination a:hover {
    background: #8b6f47;
    color: #fff;
    border-color: #8b6f47;
}

/* Single Post */
.single-post-section {
    padding: 3rem 0 5rem;
}

.single-post-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.single-post-category a {
    display: inline-block;
    background: #8b6f47;
    color: #fff;
    padding: 0.25rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-decoration: none;
}

.single-post-title {
    font-size: 2.5rem;
    font-family: Georgia, serif;
    font-weight: 400;
    margin: 1rem 0;
    color: #1a1a1a;
}

.single-post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.8rem;
    color: #666;
}

.post-meta-author,
.post-meta-date,
.post-meta-read-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.single-post-featured-image {
    margin: 2rem auto;
    max-width: 1000px;
}

.single-post-featured-image img {
    width: 100%;
    height: auto;
}

.single-post-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.single-post-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.single-post-content h2,
.single-post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.single-post-content p {
    margin-bottom: 1.25rem;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
}

.single-post-footer {
    max-width: 800px;
    margin: 3rem auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-tags .tags-label {
    font-size: 0.8rem;
    color: #666;
    margin-right: 0.5rem;
}

.tag-link {
    display: inline-block;
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    text-decoration: none;
    color: #333;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.tag-link:hover {
    background: #8b6f47;
    color: #fff;
}

.post-share .share-label {
    font-size: 0.8rem;
    color: #666;
    margin-right: 0.5rem;
}

.share-link {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    background: #f0f0f0;
    text-decoration: none;
    color: #333;
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

.share-link:hover {
    background: #1a1a1a;
    color: #fff;
}

.single-post-back {
    text-align: center;
    margin-top: 3rem;
}

.back-to-blog {
    display: inline-block;
    color: #8b6f47;
    text-decoration: none;
    font-size: 0.85rem;
}

.back-to-blog:hover {
    text-decoration: underline;
}

/* 404 Page */
.error-404-section {
    padding: 5rem 0;
    text-align: center;
}

.error-code {
    font-size: 8rem;
    font-family: Georgia, serif;
    color: #8b6f47;
    display: block;
}

.error-title {
    font-size: 2rem;
    font-weight: 400;
    margin: 1rem 0;
}

.error-description {
    max-width: 500px;
    margin: 0 auto 2rem;
    color: #666;
}

.error-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.error-btn {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.error-btn-primary {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
}

.error-btn-primary:hover {
    background: #333;
}

.error-btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.error-btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

.error-search input[type="search"] {
    padding: 0.75rem;
    width: 300px;
    border: 1px solid #e5e5e5;
}

.error-search input[type="submit"] {
    padding: 0.75rem 1.5rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        gap: 1.5rem;
    }
    
    .blog-hero-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .blog-hero-title {
        font-size: 1.75rem;
    }
    
    .blog-hero-description {
        font-size: 0.85rem;
    }
    
    .single-post-title {
        font-size: 1.75rem;
    }
    
    .single-post-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .single-post-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .error-code {
        font-size: 5rem;
    }
    
    .error-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* ============================================
   3D GOLDEN ICONS
   ============================================ */

.card-icon-3d {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon-3d i {
    font-size: 3rem;
    background: linear-gradient(135deg, #d4af37 0%, #8b6f47 50%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 8px rgba(139, 111, 71, 0.4);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.card-icon-3d i:hover {
    transform: scale(1.05);
    filter: drop-shadow(3px 3px 8px rgba(139, 111, 71, 0.5));
}

/* Alternative: Pure 3D golden effect without gradient */
.card-icon-3d-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon-3d-alt i {
    font-size: 3rem;
    color: #8b6f47;
    text-shadow: 1px 1px 0px #d4af37, 2px 2px 0px rgba(0, 0, 0, 0.1), 3px 3px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card-icon-3d-alt i:hover {
    transform: translateY(-2px);
    text-shadow: 2px 2px 0px #d4af37, 4px 4px 0px rgba(0, 0, 0, 0.1);
}
/* 3D Golden Icons - Financials Page */
.stat-icon-3d,
.card-icon-3d {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-3d i,
.card-icon-3d i {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #d4af37 0%, #8b6f47 50%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 8px rgba(139, 111, 71, 0.4);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.stat-icon-3d i:hover,
.card-icon-3d i:hover {
    transform: scale(1.05);
    filter: drop-shadow(3px 3px 8px rgba(139, 111, 71, 0.5));
}
/* 3D Golden Icons - Project Page */
.param-icon-3d {
    display: flex;
    align-items: center;
    justify-content: center;
}

.param-icon-3d i {
    font-size: 2rem;
    background: linear-gradient(135deg, #d4af37 0%, #8b6f47 50%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 8px rgba(139, 111, 71, 0.4);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.structure-icon-3d {
    display: flex;
    align-items: center;
    justify-content: center;
}

.structure-icon-3d i {
    font-size: 2rem;
    background: linear-gradient(135deg, #d4af37 0%, #8b6f47 50%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 8px rgba(139, 111, 71, 0.4);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}
/* 3D Golden Icons - Company Page Long-Term Vision */
.industry-icon-3d {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
}

.industry-icon-3d i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #d4af37 0%, #8b6f47 50%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 8px rgba(139, 111, 71, 0.4);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.industry-icon-3d i:hover {
    transform: scale(1.05);
}
/* Mobile Hero Stats - 3 items balanced in one row */
@media (max-width: 768px) {
    .hero-stats-row {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    .hero-stat-item {
        padding: 0.5rem 0.25rem !important;
        text-align: center !important;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
    }
    
    .hero-stat-number {
        font-size: 1.25rem !important;
    }
    
    .hero-stat-label {
        font-size: 0.55rem !important;
        letter-spacing: 0.5px !important;
    }
    
    .hero-stat-sub {
        font-size: 0.5rem !important;
    }
}
