/* ==========================================
   Seekoji Electric - Modern Premium Stylesheet
   ========================================== */

/* Design Tokens & Animations */
:root {
    --primaryGradient: linear-gradient(135deg, #0085D0 0%, #006097 100%);
    --accentOrange: #F29432;
    --accentOrangeAlpha: rgba(242, 148, 50, 0.1);
    --primaryBlueAlpha: rgba(0, 133, 208, 0.08);
    --premiumShadow: 0 10px 30px rgba(17, 17, 26, 0.04);
    --hoverShadow: 0 15px 35px rgba(0, 133, 208, 0.1);
    --transitionSmooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 133, 208, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 133, 208, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 133, 208, 0); }
}

/* Global Aesthetics & Overrides */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    background-color: #ffffff;
    color: #2e2e2e;
}

.bg-f9fbfe {
    background-color: #f7fafc !important;
}

/* Hero Section */
.hero-glow-bg {
    position: relative;
    overflow: hidden;
}

.hero-glow-bg::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 133, 208, 0.1) 0%, rgba(0, 133, 208, 0) 70%);
    top: -15%;
    left: -10%;
    z-index: 1;
    pointer-events: none;
}

.hero-glow-bg::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(242, 148, 50, 0.06) 0%, rgba(242, 148, 50, 0) 75%);
    bottom: -15%;
    right: -10%;
    z-index: 1;
    pointer-events: none;
}

/* Premium Card Components */
.modern-card {
    background: #ffffff;
    border: 1px solid var(--primaryBlueAlpha);
    border-radius: 16px !important;
    box-shadow: var(--premiumShadow);
    transition: var(--transitionSmooth);
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.modern-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 133, 208, 0.25);
    box-shadow: var(--hoverShadow);
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primaryGradient);
    transition: height 0.3s ease;
}

.modern-card:hover::before {
    height: 100%;
}

/* Icons and Badges */
.icon-badge {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    background: rgba(0, 133, 208, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transitionSmooth);
}

.modern-card:hover .icon-badge {
    background: rgba(0, 133, 208, 0.12);
    transform: scale(1.05);
}

.badge-modern {
    background: var(--accentOrangeAlpha);
    color: var(--accentOrange);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    display: inline-block;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(242, 148, 50, 0.15);
}

.badge-blue {
    background: rgba(0, 133, 208, 0.06);
    color: #0085D0;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    display: inline-block;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 133, 208, 0.12);
}

/* Section Headings */
.section-title-modern {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    margin-bottom: 25px;
    line-height: 1.25;
}

.section-title-modern::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--primaryGradient);
    margin-top: 15px;
    border-radius: 2px;
}

.section-title-modern.center::after {
    margin: 15px auto 0 auto;
}

/* Image Aesthetics */
.img-glow {
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(17, 17, 26, 0.06);
    transition: var(--transitionSmooth);
}

.img-glow:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 133, 208, 0.12);
}

/* Show inline images under specific layout wrappers */
.about-img, .why-we-img {
    background-image: none !important;
    height: auto !important;
}

.about-img img, .why-we-img img {
    display: block !important;
}

/* List Items with Checkmarks */
.list-checkmark {
    list-style: none;
    padding-left: 0;
}

.list-checkmark li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #4f4f4f;
}

.list-checkmark li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #0085D0;
    font-size: 0.85rem;
    background: rgba(0, 133, 208, 0.08);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Detail Cards */
.service-modern-card {
    background: #ffffff;
    border: 1px solid rgba(0, 133, 208, 0.08);
    border-radius: 20px !important;
    box-shadow: var(--premiumShadow);
    transition: var(--transitionSmooth);
    padding: 35px;
    margin-bottom: 30px;
    overflow: hidden;
}

.service-modern-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 133, 208, 0.22);
    box-shadow: var(--hoverShadow);
}

/* About Specific Info Cards */
.modern-about-card {
    background: #ffffff;
    border: 1px solid rgba(0, 133, 208, 0.06);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transitionSmooth);
}

.modern-about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 133, 208, 0.06);
    border-color: rgba(0, 133, 208, 0.15);
}

