.elementor-446 .elementor-element.elementor-element-fe5ec6d{--display:flex;--margin-top:-40px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for html, class: .elementor-element-23be62c *//* Saif Marine | Final Complete Construction CSS */

:root {
    --primary: #1A233A;
    --accent: #F2A900;
    --accent-hover: #E09800;
    --secondary: #00E5FF;
    --bg-light: #E6F0F9;
    --bg-white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --radius-md: 12px;
    --radius-lg: 20px;
}

.saif-elementor-wrapper {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
}

/* =====================
   FULL-WIDTH BREAKOUT
   ===================== */
section {
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    position: relative;
    box-sizing: border-box;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* =====================
   HERO
   ===================== */
.sm-hero {
    display: flex;
    min-height: 90vh;
    background: var(--primary);
    position: relative;
    overflow: hidden;
    padding: 0 !important;
}
.sm-hero-container { display: flex; width: 100%; }
.sm-hero-content {
    flex: 1;
    padding: 6rem 4rem 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.sm-hero h1 {
    font-size: 3.5rem;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: var(--font-heading);
    font-weight: 800;
}
.sm-hero h1 span { color: var(--accent) !important; }
.sm-hero p { color: rgba(255,255,255,0.85) !important; font-size: 1.2rem; margin-bottom: 2.5rem; }
.sm-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.sm-hero-image {
    flex: 1;
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    min-height: 100%;
}
.sm-hero-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.sm-hero-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(45deg, rgba(26,35,58,0.8) 0%, rgba(0,0,0,0.1) 100%);
}

/* =====================
   PROBLEM CARDS
   ===================== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.problem-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: center;
    transition: var(--transition);
}
.problem-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.problem-icon { font-size: 3rem; margin-bottom: 1.5rem; display: block; }
.problem-card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--primary); }

/* The Solution Card — Dark Style */
.problem-solution {
    background: var(--primary) !important;
    border: 2px solid var(--accent);
    transform: scale(1.04);
}
.problem-solution h3 { color: #ffffff !important; }
.problem-solution p { color: rgba(255,255,255,0.85) !important; }
.problem-solution .problem-icon { color: var(--accent) !important; }

/* =====================
   SERVICES GRID
   ===================== */
.supply-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.supply-card {
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}
.supply-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.supply-icon-wrapper {
    width: 60px; height: 60px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--primary);
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}
.supply-card:hover .supply-icon-wrapper { background: var(--primary); color: var(--accent); }
.supply-card h4 { color: var(--primary); margin-bottom: 0.75rem; font-size: 1.05rem; }
.supply-card p { color: var(--text-muted); font-size: 0.9rem; }

/* =====================
   WHY ITEMS
   ===================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}
.why-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #ffffff;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}
.why-item:hover {
    background: var(--primary);
    color: #fff;
    transform: translateX(8px);
}
.why-icon {
    font-size: 2.5rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}
.why-content h4 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--primary); }
.why-item:hover .why-content h4 { color: #fff; }
.why-content p { color: var(--text-muted); }
.why-item:hover .why-content p { color: rgba(255,255,255,0.8); }

/* =====================
   GALLERY
   ===================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.08); }

/* =====================
   STORIES / PROJECTS
   ===================== */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}
.story-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}
.story-card:hover { transform: translateY(-8px); }
.story-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}
.story-card h4 { font-size: 1.2rem; color: var(--primary); margin-bottom: 1rem; }
.story-card p { color: var(--text-muted); }

/* =====================
   BRANDS MARQUEE
   ===================== */
.brands-marquee {
    overflow: hidden;
    padding: 2rem 0;
    white-space: nowrap;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.brands-track { display: inline-block; animation: marquee 20s linear infinite; }
.brand-item {
    display: inline-block;
    margin: 0 3rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}
.brand-item:hover { color: var(--primary); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =====================
   CONTACT FORM SECTION
   ===================== */
.order-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0A192F 100%) !important;
    color: #fff !important;
}
.order-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}
.order-text { flex: 1; }
.order-form-wrapper {
    flex: 1;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.form-group { margin-bottom: 1.2rem; }
.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.2) !important;
    background: rgba(255,255,255,0.05) !important;
    color: #ffffff !important;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}
.form-control::placeholder { color: rgba(255,255,255,0.5); }
.form-control:focus { outline: none; border-color: var(--accent) !important; }
textarea.form-control { height: 120px; resize: vertical; }

/* =====================
   FAQ & MAP
   ===================== */
.faq-map-container {
    display: flex;
    gap: 4rem;
}
.faq-col { flex: 1; }
.map-col { flex: 1; }
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 1.5rem 0;
}
.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.faq-answer { color: var(--text-muted); }
.map-wrapper {
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    text-decoration: none;
}
.btn-primary { background: var(--accent); color: var(--primary); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-secondary { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-secondary:hover { background: #fff; color: var(--primary); }

/* =====================
   UTILITIES
   ===================== */
.py-20 { padding: 5rem 0; }
.bg-light { background-color: var(--bg-light) !important; }
.section-title { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; font-family: var(--font-heading); font-weight: 800; }
.section-title.white { color: #ffffff !important; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); }
.section-subtitle.white { color: rgba(255,255,255,0.8) !important; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; display: block; }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1100px) {
    .supply-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .sm-hero-container { flex-direction: column; }
    .sm-hero-image { display: none; }
    .sm-hero-content { padding: 4rem 0; text-align: center; }
    .sm-hero h1 { font-size: 2.5rem; }
    .sm-hero-btns { justify-content: center; }
    .problem-grid { grid-template-columns: 1fr; }
    .problem-solution { transform: none; }
    .why-grid { grid-template-columns: 1fr; }
    .stories-grid { grid-template-columns: 1fr; }
    .faq-map-container { flex-direction: column; }
    .order-container { flex-direction: column; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .supply-grid { grid-template-columns: repeat(2, 1fr); }
}/* End custom CSS */