/* Custom Font */
@font-face {
    font-family: 'CustomFont';
    src: url('j.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'CustomFont', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #FFC500;
    color: #1F4E79;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #1F4E79;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFC500;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #FFC500;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.btn-icon {
    background: none;
    border: 2px solid #FFC500;
    color: #FFC500;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-icon:hover {
    background-color: #FFC500;
    color: #1F4E79;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, #FFC500 0%, #FFD740 100%);
}

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

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #1F4E79;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #1F4E79;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'CustomFont', sans-serif;
}

.btn-primary {
    background-color: #1F4E79;
    color: #FFC500;
}

.btn-primary:hover {
    background-color: #163a5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 78, 121, 0.3);
}

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

.btn-secondary:hover {
    background-color: #1F4E79;
    color: #FFC500;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #1F4E79;
    border: 2px solid #1F4E79;
    padding: 0.8rem 2rem;
}

.btn-outline:hover {
    background-color: #1F4E79;
    color: #FFC500;
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* Featured In Section */
.featured-in {
    padding: 3rem 0;
    background-color: #FFD740;
    overflow: hidden;
}

.featured-title {
    text-align: center;
    font-size: 1.5rem;
    color: #1F4E79;
    margin-bottom: 2rem;
    font-weight: bold;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 3rem;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

.logo-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.featured-logo {
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.3s;
}

.featured-logo:hover {
    transform: scale(1.05);
}

.logo-box {
    background-color: white;
    padding: 1.5rem 2.5rem;
    border-radius: 10px;
    text-align: center;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.logo-box:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Featured Banner */
.featured-banner {
    padding: 4rem 0;
    background-color: #FFD740;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.banner-card {
    background-color: #1F4E79;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.banner-card:hover {
    transform: translateY(-10px);
}

.banner-content h3 {
    color: #FFC500;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.banner-content p {
    color: #FFC500;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background-color: #FFC500;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: #1F4E79;
    margin-bottom: 3rem;
    font-weight: bold;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1F4E79 0%, #2a5a8a 100%);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-name {
    font-size: 1.2rem;
    color: #1F4E79;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.3rem;
    color: #1F4E79;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: #FFD740;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1F4E79;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #1F4E79;
    opacity: 0.8;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #1F4E79;
    text-align: center;
}

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

.about-section .section-title {
    color: #FFC500;
}

.about-text {
    color: #FFC500;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background-color: #FFC500;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    color: #1F4E79;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #1F4E79;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #1F4E79;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'CustomFont', sans-serif;
    background-color: white;
    color: #1F4E79;
}

.email-input:focus {
    outline: none;
    border-color: #163a5f;
}

/* Footer */
.footer {
    background-color: #1F4E79;
    color: #FFC500;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
    color: #FFC500;
    margin-bottom: 1rem;
}

.footer-column p,
.footer-column ul li {
    color: #FFC500;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: #FFC500;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 197, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .banner-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

