/* Header */
.nmc-header{
  width:100%;
  background:#ffffff;
  border-bottom:1px solid #eee;
  position:sticky;
  top:0;
  z-index:999;
}

.nmc-container{
  max-width:1200px;
  margin:auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* Logo */
.nmc-logo a{
  font-size:26px;
  font-weight:700;
  text-decoration:none;
  color:#1b2a44;
  font-family:Arial;
}

/* Navigation */
.nmc-nav ul{
  display:flex;
  list-style:none;
  gap:30px;
  margin:0;
  padding:0;
}

.nmc-nav ul li a{
  text-decoration:none;
  font-size:16px;
  color:#333;
  font-weight:500;
  transition:0.3s;
}

.nmc-nav ul li a:hover{
  color:#3c63ff;
}

/* Button */
.nmc-btn{
  background:#1a237e;
  color:#fff;
  padding:10px 22px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.nmc-btn:hover{
  background:#264bdc;
}

/* Mobile Menu Icon */
.nmc-menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* Responsive */
@media (max-width:900px){

  .nmc-menu-toggle{
    display:block;
  }

  .nmc-nav{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#fff;
    border-top:1px solid #eee;
    display:none;
  }

  .nmc-nav ul{
    flex-direction:column;
    padding:20px;
    gap:15px;
  }

  .nmc-nav.active{
    display:block;
  }

  .nmc-cta{
    display:none;
  }
}

/* HERO SECTION */

.nmc-hero-section{
background: #3750de;
padding:80px 20px;
}

.nmc-hero-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:40px;
}

/* TEXT AREA */

.nmc-hero-text h1{
font-size:52px;
color:white;
line-height:1.2;
margin-bottom:20px;
}

.nmc-hero-text span{
color:white;
}

.nmc-hero-text p{
font-size:18px;
color:white;
line-height:1.6;
margin-bottom:30px;
max-width:520px;
}

/* BUTTONS */

.nmc-hero-buttons{
display:flex;
gap:15px;
margin-bottom:25px;
}

.nmc-primary-btn{
background:white;
color:black;
padding:14px 28px;
border-radius:10px;
text-decoration:none;
font-weight:600;
}

.nmc-secondary-btn{
border:2px solid white;
color:white;
padding:12px 26px;
border-radius:10px;
text-decoration:none;
font-weight:600;
}

.nmc-primary-btn:hover{
background:#2b4fe0;
}

.nmc-secondary-btn:hover{
background:#3b63f5;
color:white;
}

/* FEATURES */

.nmc-hero-features{
display:flex;
gap:30px;
font-size:16px;
color:#333;
}

/* VISUAL BOXES */

.nmc-hero-visual{
display:grid;
grid-template-columns:repeat(2,150px);
gap:30px;
justify-content:center;
}

.nmc-box{
width:150px;
height:150px;
border-radius:20px;
animation:floatBox 4s ease-in-out infinite;
}

.red{background:#ff3c33;}
.green{background:#4caf50;}
.blue{background:#3b84c3;}
.yellow{background:#ffc107;}

.nmc-box:nth-child(2){animation-delay:0.4s;}
.nmc-box:nth-child(3){animation-delay:0.7s;}
.nmc-box:nth-child(4){animation-delay:1s;}

@keyframes floatBox{
0%{transform:translateY(0)}
50%{transform:translateY(-12px)}
100%{transform:translateY(0)}
}

/* RESPONSIVE */

@media (max-width:900px){

.nmc-hero-container{
grid-template-columns:1fr;
text-align:center;
}

.nmc-hero-text p{
margin:auto;
}

.nmc-hero-buttons{
justify-content:center;
}

.nmc-hero-features{
justify-content:center;
flex-wrap:wrap;
}

.nmc-hero-visual{
margin-top:40px;
}

.nmc-hero-text h1{
font-size:38px;
}

}

/* ABOUT SECTION */

.nmc-about-section{
padding:80px 20px;
background:#ffffff;
}

.nmc-about-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

/* IMAGE */

.nmc-about-image img{
width:100%;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* CONTENT */

.nmc-about-content h2{
font-size:38px;
color:#1e2a40;
margin-bottom:20px;
}

.nmc-about-content p{
font-size:17px;
line-height:1.7;
color:#555;
margin-bottom:18px;
}

/* FEATURES */

.nmc-about-features{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:25px;
}

.nmc-feature-box{
background:#11197581;
padding:18px;
border-radius:10px;
}

.nmc-feature-box h4{
font-size:18px;
color:white;
margin-bottom:8px;
}

.nmc-feature-box p{
font-size:14px;
color:white;
}

/* RESPONSIVE */

@media (max-width:900px){

.nmc-about-container{
grid-template-columns:1fr;
}

.nmc-about-content{
text-align:center;
}

.nmc-about-features{
grid-template-columns:1fr;
}

}

/* PRODUCTS SECTION */

.nmc-products-section{
padding:80px 20px;
background:#f5f6fa;
}

.nmc-products-container{
max-width:1200px;
margin:auto;
text-align:center;
}

.nmc-products-title{
font-size:40px;
color:#1d2b45;
margin-bottom:10px;
}

.nmc-products-subtitle{
color:#666;
margin-bottom:50px;
font-size:18px;
}

/* GRID */

.nmc-products-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* CARD */

.nmc-product-card{
background:white;
border-radius:14px;
padding:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.nmc-product-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

.nmc-product-card img{
width:100%;
border-radius:10px;
margin-bottom:15px;
}

.nmc-product-card h3{
font-size:20px;
color:#1d2b45;
margin-bottom:10px;
}

.nmc-price{
font-size:18px;
font-weight:600;
color:#2b5cff;
margin-bottom:15px;
}

/* BUTTON */

.nmc-buy-btn{
display:inline-block;
background:#1a237e;
color:white;
padding:10px 25px;
border-radius:8px;
text-decoration:none;
font-weight:500;
}

.nmc-buy-btn:hover{
background:#1d46d4;
}

/* RESPONSIVE */

@media (max-width:1000px){

.nmc-products-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.nmc-products-grid{
grid-template-columns:1fr;
}

.nmc-products-title{
font-size:32px;
}

}

/* FAQ SECTION */

.nmc-faq-section{
padding:80px 20px;
background:#f5f6fa;
}

.nmc-faq-container{
max-width:900px;
margin:auto;
}

.nmc-faq-title{
text-align:center;
font-size:36px;
margin-bottom:40px;
color:#1d2b45;
}

/* FAQ ITEM */

.nmc-faq-item{
background:#fff;
margin-bottom:15px;
border-radius:8px;
overflow:hidden;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

/* QUESTION */

.nmc-faq-question{
width:100%;
text-align:left;
padding:18px 20px;
font-size:17px;
font-weight:600;
background:#fff;
border:none;
cursor:pointer;
outline:none;
position:relative;
}

/* ANSWER */

.nmc-faq-answer{
display:none;
padding:0 20px 18px 20px;
color:#555;
line-height:1.6;
}

/* ACTIVE STATE */

.nmc-faq-item.active .nmc-faq-answer{
display:block;
}

/* MOBILE */

@media(max-width:600px){

.nmc-faq-title{
font-size:28px;
}

.nmc-faq-question{
font-size:16px;
}

}

/* DISCLAIMER */

.nmc-disclaimer-section{
background:#9fa8da8f;
padding:60px 20px;
}

.nmc-disclaimer-box{
max-width:900px;
margin:auto;
background:#ffffff;
padding:35px;
border-radius:12px;
border-left:5px solid #2b5cff;
box-shadow:0 6px 20px rgba(0,0,0,0.05);
}

.nmc-disclaimer-box h2{
margin-bottom:15px;
color:#1d2b45;
}

.nmc-disclaimer-box p{
color:#555;
line-height:1.7;
margin-bottom:12px;
}


/* FOOTER */

.nmc-footer{
background:#111a75;
border-top:1px solid #eee;
padding-top:60px;
}

.nmc-footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
padding:0 20px 40px;
}

.nmc-footer-col h3{
font-size:24px;
margin-bottom:15px;
color:white;
}

.nmc-footer-col h4{
font-size:18px;
margin-bottom:15px;
color:white;
}

.nmc-footer-col p{
color:white;

line-height:1.6;
}

.nmc-footer-col ul{
list-style:none;
padding:0;
}

.nmc-footer-col ul li{
margin-bottom:10px;
}

.nmc-footer-col ul li a{
text-decoration:none;
color:white;
}

.nmc-footer-col ul li a:hover{
color:#2b5cff;
}


/* SOCIAL */

.nmc-social-icons{
margin-top:15px;
}

.nmc-social-icons a{
display:inline-block;
width:30px;
height:30px;
line-height:30px;
text-align:center;
background:#2b5cff;
color:#fff;
border-radius:4px;
margin-right:6px;
font-size:14px;
text-decoration:none;
}

.nmc-payment-img{
margin-top:15px;
max-width:180px;
}


/* FOOTER BOTTOM */

.nmc-footer-bottom{
text-align:center;
padding:20px;
border-top:1px solid #11197560;
color :white;
font-size:14px;
}


/* RESPONSIVE */

@media (max-width:900px){

.nmc-footer-container{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.nmc-footer-container{
grid-template-columns:1fr;
text-align:center;
}

.nmc-social-icons{
justify-content:center;
}

}

.nmc-aboutpage-section{
padding:80px 20px;
background:#f6f7fb;
}

.nmc-aboutpage-container{
max-width:900px;
margin:auto;
background:#ffffff;
padding:40px;
border-radius:10px;
box-shadow:0 6px 20px rgba(0,0,0,0.05);
}

.nmc-aboutpage-title{
font-size:36px;
margin-bottom:25px;
color:#1d2b45;
text-align:center;
}

.nmc-aboutpage-container p{
font-size:17px;
line-height:1.7;
color:#555;
margin-bottom:18px;
}

/* Responsive */

@media (max-width:600px){

.nmc-aboutpage-title{
font-size:28px;
}

.nmc-aboutpage-container{
padding:25px;
}

}

.nmc-contact-section{
padding:80px 20px;
background:#f6f7fb;
}

.nmc-contact-container{
max-width:1100px;
margin:auto;
}

.nmc-contact-title{
text-align:center;
font-size:36px;
color:#1d2b45;
margin-bottom:10px;
}

.nmc-contact-subtitle{
text-align:center;
color:#666;
max-width:700px;
margin:auto;
margin-bottom:50px;
line-height:1.6;
}

/* GRID */

.nmc-contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

/* FORM */

.nmc-contact-form{
background:#ffffff;
padding:30px;
border-radius:10px;
box-shadow:0 6px 20px rgba(0,0,0,0.05);
}

.nmc-form-group{
margin-bottom:18px;
}

.nmc-form-group label{
display:block;
margin-bottom:6px;
font-weight:500;
color:#333;
}

.nmc-form-group input,
.nmc-form-group textarea{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:6px;
font-size:15px;
}

.nmc-form-group input:focus,
.nmc-form-group textarea:focus{
outline:none;
border-color:#2b5cff;
}

/* BUTTON */

.nmc-contact-btn{
background:#2b5cff;
color:white;
border:none;
padding:12px 25px;
border-radius:6px;
font-size:16px;
cursor:pointer;
}

.nmc-contact-btn:hover{
background:#1f47d4;
}

/* CONTACT INFO */

.nmc-contact-info{
background:#ffffff;
padding:30px;
border-radius:10px;
box-shadow:0 6px 20px rgba(0,0,0,0.05);
}

.nmc-contact-info h3{
margin-bottom:15px;
color:#1d2b45;
}

.nmc-contact-info p{
color:#555;
line-height:1.6;
margin-bottom:15px;
}

.nmc-contact-info ul{
padding-left:18px;
margin-bottom:20px;
color:#555;
}

.nmc-contact-note{
background:#f3f5ff;
padding:15px;
border-radius:6px;
}

/* RESPONSIVE */

@media(max-width:800px){

.nmc-contact-grid{
grid-template-columns:1fr;
}

.nmc-contact-title{
font-size:30px;
}

}

.nmc-terms-section{
padding:80px 20px;
background:#f6f7fb;
}

.nmc-terms-container{
max-width:900px;
margin:auto;
background:#ffffff;
padding:40px;
border-radius:10px;
box-shadow:0 6px 20px rgba(0,0,0,0.05);
}

.nmc-terms-title{
text-align:center;
font-size:36px;
margin-bottom:30px;
color:#1d2b45;
}

.nmc-terms-container h2{
margin-top:25px;
margin-bottom:10px;
color:#1d2b45;
font-size:22px;
}

.nmc-terms-container p{
font-size:16px;
line-height:1.7;
color:#555;
margin-bottom:15px;
}

/* Responsive */

@media(max-width:600px){

.nmc-terms-title{
font-size:28px;
}

.nmc-terms-container{
padding:25px;
}

}

.nmc-product-section{
padding:60px 20px;
background:#9fa8da7d;
font-family:Arial, sans-serif;
}

.nmc-container{
max-width:1200px;
margin:auto;
}

.nmc-breadcrumb{
margin-bottom:30px;
color:#555;
font-size:14px;
}

.nmc-breadcrumb a{
color:#2f6df6;
text-decoration:none;
}

.nmc-product-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.nmc-product-image{
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
text-align:center;
}

.nmc-product-image img{
max-width:100%;
}

.nmc-product-badge{
background:#1a237e;
color:#fff;
padding:6px 14px;
border-radius:20px;
font-size:13px;
display:inline-block;
margin-bottom:15px;
}

.nmc-product-details h1{
font-size:40px;
margin-bottom:15px;
color:#0a2540;
}

.nmc-rating{
color:#ffb400;
font-size:18px;
margin-bottom:10px;
}

.nmc-rating span{
color:#666;
font-size:14px;
margin-left:5px;
}

.nmc-product-desc{
color:#555;
margin-bottom:20px;
line-height:1.6;
}

.nmc-price{
margin-bottom:20px;
}

.nmc-old-price{
text-decoration:line-through;
color:#888;
margin-right:15px;
font-size:18px;
}

.nmc-new-price{
font-size:34px;
color:#1a237e;
font-weight:bold;
}

.nmc-features{
list-style:none;
padding:0;
margin-bottom:25px;
}

.nmc-features li{
margin-bottom:10px;
color:#333;
}

.nmc-buy-btn{
display:inline-block;
background:#1a237e;
color:#fff;
padding:12px 30px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.nmc-buy-btn:hover{
background:#1e56d9;
}

/* Responsive */

@media(max-width:900px){

.nmc-product-grid{
grid-template-columns:1fr;
text-align:center;
}

.nmc-product-details h1{
font-size:30px;
}

}


.m365bs-section{
padding:80px 20px;
background:#f5f8ff;
font-family:Arial, Helvetica, sans-serif;
}

.m365bs-container{
max-width:1200px;
margin:auto;
}

.m365bs-header{
text-align:center;
margin-bottom:50px;
}

.m365bs-header h2{
font-size:36px;
color:#1a1a1a;
margin-bottom:15px;
}

.m365bs-header p{
font-size:17px;
color:#555;
max-width:850px;
margin:auto;
line-height:1.7;
}

.m365bs-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.m365bs-image img{
width:100%;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.m365bs-content h3{
font-size:24px;
margin-bottom:15px;
color:#222;
}

.m365bs-content p{
font-size:16px;
color:#555;
line-height:1.8;
margin-bottom:18px;
}

.m365bs-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-top:20px;
}

.m365bs-feature{
background:#fff;
padding:15px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
font-size:15px;
color:#333;
}

.m365bs-feature:before{
content:"✔ ";
color:#2b6df6;
font-weight:bold;
}

@media(max-width:900px){

.m365bs-grid{
grid-template-columns:1fr;
}

.m365bs-features{
grid-template-columns:1fr;
}

.m365bs-header h2{
font-size:28px;
}

}
