/*==================================
    GOOGLE FONT
==================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f8fc;
    color:#333;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}
/* HEADER */

header{
background:#fff;
padding:15px 3%;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 3px 15px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:1000;
}

.logo{
display:flex;
align-items:center;
gap:15px;
}

.logo img{
width:50px;
}

.logo h2{
font-size:26px;
color:#08276d;
}

.logo span{
font-size:14px;
color:#666;
}

.nav-links{
      display:flex;
      gap:30px;
    }
    /* ================= DROPDOWN ================= */

.dropdown{
  position:relative;
}

.drop-btn{
  color:#061c54;
  font-weight:600;
  transition:0.3s;
}

.drop-btn:hover{
  color:#0aa6df;
}

.dropdown-content{
  position:absolute;
  top:35px;
  left:0;
  min-width:240px;
  background:#fff;
  border-radius:12px;
  padding:10px 0;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);

  opacity:0;
  visibility:hidden;
  transform:translateY(10px);

  transition:0.3s;
  z-index:999;
}

.dropdown-content a{
  display:block;
  padding:12px 20px;
  color:#061c54;
  font-weight:500;
  transition:0.3s;
}

.dropdown-content a:hover{
  background:#f4f8ff;
  color:#08a6df;
  padding-left:28px;
}

.dropdown:hover .dropdown-content{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
/* Sub Dropdown */

.sub-dropdown{
  position:relative;
}

.sub-btn{
  display:block;
  padding:12px 20px;
  color:#061c54;
  font-weight:500;
}

.sub-dropdown-content{
  position:absolute;
  top:0;
   left: 100%;
  right: auto;
  min-width:220px;
  background:#fff;
  border-radius:12px;
  padding:10px 0;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);

  opacity:0;
  visibility:hidden;
  transform:translateX(10px);
  transition:0.3s;
}

.sub-dropdown-content a{
  display:block;
  padding:12px 20px;
  color:#061c54;
  font-weight:500;
}

.sub-dropdown-content a:hover{
  background:#f4f8ff;
  color:#08a6df;
}

.sub-dropdown:hover .sub-dropdown-content{
  opacity:1;
  visibility:visible;
  transform:translateX(0);
}

    .nav-links a{
      color:#061c54;
      font-weight:600;
      transition:0.3s;
      text-decoration: none !important;
    }

    .nav-links a:hover{
      color:#0aa6df;
    }
    .contact-info{
display:flex;
flex-direction:column;
justify-content:center;
}

