*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
    background:#f7f9fc;
    color:#222;
}

a{
text-decoration:none;
}

/* HEADER */

header{
background:#fff;
padding:15px 8%;
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;
  right:100%;
  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;
    }

    .nav-links a:hover{
      color:#0aa6df;
    }

/* HERO */

.hero{
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(8,166,223,.15);
    border-radius:50%;
    right:-150px;
    top:-150px;
}

.hero::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    bottom:-120px;
    left:-120px;
}

.hero-content{
max-width:700px;
}

.hero h1{
font-size:65px;
line-height:75px;
margin-bottom:25px;
}

.hero h1 span{
color:#08a6df;
}

.hero p{
font-size:22px;
margin-bottom:35px;
}

.btn{
    display:inline-block;
    padding:16px 38px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    margin-right:10px;
}

.primary{
    background:linear-gradient(135deg,#08a6df,#08276d);
    color:white;
}

.primary:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(8,166,223,.4);
}

/* SECTION */

section{
padding:90px 8%;
}

.title{
    font-size:48px;
    color:#08276d;
    text-align:center;
    margin-bottom:15px;
    font-weight:700;
    position:relative;
}

.title::after{
    content:'';
    width:90px;
    height:4px;
    background:#08a6df;
    display:block;
    margin:15px auto;
    border-radius:50px;
}


.products,
.accessories,
.testimonials{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.why-choose {
    padding: 80px 8%;
    background: #f7f9fc;
}

.title {
    text-align: center;
    font-size: 3rem;
    color: #002b7f;
    margin-bottom: 60px;
    position: relative;
}

.title::after {
    content: "";
    width: 90px;
    height: 4px;
    background: #1da1f2;
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.feature:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0b5ed7, #1da1f2);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: #fff;
}

.feature h3 {
    color: #002b7f;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature p {
    color: #555;
    line-height: 1.7;
}

.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:35px;
}
.accessories{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:50px;
}

.acc{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.acc:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(8,39,109,.15);
}

.acc img{
    width:100%;
    height:220px;
    object-fit:cover;
    background:#f8f9fc;
}

.acc-content{
    padding:25px;
}

.acc h4{
    color:#08276d;
    font-size:24px;
    margin-bottom:10px;
}

.acc p{
    color:#555;
    line-height:1.7;
}
.acc-tag{
    display:inline-block;
    margin-top:15px;
    background:#08a6df;
    color:white;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.product,
.acc {
    position: relative;
    overflow: hidden;
}

.contact-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background: #0b5ed7;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;

    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

.product:hover .contact-btn,
.acc:hover .contact-btn {
    opacity: 1;
    transform: translateY(0);
}

.contact-btn:hover {
    background: #084298;
}

.testimonials{
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
}

.feature,
.testimonial{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature h3{
color:#08276d;
margin-bottom:10px;
}

.product{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:all .4s ease;
    position:relative;
}

.product:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(8,39,109,.18);
}

.product::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#08276d,#08a6df);
}

.product img{
    width:100%;
    height:280px;
    object-fit:contain;
    background:#f8f9fc;
    padding:15px;
    transition:.4s;
}

.product:hover img{
    transform:scale(1.08);
}

.product-content{
padding:25px;
}

.product h3{
color:#08276d;
margin-bottom:10px;
}

/* CASE STUDY */

.case-study{
background:#08276d;
color:white;
padding:50px;
border-radius:25px;
text-align:center;
}

.stats{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
margin-top:30px;
}

.stat{
font-size:28px;
font-weight:700;
}

/* 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;
}

.header-contact a{
    color:#0b2e83;
    text-decoration:none;
}
/* CTA */

.cta{
background:linear-gradient(135deg,#08276d,#08a6df);
color:white;
text-align:center;
}

.cta h2{
font-size:42px;
margin-bottom:20px;
}

/* 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;
    }

/* MOBILE */


.popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.4s;

    z-index: 9999;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-box {
    width: 90%;
    max-width: 500px;
    background: #fff;
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    animation: popupScale 0.4s ease;
}

@keyframes popupScale {
    from {
        transform: scale(.8);
    }
    to {
        transform: scale(1);
    }
}

.popup-box h2 {
    color: #0b5ed7;
    margin-bottom: 15px;
}

.popup-box p {
    color: #555;
    line-height: 1.7;
}

.popup-features {
    margin: 25px 0;
}

.popup-features span {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.popup-btn {
    display: inline-block;
    background: #0b5ed7;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.popup-btn:hover {
    background: #084298;
}

.popup-contact {
    margin-top: 20px;
    font-size: 14px;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #888;
}
.partners {
    padding: 20px 8%;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.partner-heading h2 {
    font-size: 2.5rem;
    color: #002b7f;
    margin-bottom: 15px;
}

.partner-heading p {
    color: #666;
    margin-bottom: 50px;
}

.partner-slider {
    width: 100%;
    overflow: hidden;
}

.partner-track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

.partner-track img {
    width: 180px;
    height: 145px;
    object-fit: contain;
    background: #fff;
    padding: -30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 43, 127, 0.08);
    transition: 0.3s;
}

.partner-track img:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 43, 127, 0.15);
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ===========================
   FIRE ALARM SECTION
=========================== */

.fire-alarm-section {
    padding: 100px 8%;
    background: linear-gradient(
        to bottom,
        #f8fbff 0%,
        #f1f7ff 100%
    );
    position: relative;
}

.fire-alarm-section .container {
    max-width: 1300px;
    margin: auto;
}

/* Header */
.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}
.fire-title {
    position: relative;
}

