/* ==========================================================================
   StorageRankers Main Stylesheet
   ========================================================================== */
/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}
/* === PNG TRANSPARENCY FIX (CHROME + ALL BROWSERS) === */
img {
    background: transparent !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
/* ==========================================================================
   Typography
   ========================================================================== */
h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #225656;
}
h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 15px;
}
h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
p {
    margin-bottom: 15px;
}
a {
    color: #3699be;
    transition: color 0.3s;
}
a:hover {
    color: #fa7f08;
}
/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
    background: #348888;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    max-width: 250px;
    height: auto;
    display: block;
    transition: transform 0.3s;
}
.logo img:hover {
    transform: scale(1.05);
}
.nav-links {
    display: flex;
    align-items: center;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #9ef8ee;
}
.hamburger {
    display: none;
    cursor: pointer;
}
.hamburger div {
    width: 35px;
    height: 5px;
    background: #fff;
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 2px;
}
/* ==========================================================================
   Hero Sections
   ========================================================================== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(/images/heroback.jpg) center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero-interior {
    min-height: 60vh;
}
.hero-content {
    width: 100%;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero-logo {
    width: 400px;
    height: 513px;
    max-width: 75vw;
    margin: 0 auto 20px;
    display: block;
}
/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.cta-button,
.cta-button-large {
    display: inline-block;
    padding: 15px 30px;
    background: #f24405;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 600;
    text-align: center;
    border: 2px solid #f24405;
}
.cta-button:hover,
.cta-button-large:hover {
    background: #c23604;
    border-color: #c23604;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.cta-button-large {
    font-size: 1.2rem;
    padding: 18px 40px;
}
/* ==========================================================================
   Section Styles
   ========================================================================== */
section {
    padding: 60px 0;
}
.intro {
    background: #fff;
    text-align: center;
}
.intro p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: left;
}
.intro h2 {
    text-align: center;
    margin-bottom: 30px;
}

img {
  image-rendering: pixelated; /* For small icons */
  /* OR */
  image-rendering: crisp-edges;
}

img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast; /* Chrome */
  image-rendering: crisp-edges;               /* Firefox */
  image-rendering: pixelated;                 /* Optional: for icons */
}
/* ==========================================================================
   Features Section
   ========================================================================== */
.features {
    background: #f9f9f9;
    text-align: center;
}
.features h2 {
    margin-bottom: 40px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature-item {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-align: left;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 2px solid #9ef8ee;
}
.feature-item h3 {
    color: #225656;
    margin-bottom: 15px;
}
/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing {
    background: #fff;
    text-align: center;
}
.pricing h2 {
    margin-bottom: 20px;
}
.pricing > .container > p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.pricing-item {
    padding: 40px 30px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
}
.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.pricing-item.featured {
    border: 3px solid #fa7f08;
    transform: scale(1.05);
}
.pricing-item.featured:hover {
    transform: scale(1.08) translateY(-5px);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fa7f08;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}
.pricing-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #225656;
}
.pricing-item .price {
    font-size: 2.5rem;
    color: #fa7f08;
    margin-bottom: 25px;
    font-weight: 700;
}
.pricing-item ul {
    text-align: left;
    margin: 0 auto 25px;
    max-width: 90%;
    list-style: none;
    flex-grow: 1;
}
.pricing-item ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}
.pricing-item ul li:before {
    content: "?";
    position: absolute;
    left: 0;
    color: #348888;
    font-weight: 700;
}
.pricing-item a {
    background: #3699be;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    margin-top: auto;
    font-weight: 600;
}
.pricing-item a:hover {
    background: #fa7f08;
}
.pricing-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
}
/* Pricing Examples */
.pricing-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}
.pricing-example {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
}
.pricing-example h3 {
    color: #225656;
    margin-bottom: 15px;
}
.pricing-example p {
    margin-bottom: 10px;
}
.pricing-contact {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
}
/* ROI Calculation */
.roi-calculation {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 600px;
    border-left: 4px solid #348888;
}
.roi-calculation p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
/* ==========================================================================
   Partners/Technology Section
   ========================================================================== */
.partners {
    background: #fff;
    text-align: center;
    padding: 50px 0;
}
.partners h2 {
    margin-bottom: 25px;
}
.partners p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 30px;
}
.partners img {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
}
.tech-list {
    text-align: left;
    max-width: 800px;
    margin: 30px auto;
    list-style: none;
}
.tech-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}
.tech-list li:before {
    content: "?";
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}
/* ==========================================================================
   Case Study Section
   ========================================================================== */