.contact-info h3{
color:#08276d;
margin-bottom:20px;
}
.header-contact{
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.header-contact i{
    color:#ff4d4d;
    font-size:22px;
    margin-top:4px;
}

.phone-numbers{
    display:flex;
    flex-direction:column;
    line-height:1.5;
}

.phone-numbers a{
    text-decoration:none;
    color:#08276d;
    font-weight:600;
    font-size:15px;
    transition:0.3s;
}

.phone-numbers a:hover{
    color:#f7941d;
}


.menu-toggle{
    display:none;
    font-size:32px;
    font-weight:700;
    color:#08276d;
    cursor:pointer;
    line-height:1;
}

/*==================================
    HERO SECTION
==================================*/

.components-hero{
    background:linear-gradient(rgba(15,50,110,.65),rgba(15,50,110,.65)),
    url("../Images/electronics-bg.jpg") center/cover;
    color:#fff;
    text-align:center;
    padding:110px 20px;
}

.components-hero h1{
    font-size:48px;
    margin-bottom:20px;
    font-weight:700;
}

.components-hero p{
    max-width:900px;
    margin:auto;
    font-size:18px;
}

.hero-buttons{
    margin-top:40px;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:14px 32px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    margin:10px;
    transition:.35s;
}

.btn-primary{
    background:#f7941d;
    color:#fff;
}

.btn-primary:hover{
    background:#d97900;
    transform:translateY(-3px);
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#002d72;
}

/*==================================
ABOUT
==================================*/

.about-components{
    padding:80px 0;
    text-align:center;
    background:#fff;
}

.about-components h2{
    color:#002d72;
    font-size:36px;
    margin-bottom:20px;
}

.about-components p{
    max-width:950px;
    margin:auto;
    font-size:17px;
}

/*==================================
WHY NMOS
==================================*/

.why-nmos{
    padding:80px 0;
}

.why-nmos h2{
    text-align:center;
    color:#002d72;
    margin-bottom:50px;
    font-size:36px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card i{
    font-size:45px;
    color:#f7941d;
    margin-bottom:20px;
}

.feature-card h3{
    color:#002d72;
    margin-bottom:15px;
}

/*==================================
BRANDS
==================================*/

.brands-section{
    background:#fff;
    padding:90px 0;
}

.brands-section h2{
    text-align:center;
    color:#002d72;
    font-size:38px;
}

.section-text{
    text-align:center;
    margin:15px 0 50px;
    color:#666;
}

.brands-section{
    padding:90px 0;
    background:#f7f9fc;
}

.brands-section h2{
    text-align:center;
    color:#002d72;
    font-size:38px;
}

.brands-section p{
    text-align:center;
    margin:15px auto 50px;
    color:#666;
}

.brand-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.brand-card{

background:#fff;

padding:30px;

border-radius:15px;

text-align:center;

cursor:pointer;

transition:.35s;

box-shadow:0 10px 25px rgba(0,0,0,.08);

border:2px solid transparent;

}

.brand-card:hover{

transform:translateY(-10px);

border-color:#f7941d;

}

.brand-card img{

width:150px;

height:auto;

object-fit:contain;

margin-bottom:20px;

}

.brand-card h3{

color:#002d72;

font-size:20px;

}

.brand-details{

margin-top:50px;

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.brand-details h2{

color:#002d72;

margin-bottom:20px;

}

.brand-details ul{

margin-left:20px;

margin-top:20px;

}

.brand-details li{

margin-bottom:10px;

}





/*==================================
INDUSTRIES
==================================*/

.industries{
    padding:90px 0;
}

.industries h2{
    text-align:center;
    color:#002d72;
    margin-bottom:50px;
    font-size:36px;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.industry-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.industry-card:hover{
    transform:translateY(-8px);
}

.industry-card i{
    font-size:45px;
    color:#f7941d;
    margin-bottom:20px;
}

.industry-card h3{
    color:#002d72;
}
/* CONTACT */

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form{
width: 100%;
  max-width: 900px;
  background: #ffffff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 18px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  font-size: 16px;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  background: #08276d;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #0b3d9a;
}

.contact-info{
display:flex;
flex-direction:column;
justify-content:center;
}

.contact-info h3{
color:#08276d;
margin-bottom:20px;
}
.header-contact{
    margin-left:30px;
    font-size:16px;
    font-weight:600;
    color:#0b2e83;
    white-space:nowrap;
}
#contact{
    padding:80px 0;
    background:#f5f8fc;
}

#contact .title{
    text-align:center;
    font-size:42px;
    color:#08276d;
    font-weight:700;
    margin-bottom:40px;
}

#contact .title::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:#f7941d;
    margin:15px auto;
    border-radius:5px;
}

/*==================================
CTA
==================================*/

.cta{
    background:#002d72;
    color:#fff;
    text-align:center;
    padding:90px 20px;
}

.cta h2{
    font-size:40px;
    margin-bottom:20px;
}

.cta p{
    max-width:800px;
    margin:auto auto 35px;
}

/* FOOTER */

footer{
      background:#061c54;
      color:#fff;
      padding:50px 8%;
    }

    .footer-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
      gap:30px;
    }

    footer h3{
      margin-bottom:20px;
      color:#08a6df;
    }

    footer p{
      margin-bottom:10px;
      line-height:28px;
    }

    .footer-bottom{
      margin-top:40px;
      text-align:center;
      border-top:1px solid rgba(255,255,255,0.2);
      padding-top:20px;
      color:#ccc;
    }
    .brand-header{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    margin-bottom:40px;
}

.brand-header h2{
    font-size:40px;
    color:#08276d;
    font-weight:700;
    margin-bottom:20px;
}

.brand-header p{
    max-width:700px;
    font-size:20px;
    color:#555;
    line-height:1.7;
}
.brand-header img{
    width:350px;
    max-width:100%;
    height:auto;
    object-fit:contain;
    display:block;
    margin:0 auto -30px;
}

.brand-products{

margin-top:30px;

}

.brand-products h3{

color:#08276d;

margin-bottom:20px;

font-size:30px;

}

.brand-products ul{

padding-left:25px;

}

.brand-products li{

margin-bottom:12px;

font-size:18px;

}

/* ===========================
   Laptop (1200px)
=========================== */