.fire-title h2 {
    display: inline-block;
    position: relative;
    padding-left: 25px;
}

.fire-title h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 55px;
    background: #0066cc;
    border-radius: 10px;
}

.section-tag {
    display: inline-block;
    background: #e8f3ff;
    color: #0066cc;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

/* Product Grid */
.products-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.products-tag {
    display: inline-block;
    background: #fff3f3;
    color: #e53935;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.products-header h3 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.products-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.fire-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
     overflow: visible;
}

.fire-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border-top: 5px solid #e53935;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
    
}


.fire-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.fire-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 20px;
}

.fire-card h3 {
    font-size: 22px;
    color: #222;
    margin-bottom: 15px;
}

.fire-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* Benefits */
.fire-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.benefit-box {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.benefit-box span {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.benefit-box h4 {
    font-size: 18px;
    color: #222;
}

/* CTA */
.fire-cta {
    background: linear-gradient(135deg, #0066cc, #0099ff);
    color: #fff;
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
}

.fire-cta h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.fire-cta p {
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.fire-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #fff;
    color: #0066cc;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.fire-btn:hover {
    transform: translateY(-3px);
}
.fire-card{
    position: relative;
    overflow: hidden;
}

.fire-card .contact-btn{
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background: #0b5ed7;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.fire-card:hover .contact-btn{
    opacity: 1;
    transform: translateY(0);
}

.fire-card .contact-btn:hover{
    background: #084298;
}



/* ===========================
   INTRUSION ALARM SECTION
=========================== */

.intrusion-section{
    padding:100px 8%;
    background:#fff;
}

.intrusion-title h2{
    color:#08276d;
}

.intrusion-products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-bottom:80px;
}

.intrusion-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    border-top:5px solid #08276d;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.intrusion-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(8,39,109,.15);
}

.intrusion-card img{
    width:90px;
    height:90px;
    object-fit:contain;
    margin-bottom:20px;
}

.intrusion-card h3{
    color:#08276d;
    margin-bottom:15px;
    font-size:22px;
}

.intrusion-card p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

/* Hover Button Effect */

.intrusion-card:hover .contact-btn{
    opacity:1;
    transform:translateY(0);
}

/* Benefits */

.intrusion-benefits{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:80px;
}

/* CTA */

.intrusion-cta{
    background:linear-gradient(
        135deg,
        #08276d,
        #08a6df
    );
    color:#fff;
    padding:60px 40px;
    border-radius:25px;
    text-align:center;
}

.intrusion-cta h3{
    font-size:34px;
    margin-bottom:20px;
}

.intrusion-cta p{
    font-size:17px;
    max-width:700px;
    margin:0 auto 35px;
    line-height:1.8;
}
/*==================================================
            LAPTOP RESPONSIVE (1200px)
==================================================*/

@media screen and (max-width:1200px){

header{
    padding:15px 5%;
}

section{
    padding:80px 5%;
}

.hero h1{
    font-size:52px;
    line-height:62px;
}

.hero p{
    font-size:20px;
}

.title{
    font-size:40px;
}

.products{
    grid-template-columns:repeat(2,1fr);
}

.accessories{
    grid-template-columns:repeat(2,1fr);
}

.features{
    grid-template-columns:repeat(2,1fr);
}

.fire-products{
    grid-template-columns:repeat(2,1fr);
}

.fire-benefits{
    grid-template-columns:repeat(2,1fr);
}

.intrusion-products{
    grid-template-columns:repeat(2,1fr);
}

.intrusion-benefits{
    grid-template-columns:repeat(2,1fr);
}

.partner-track img{
    width:150px;
    height:110px;
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

}


/*==================================================
            TABLET RESPONSIVE (991px)
==================================================*/

@media screen and (max-width:991px){

header{
    flex-direction:column;
    gap:15px;
    padding:15px 20px;
}

.logo{
    justify-content:Left;
}

.nav-links{
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
}

.header-contact{
    margin-left:0;
    margin-top:10px;
    text-align:center;
}

section{
    padding:70px 20px;
}

.hero{
    text-align:center;
}

.hero-content{
    max-width:100%;
}

.hero h1{
    font-size:42px;
    line-height:52px;
}

.hero p{
    font-size:18px;
}

.title{
    font-size:34px;
}

.features{
    grid-template-columns:repeat(2,1fr);
}

.products{
    grid-template-columns:repeat(2,1fr);
}

.accessories{
    grid-template-columns:repeat(2,1fr);
}

.fire-products{
    grid-template-columns:repeat(2,1fr);
}

.fire-benefits{
    grid-template-columns:repeat(2,1fr);
}

.intrusion-products{
    grid-template-columns:repeat(2,1fr);
}

.intrusion-benefits{
    grid-template-columns:repeat(2,1fr);
}

.contact-form{
    padding:30px;
}

.case-study{
    padding:40px 30px;
}

.stats{
    gap:25px;
}

.partner-track{
    gap:40px;
}

.partner-track img{
    width:130px;
    height:90px;
}

.popup-box{
    width:90%;
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

}


/*==================================================
            MOBILE RESPONSIVE (768px)
==================================================*/

@media screen and (max-width:768px){

.nav-links{
    flex-direction:column;
    align-items:Left;
    gap:15px;
}

.header-contact{
    font-size:14px;
}

section{
    padding:60px 15px;
}

.hero h1{
    font-size:34px;
    line-height:44px;
}

.hero p{
    font-size:16px;
}

.btn{
    display:block;
    width:100%;
    margin:10px 0;
    text-align:center;
}

.title{
    font-size:30px;
}

.features,
.products,
.accessories,
.fire-products,
.fire-benefits,
.intrusion-products,
.intrusion-benefits,
.footer-grid{
    grid-template-columns:1fr;
}

.product img{
    height:220px;
}

.acc img{
    height:200px;
}

.fire-card img,
.intrusion-card img{
    width:100px;
    height:100px;
}

.contact-form{
    padding:25px;
}

.contact-form input,
.contact-form textarea{
    font-size:15px;
}

.contact-form button{
    font-size:16px;
}

.case-study{
    padding:30px 20px;
}

.stats{
    flex-direction:column;
    gap:20px;
}

.cta h2{
    font-size:28px;
}

.partner-heading h2{
    font-size:28px;
}

.partner-track{
    gap:25px;
}

.partner-track img{
    width:100px;
    height:65px;
}

.popup-box{
    width:95%;
    padding:25px 20px;
}

.popup-box h2{
    font-size:24px;
}

.popup-box p{
    font-size:14px;
}

.fire-cta,
.intrusion-cta{
    padding:35px 20px;
}

.fire-cta h3,
.intrusion-cta h3{
    font-size:24px;
}

.fire-cta p,
.intrusion-cta p{
    font-size:15px;
}

.footer-grid{
    text-align:center;
}

}


/*==================================================
            SMALL MOBILE (480px)
==================================================*/

@media screen and (max-width:480px){

.hero h1{
    font-size:28px;
    line-height:38px;
}

.hero p{
    font-size:15px;
}

.title{
    font-size:26px;
}

.section-header h2{
    font-size:24px;
}

.products-header h3{
    font-size:24px;
}

.product img{
    height:180px;
}

.acc img{
    height:170px;
}

.partner-track img{
    width:80px;
    height:55px;
}

.popup-box{
    padding:20px 15px;
}

.btn{
    padding:14px 20px;
    font-size:15px;
}

.contact-form{
    padding:20px;
}

}
/* =====================================
   MOBILE HAMBURGER MENU
===================================== */

.menu-toggle{
    display:none;
    font-size:32px;
    font-weight:700;
    color:#08276d;
    cursor:pointer;
    line-height:1;
}

/* Tablet & Mobile */
@media screen and (max-width:768px){

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-direction:row;
    padding:12px 20px;
    background:#fff;
    position:relative;
    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;
}

/* Hero */

.hero{
    text-align:center;
}

.hero-content{
    max-width:100%;
}

.hero h1{
    font-size:36px;
    line-height:46px;
}

.hero p{
    font-size:16px;
}

.btn{
    display:block;
    width:100%;
    margin:10px 0;
}

}


/* Small Mobile */

@media screen and (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;
}

.hero h1{
    font-size:30px;
    line-height:38px;
}

.hero p{
    font-size:15px;
}

}