.case-study {
    background: #f9f9f9;
    text-align: center;
}
.case-study h2 {
    margin-bottom: 30px;
}
.case-study p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: left;
}
.case-study img {
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* Case Study Detail Page */
.case-study-detail {
    background: #fff;
}
.case-study-header {
    text-align: center;
    margin-bottom: 50px;
}
.case-study-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}
.case-study-meta {
    font-size: 1.1rem;
    color: #666;
}
.case-study-section {
    margin-bottom: 50px;
}
.case-study-section h3 {
    color: #225656;
    font-size: 2rem;
    margin-bottom: 20px;
}
.case-study-section h4 {
    color: #348888;
    margin-top: 25px;
    margin-bottom: 15px;
}
.case-study-section ul {
    margin-left: 30px;
    text-align: left;
}
.case-study-section ul li {
    margin-bottom: 10px;
}
/* Results Highlight */
.results-highlight {
    background: #f0f8f8;
    padding: 40px;
    border-radius: 8px;
    border: 3px solid #348888;
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
}
.result-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}
.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fa7f08;
    margin-bottom: 15px;
}
.result-card p {
    font-size: 1rem;
    margin: 0;
}
.results-chart {
    margin: 40px 0;
    text-align: center;
}
.chart-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}
/* Testimonial */
.testimonial-section {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
}
.testimonial {
    border-left: 4px solid #348888;
    padding-left: 30px;
    font-size: 1.2rem;
    font-style: italic;
    margin: 20px 0;
}
.testimonial footer {
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    color: #225656;
}
/* Takeaway Grid */
.takeaway-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.takeaway-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
}
.takeaway-item h4 {
    color: #348888;
    margin-bottom: 10px;
}
/* ==========================================================================
   Process Section
   ========================================================================== */
.process-content {
    max-width: 900px;
    margin: 0 auto;
}
.process-step {
    background: #fff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: left;
    border-left: 4px solid #348888;
}
.process-step h3 {
    color: #225656;
    margin-bottom: 15px;
}
/* Timeline */
.timeline {
    max-width: 800px;
    margin: 40px auto;
}
.timeline-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
    position: relative;
    padding-left: 60px;
}
.timeline-item:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 30px;
    width: 15px;
    height: 15px;
    background: #348888;
    border-radius: 50%;
}
.timeline-item h3 {
    color: #225656;
    margin-bottom: 10px;
}
/* ==========================================================================
   Benefits & Lists
   ========================================================================== */
.benefits-list {
    text-align: left;
    max-width: 800px;
    margin: 20px auto;
    list-style: none;
}
.benefits-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}
.benefits-list li:before {
    content: "?";
    position: absolute;
    left: 0;
    color: #348888;
    font-weight: 700;
    font-size: 1.3rem;
}
/* ==========================================================================
   About Us Specific Styles
   ========================================================================== */
.served-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}
.served-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
}
.served-item h3 {
    color: #348888;
    margin-bottom: 15px;
}
.approach-steps {
    max-width: 900px;
    margin: 40px auto;
}
.approach-step {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
}
.approach-step h3 {
    color: #225656;
    margin-bottom: 10px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.value-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
}
.value-item h3 {
    color: #348888;
    margin-bottom: 15px;
}
/* ==========================================================================
   Contact Page Specific
   ========================================================================== */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.contact-method {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
}
.contact-method h3 {
    color: #225656;
    margin-bottom: 15px;
}
.faq-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
}
.faq-item h3 {
    color: #225656;
    margin-bottom: 10px;
}
.more-questions {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
}
/* ==========================================================================
   Contact Section (CTA)
   ========================================================================== */
.contact {
    background: #225656;
    color: #fff;
    text-align: center;
}
.contact h2 {
    color: #fff;
    margin-bottom: 20px;
}
.contact p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.contact a {
    color: #9ef8ee;
}
.contact a:hover {
    color: #fff;
}
/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: #1a252f;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}
footer p {
    margin-bottom: 10px;
}
footer a {
    color: #9ef8ee;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
    color: #fff;
}
/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
   
    h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: block;
    }
   
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        background: #348888;
        width: 100%;
        text-align: center;
        flex-direction: column;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
   
    .nav-links.active {
        display: flex;
    }
   
    .nav-links a {
        display: block;
        margin: 0;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
   
    /* Hero */
    .hero-content h1 {
        font-size: 2rem;
    }
   
    .hero-content p {
        font-size: 1.1rem;
    }
   
    .hero-logo {
        max-width: 200px;
        height: auto;
    }
   
    /* Typography */
    h2 {
        font-size: 1.8rem;
    }
   
    h3 {
        font-size: 1.3rem;
    }
   
    /* Grids */
    .pricing-grid,
    .feature-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
   
    .pricing-item.featured {
        transform: scale(1);
    }
   
    .pricing-item.featured:hover {
        transform: translateY(-5px);
    }
   
    /* Sections */
    section {
        padding: 40px 0;
    }
   
    .intro p,
    .case-study p {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
   
    .hero-content h1 {
        font-size: 1.6rem;
    }
   
    .hero-content p {
        font-size: 1rem;
    }
   
    .cta-button,
    .cta-button-large {
        padding: 12px 25px;
        font-size: 1rem;
    }
   
    h2 {
        font-size: 1.5rem;
    }
}