@media (max-width:1200px){

.container{
    width:95%;
}

.components-hero h1{
    font-size:42px;
}

.brand-grid{
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.brand-card{
    padding:25px;
}

.brand-card img{
    width:120px;
}

.brand-header img{
    width:260px;
}

.brand-header h2{
    font-size:46px;
}

.contact-form{
    max-width:1000px;
}

}
/* ===========================
   Tablet (992px)
=========================== */

@media (max-width:992px){

.container{
    width:94%;
}

.components-hero{
    padding:90px 20px;
}

.components-hero h1{
    font-size:38px;
}

.components-hero p{
    font-size:17px;
}

.features{
    grid-template-columns:repeat(2,1fr);
}

.brand-grid{
    grid-template-columns:repeat(2,1fr);
}

.brand-card{
    padding:25px;
}

.brand-card img{
    width:140px;
}

.brand-header img{
    width:230px;
}

.brand-header h2{
    font-size:42px;
}

.brand-header p{
    font-size:18px;
}

.industry-grid{
    grid-template-columns:repeat(2,1fr);
}

.contact-form{
    max-width:90%;
}

}
/* ===========================
   Mobile Landscape
=========================== */

@media (max-width:768px){
    header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-direction:row;
    padding:12px 20px;
    background:#fff;
    position:sticky;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    flex:1;
}

.logo img{
    width:48px;
    height:auto;
}

.logo h2{
    font-size:22px;
    margin:0;
    line-height:1;
}

.logo span{
    display:block;
    font-size:12px;
    margin-top:3px;
    color:#666;
    line-height:1.2;
}

.menu-toggle{
    display:flex;
    justify-content:center;
    align-items:center;
    width:42px;
    height:42px;
    font-size:34px;
    flex-shrink:0;
}

.navbar{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    max-height:0;
    overflow:hidden;
    transition:.4s ease;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
    z-index:999;
}

.navbar.active{
    max-height:900px;
}

.nav-links{
    display:flex;
    flex-direction:column;
    width:100%;
    gap:0;
}

.nav-links>a,
.drop-btn{
    display:block;
    width:100%;
    padding:16px 22px;
    border-bottom:1px solid #ececec;
}

.dropdown-content,
.sub-dropdown-content{
    position:static;
    opacity:1;
    visibility:visible;
    display:none;
    transform:none;
    box-shadow:none;
    background:#f7f9fc;
    min-width:100%;
}

.dropdown:hover .dropdown-content{
    display:block;
}

.sub-dropdown:hover .sub-dropdown-content{
    display:block;
}

.dropdown-content a,
.sub-dropdown-content a{
    padding:14px 35px;
}

.header-contact{
    margin:0;
    padding:18px;
    text-align:Left;
    border-top:1px solid #eee;
}

.components-hero{
    padding:70px 20px;
}

.components-hero h1{
    font-size:32px;
}

.components-hero p{
    font-size:16px;
}

.hero-buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.hero-buttons a{
    width:220px;
}


.features{
    grid-template-columns:1fr;
}

.brand-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.brand-card{
    padding:20px;
}

.brand-card img{
    width:110px;
}

.brand-card h3{
    font-size:18px;
}

.brand-details{
    padding:30px;
}

.brand-header img{
    width:180px;
}

.brand-header h2{
    font-size:34px;
}

.brand-header p{
    font-size:16px;
}

.brand-products h3{
    font-size:26px;
}

.brand-products li{
    font-size:16px;
}

.industry-grid{
    grid-template-columns:1fr;
}

.contact-form{
    padding:30px;
}

}
/* ===========================
   Mobile
=========================== */

@media (max-width:576px){

.container{
    width:92%;
}

.components-hero{
    padding:60px 15px;
}

.components-hero h1{
    font-size:28px;
}

.components-hero p{
    font-size:15px;
}

.brand-grid{
    grid-template-columns:1fr;
}

.brand-card{
    padding:25px;
}

.brand-card img{
    width:130px;
}

.brand-header img{
    width:170px;
}

.brand-header h2{
    font-size:30px;
}

.brand-header p{
    font-size:15px;
}

.brand-products h3{
    font-size:22px;
}

.brand-products li{
    font-size:15px;
}

.btn-primary{
    width:100%;
    text-align:center;
}

.contact-form{
    padding:25px;
}

.contact-form input,
.contact-form textarea{
    padding:14px;
    font-size:15px;
}

}
/* ===========================
   Small Phones
=========================== */

@media (max-width:480px){
    header{
    padding:10px 15px;
}

.logo{
    gap:10px;
}

.logo img{
    width:31px;
}

.logo h2{
    font-size:18px;
}

.logo span{
    font-size:11px;
}

.menu-toggle{
    width:38px;
    height:38px;
    font-size:30px;
}

.components-hero h1{
    font-size:24px;
}

.components-hero p{
    font-size:14px;
}

.brand-card img{
    width:110px;
}

.brand-header img{
    width:150px;
}

.brand-header h2{
    font-size:28px;
}

.brand-header p{
    font-size:14px;
}

.brand-products h3{
    font-size:20px;
}

.contact-form{
    padding:20px;
}

}