*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#333;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff;
    padding:20px 40px;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

.logo img{
    width:450px;
    height:auto;
}

nav ul{
    list-style:none;
    display:flex;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:#0A2C5A;
    font-size:20px;
    font-weight:bold;
}

nav a:hover{
    color:#ff1493;
}

.hero-banner{
    width:100%;
    margin:0 auto;
}

.hero-banner{
    width:100%;
    background:#fff;
    margin:0;
    padding:0;
}
.hero-banner img{
    width:100%;
    display:block;
    height:auto;
}





.buttons{
    display:flex;
    gap:20px;
}

.btn-red,
.btn-blue{
    display:inline-block;
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:8px;
    font-weight:bold;
}

.btn-red{background:#d62828;}
.btn-blue{background:#0A2C5A;}

.hero-image img{
    width:500px;
    max-width:100%;
    height:auto;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:70px 60px;
    background:#fff;
    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:64px;
    color:#0A2C5A;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-text h1 span{
    color:#ff1493;
}

.hero-text p{
    font-size:24px;
    color:#555;
    line-height:1.6;
    margin-bottom:35px;
}

.hero-image{
    flex:1;
    text-align:center;
}


.categories{
    padding:70px;
    background:#fff;
}

.categories h2{
    text-align:center;
    font-size:48px;
    color:#0A2C5A;
    margin-bottom:50px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.card{
    background:#f8f8f8;
    border-radius:15px;
    padding:20px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.12);
}

.placeholder{
    font-size:70px;
    margin-bottom:20px;
}

.card h3{
    color:#0A2C5A;
    margin-bottom:20px;
}

.card a{
    display:inline-block;
    background:#ff1493;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:8px;
    font-weight:bold;
}
.category-image{
    width:100%;
    height:220px;
    object-fit:contain;
    border-radius:12px;
    margin-bottom:20px;
    box-shadow:0 4px 10px rgba(0,0,0,.15);
}

/* Featured Designs */

.featured-products {
    padding: 60px 40px;
    background: #f8f8f8;
    text-align: center;
}

.featured-products h2 {
    font-size: 2rem;
    color: #0b2f6b;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
    transition: transform .3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h3 {
    margin: 10px 0;
    color: #333;
}

.price {
    color: #e91e63;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.button {
    display: inline-block;
    background: #e91e63;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .3s;
}

.button:hover {
    background: #c2185b;
}
.tagline {
    font-size: 1.2rem;
    color: #0b2f6b;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 15px;
	white-space: nowrap;
}

.why-us{
    background:#ffffff;
    padding:70px 40px;
    text-align:center;
}

.why-us h2{
    font-size:2.6rem;
    color:#0A2C5A;
    margin-bottom:50px;
}
.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-card{
    background:#f8f8f8;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.12);
}

.why-card h3{
    color:#0A2C5A;
    margin-bottom:15px;
}

.why-card p{
    color:#555;
    line-height:1.6;
}

/* ==========================
   Footer
========================== */

footer{
    background:#0A2C5A;
    color:white;
    margin-top:60px;
}

.footer-container{
    max-width:1400px;
    margin:auto;
    padding:60px 40px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-column h3{
    color:#ff1493;
    margin-bottom:20px;
}

.footer-column p{
    line-height:1.8;
}

.footer-column a{
    display:block;
    color:white;
    text-decoration:none;
    margin-bottom:12px;
}

.footer-column a:hover{
    color:#ff1493;
}

.copyright{
    text-align:center;
    padding:20px;
    background:#07224d;
    font-size:.9rem;
}
.footer-column a:visited {
    color: white;
}

.footer-column a:hover {
    color: #ff1493;
}

.hero{
    max-width:1400px;
    margin:40px auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    padding:0 30px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:52px;
    color:#0A2C5A;
    margin-bottom:20px;
}

.hero-text p{
    font-size:22px;
    line-height:1.7;
    color:#444;
    margin-bottom:30px;
}
.custom-content{
    max-width:1200px;
    margin:60px auto;
    padding:40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.10);
}

.custom-text{
    flex:1;
}

.custom-text h1{
    font-size:48px;
    color:#0A2C5A;
    margin-bottom:20px;
}

.custom-text h2{
    color:#0A2C5A;
    margin-top:30px;
    margin-bottom:10px;
}

.custom-text p,
.custom-text li{
    font-size:20px;
    line-height:1.8;
}

.custom-text ul{
    padding-left:25px;
}

.custom-image{
    flex:1;
    text-align:center;
}

.custom-image img{
    width:100%;
    max-width:500px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.20);
}

.steps h3{
    color:#0A2C5A;
    margin-top:25px;
}

.steps p{
    margin-bottom:18px;
}

.custom-benefits{
    max-width:1200px;
    margin:70px auto;
    padding:0 30px;
    text-align:center;
}

.custom-benefits h2{
    font-size:2.3rem;
    color:#0d2c66;
    margin-bottom:45px;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.benefit{
    background:#ffffff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    transition:.3s;
}

.benefit:hover{
    transform:translateY(-6px);
}

.benefit h3{
    color:#ff1493;
    margin-bottom:15px;
}

.benefit p{
    color:#444;
    line-height:1.7;
}

.custom-gallery{
    max-width:1200px;
    margin:80px auto;
    padding:0 30px;
    text-align:center;
}

.custom-gallery h2{
    font-size:2.4rem;
    color:#0d2c66;
    margin-bottom:15px;
}

.custom-gallery p{
    max-width:700px;
    margin:0 auto 45px;
    color:#555;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
}

.gallery-item{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    display:block;
}

.gallery-item h3{
    padding:20px;
    color:#0d2c66;
}

.cta-section{
    max-width:900px;
    margin:80px auto;
    text-align:center;
    background:#14366b;
    color:white;
    padding:60px 40px;
    border-radius:18px;
}

.cta-section h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta-section p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

.sub-tagline {
    font-size: 0.8em;           /* bigger */
    font-weight: 25;           /* extra-bold / black */
    letter-spacing: 2px;        /* makes it look even more striking */
    text-transform: uppercase;  /* optional - turns it all caps */
  }
.sub-tagline {
    font-size:0.9em;
    font-weight: 900;           /* extra-bold / black */
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #f2028c;                /* makes it pure black for extra impact */
  }


@media (max-width: 600px) {
    .logo img {
        width: 200px;
        height: auto;
    }
}


@media (max-width: 600px) {
    nav ul {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
}


@media (max-width: 600px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


.notice {
    font-size: 16px;
    line-height: 1.4;
    margin: 10px 15px;
    text-align: center;
}

@media (max-width: 600px) {
    header {
        padding: 15px 10px;
    }

    .logo {
        width: 100%;
    }

    .logo img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
}

.tagline {
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
    width: 100%;
    max-width: 100%;
}




