/* Reset default browser padding and margins */
img {
    border-radius: 10px; /* Adjust this value to increase or decrease the roundness */
  }
  
html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Header Section */
#sticky-banner {
    display: none;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #ffffff; /* white background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* enhanced shadow for more depth */
    border-bottom: 1px solid #ff7b00; /* primary color border */
    z-index: 1000;
    padding: 0 20px; /* padding for breathing space around the contents */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}



/* Use a media query to display the header on desktops */
@media (min-width: 992px) { /* This width can be adjusted based on your design requirements */
    #sticky-banner {
        display: flex; /* or your original display type */
    }
}


/* Header Section */
#sticky-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #ffffff; /* white background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* enhanced shadow for more depth */
    border-bottom: 1px solid #ff7b00; /* primary color border */
    z-index: 1000;
    padding: 0 20px; /* padding for breathing space around the contents */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

#back-link {
    color: #000000; /* black text */
    text-decoration: none;
    padding: 8px 12px; /* reduced padding */
    display: block;
    transition: background-color 0.3s, border-radius 0.3s; /* added transition for border-radius */
    border-radius: 4px; /* rounded corners */
}

#back-link:hover {
    background-color: #d3d3d3; /* light gray for hover effect */
}

.logo {
    padding: 10px; /* added padding around the logo */
}

.logo img {
    height: 40px; /* Adjust based on your logo's dimensions */
}

.tm {
    font-size: 0.5em; /* Smaller font size for the trademark symbol */
    vertical-align: super; /* Align trademark symbol with the top of the text */
}

/* Hero Section */
.feature-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ff7b00 0%, #ff9500 100%);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    animation: rotate 30s linear infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.float-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 7s;
}

.float-element:nth-child(3) {
    bottom: 10%;
    left: 50%;
    animation-delay: 14s;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.feature-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.feature-hero .lead {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.feature-main {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 80px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff7b00;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Features Grid */
.features-grid {
    background: #f8f9fa;
    padding: 80px 0;
    margin: 0 -9999px;
    padding-left: 9999px;
    padding-right: 9999px;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 123, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff7b00, #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    text-align: center;
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff7b00;
}

.why-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    padding: 30px;
    background: linear-gradient(135deg, #ff7b00, #ff9500);
    border-radius: 15px;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 0;
    margin: 80px -9999px 0;
    padding-left: 9999px;
    padding-right: 9999px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .feature-hero h1 {
        font-size: 2.5rem;
    }
    
    .feature-hero .lead {
        font-size: 1.2rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-image {
        margin: 0 auto;
    }
    
    .text-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .feature-hero {
        padding: 100px 0 60px;
    }
    
    .feature-hero h1 {
        font-size: 2rem;
    }
    
    .feature-hero .lead {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .feature-main {
        padding: 60px 0;
    }
    
    .content-wrapper {
        gap: 40px;
    }
    
    .features-grid {
        padding: 60px 20px;
        margin: 0;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-section {
        padding: 60px 20px;
        margin: 60px -20px 0;
    }
}

@media (max-width: 480px) {
    .feature-hero h1 {
        font-size: 1.75rem;
    }
    
    .text-content h2 {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Footer Section */
footer {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    color: #666;
    font-size: 0.9em;
}