.modern-about-card i {
    font-size: 1.3rem;
    color: #0085D0;
    background: rgba(0, 133, 208, 0.05);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modern-about-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0;
    font-weight: 600;
    color: #2b2b2b;
    line-height: 1.5;
}

/* Gallery Layout Components */
.modern-gallery-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--premiumShadow);
    border: 1px solid rgba(0, 133, 208, 0.06);
    transition: var(--transitionSmooth);
    background: #ffffff;
    margin-bottom: 30px;
}

.modern-gallery-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--hoverShadow);
    border-color: rgba(0, 133, 208, 0.2);
}

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

.modern-gallery-card:hover img {
    transform: scale(1.04);
}

/* Contact Layout Overrides */
.contact-modern-card {
    background: #ffffff;
    border: 1px solid rgba(0, 133, 208, 0.08);
    border-radius: 20px !important;
    box-shadow: var(--premiumShadow);
    transition: var(--transitionSmooth);
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    height: 100%;
}

.contact-modern-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 133, 208, 0.25);
    box-shadow: var(--hoverShadow);
}

.contact-icon-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 133, 208, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: var(--transitionSmooth);
}

.contact-modern-card:hover .contact-icon-badge {
    background: rgba(0, 133, 208, 0.12);
}

.contact-icon-badge i {
    font-size: 1.6rem;
    color: #0085D0;
}

/* Document / Policy Cards */
.policy-document-card {
    background: #ffffff;
    border: 1px solid rgba(0, 133, 208, 0.08);
    border-radius: 20px;
    padding: 45px;
    box-shadow: var(--premiumShadow);
}

.policy-document-card ul {
    list-style: none;
    padding-left: 0;
}

.policy-document-card > ul > li {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.policy-document-card > ul > li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-document-card strong {
    font-size: 1.3rem;
    color: #1a1a1a;
    display: inline-block;
    margin-bottom: 15px;
}

.policy-document-card ul ul {
    list-style: none;
    padding-left: 0;
}

.policy-document-card ul ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.65;
}

.policy-document-card ul ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #0085D0;
    border-radius: 50%;
    position: absolute;
    left: 6px;
    top: 10px;
}

/* Metric / Counter Tiles */
.counter-modern-card {
    background: #ffffff;
    border: 1px solid rgba(0, 133, 208, 0.06);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--premiumShadow);
    transition: var(--transitionSmooth);
}

.counter-modern-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hoverShadow);
    border-color: rgba(0, 133, 208, 0.2);
}

.counter-modern-card i {
    font-size: 2.3rem;
    color: #0085D0;
    margin-bottom: 20px;
    display: inline-block;
}

.counter-modern-card h2 {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 6px;
    color: #1a1a1a;
}

/* Brand slider alignment */
.brands-slider .brand-single-img {
    height: 100px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 16px !important;
    margin: 15px 0 !important;
    transition: all 0.3s ease !important;
}

.brands-slider .brand-single-img:hover {
    border-color: rgba(0, 133, 208, 0.2) !important;
    box-shadow: 0 6px 18px rgba(0, 133, 208, 0.08) !important;
}

.brands-slider .brand-single-img img {
    height: 50px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    margin: auto !important;
    transition: all 0.5s ease-in-out !important;
}

.brands-slider .brand-single-img .br-img {
    top: 50% !important;
    transform: translateY(-50%) !important;
    opacity: 1 !important;
}

.brands-slider .brand-single-img .on-hover {
    top: 150% !important;
    transform: translateY(0%) !important;
    opacity: 0 !important;
}

.brands-slider .brand-single-img:hover .br-img {
    top: -50% !important;
    transform: translateY(-100%) !important;
    opacity: 0 !important;
}

.brands-slider .brand-single-img:hover .on-hover {
    top: 50% !important;
    transform: translateY(-50%) !important;
    opacity: 1 !important;
}

/* Premium Buttons */
.default-button {
    background: var(--primaryGradient) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 14px 32px !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 15px rgba(0, 133, 208, 0.2) !important;
    transition: var(--transitionSmooth) !important;
    border: none !important;
    display: inline-block;
    text-align: center;
}

.default-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 133, 208, 0.3) !important;
    color: #ffffff !important;
}
