body{
  font-family: Arial;
}

.navbar{
  background:#0b1f3a;
}

.hero{
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:url('../images/hero.jpg');
  background-size:cover;
  position:relative;

  padding-top:100px;
  box-sizing:border-box;
}

.hero::after{
  content:'';
  position:absolute;
  top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,0.6);
}

.hero .container{
  position:relative;
  z-index:2;
}

.service-card, .product-card{
  padding:20px;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  transition:0.3s;
}

.service-card:hover, .product-card:hover{
  transform:translateY(-5px);
}

.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:green;
  color:white;
  padding:15px;
  border-radius:50%;
  text-decoration:none;
}

.footer{
  background:#0b1f3a;
  color:white;
  padding:20px;
}



:root{
    --primary:#ffb703;
    --dark:#07111f;
    --glass:rgba(255,255,255,0.08);
    --border:rgba(255,255,255,0.16);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    font-family:'Poppins',sans-serif;
    background:#07111f;
    color:#fff;
    overflow-x:hidden;
}

/* SCROLLBAR */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:10px;
}

/* BACKGROUND */

.bg-blur{
    position:fixed;
    width:500px;
    height:500px;
    background:rgba(255,183,3,.14);
    filter:blur(120px);
    z-index:-1;
}

.bg-blur.one{
    top:-120px;
    left:-120px;
}

.bg-blur.two{
    bottom:-120px;
    right:-120px;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    padding:12px 0;
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.navbar-brand img{
    width:44px;
    height:44px;
}

.navbar::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(255,183,3,.08), transparent, rgba(255,255,255,.03));
    pointer-events:none;
}

.navbar-brand{
    font-size:28px;
    font-weight:800;
    color:#fff !important;
    position:relative;
    z-index:2;
}

.navbar-brand img{
    width:44px;
    height:44px;
}

.navbar-brand span{
    color:var(--primary);
}

.nav-link{
    color:#fff !important;
    margin-left:18px;
    font-weight:500;
    position:relative;
    transition:.3s;
}

.nav-link:hover{
    color:var(--primary) !important;
}

.nav-link::after{
    content:'';
    position:absolute;
    width:0;
    height:2px;
    left:0;
    bottom:-2px;
    background:var(--primary);
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

.nav-social{
    width:38px;
    height:38px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-left:14px;
    color:#fff;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.12);
    transition:.4s;
}

.nav-social:hover{
    background:var(--primary);
    color:#000;
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(255,183,3,.35);
}

/* DROPDOWN */

.dropdown-menu{
    background:rgba(15,23,42,.96);
    border:1px solid rgba(255,255,255,.1);
    backdrop-filter:blur(14px);
    border-radius:18px;
    padding:10px;
}

.dropdown-item{
    color:#fff;
    padding:12px;
    border-radius:10px;
    transition:.3s;
}

.dropdown-item:hover{
    background:rgba(255,255,255,.08);
    color:var(--primary);
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.45)),
    url('https://images.unsplash.com/photo-1523381210434-271e8be1f52b?q=80&w=1600&auto=format&fit=crop') center/cover;
    background-repeat:no-repeat;
    background-size:cover;
    z-index:-2;
}

.hero-content h1{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
}

.hero-content h1 span{
    color:var(--primary);
}

.hero-content p{
    font-size:18px;
    color:#ddd;
    margin-top:22px;
    line-height:1.9;
}

.hero-buttons{
    margin-top:38px;
}

.btn-main{
    background:var(--primary);
    color:#000;
    padding:15px 34px;
    border-radius:60px;
    font-weight:700;
    text-decoration:none;
    display:inline-block;
    transition:.4s;
    box-shadow:0 12px 25px rgba(255,183,3,.22);
}

.btn-main:hover{
    transform:translateY(-5px);
    color:#000;
}

.btn-glass{
    border:1px solid rgba(255,255,255,.2);
    backdrop-filter:blur(10px);
    background:rgba(255,255,255,.08);
    color:#fff;
    padding:15px 34px;
    border-radius:60px;
    margin-left:15px;
    text-decoration:none;
    transition:.4s;
}

.btn-glass:hover{
    background:rgba(255,255,255,.14);
    color:#fff;
    transform:translateY(-5px);
}

/* GLASS CARD */

.glass-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(18px);
    border-radius:28px;
    padding:35px;
    transition:.4s;
    height:100%;
    overflow:hidden;
    position:relative;
}

.glass-card::before{
    content:'';
    position:absolute;
    width:140px;
    height:140px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
    top:-40px;
    right:-40px;
}

.glass-card:hover{
    transform:translateY(-10px);
    border-color:rgba(255,183,3,.4);
}

.glass-card i{
    font-size:45px;
    color:var(--primary);
    margin-bottom:20px;
}

.glass-card p{
    color:#d8d8d8;
    line-height:1.8;
}

/* SECTION */

.section-title{
    font-size:48px;
    font-weight:800;
    margin-bottom:15px;
}

.section-subtitle{
    color:#cfcfcf;
    max-width:700px;
    margin:auto;
    line-height:1.9;
}

/* ABOUT */

.about-img{
    width:100%;
    border-radius:32px;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

/* PRODUCT */

.product-card{
    overflow:hidden;
    border-radius:26px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.1);
    backdrop-filter:blur(14px);
    transition:.4s;
}

.product-card:hover{
    transform:translateY(-12px);
}

.product-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.product-body{
    padding:25px;
}

.product-body h5{
    font-weight:700;
    margin-bottom:12px;
}

.product-body p{
    color:#d6d6d6;
    line-height:1.8;
}

/* STATS */

.stats{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(14px);
    border-radius:34px;
    padding:60px 40px;
}

.stat-box h2{
    color:var(--primary);
    font-size:52px;
    font-weight:800;
}

.stat-box p{
    color:#ddd;
}

/* CTA */

.cta{
    padding:120px 0 80px;
}

.cta-box{
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.75)),
    url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?q=80&w=1600&auto=format&fit=crop') center/cover;
    border-radius:36px;
    padding:90px 50px;
    text-align:center;
    overflow:hidden;
    position:relative;
}

.cta-box::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,183,3,.15);
    border-radius:50%;
    filter:blur(100px);
    top:-120px;
    right:-100px;
}

.cta-box h2{
    font-size:54px;
    font-weight:800;
    position:relative;
    z-index:2;
}

.cta-box p,
.cta-box a{
    position:relative;
    z-index:2;
}

/* CERTIFICATION */

.certification-section{
    padding-bottom:100px;
}

.certification-wrapper{
    overflow:hidden;
    position:relative;
    mask-image:linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image:linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.certification-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:scrollLeft 28s linear infinite;
}

.certification-card{
    min-width:240px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(16px);
    border-radius:24px;
    padding:30px;
    text-align:center;
    transition:.4s;
}

.certification-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,183,3,.35);
}

.certification-card img{
    width:80px;
    height:80px;
    object-fit:contain;
    margin-bottom:20px;
}

.certification-card h5{
    font-weight:700;
    margin-bottom:10px;
}

.certification-card p{
    color:#ccc;
    font-size:14px;
    line-height:1.7;
}

/* .align-items-center
{
  padding-top: 66px;
} */

banner-section{
  padding-top: 66px !important;
}

@keyframes scrollLeft{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* FOOTER */

.footer{
    margin-top:40px;
    background:rgba(255,255,255,.05);
    border-top:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    position:relative;
    overflow:hidden;
    padding:90px 0 25px;
}

.footer::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(255,183,3,.08);
    border-radius:50%;
    filter:blur(120px);
    top:-180px;
    right:-150px;
}

.footer-logo{
    font-size:30px;
    font-weight:800;
    margin-top: -4px;
}

.footer-logo span{
    color:var(--primary);
}

.footer p{
    color:#ccc;
    line-height:1.9;
}

.footer-links a{
    display:block;
    color:#ddd;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--primary);
    padding-left:6px;
}

.social-icons a{
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    margin-right:10px;
    transition:.4s;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.08);
}

.social-icons a:hover{
    background:var(--primary);
    color:#000;
    transform:translateY(-5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:50px;
    padding-top:25px;
}

.footer-bottom-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.developed-by{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.1);
    backdrop-filter:blur(12px);
    padding:12px 22px;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    transition:.4s;
    font-size:14px;
}

.developed-by:hover{
    background:var(--primary);
    color:#000;
    transform:translateY(-4px);
}

/* WHATSAPP */

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    text-decoration:none;
    z-index:999;
    box-shadow:0 10px 25px rgba(37,211,102,.4);
}

/* MOBILE */

@media(max-width:991px){

.navbar{
    padding:10px 0;
}

.navbar-brand{
    font-size:24px;
}

.nav-social{
    width:34px;
    height:34px;
    margin-left:10px;
}

.hero{
    text-align:center;
    padding-top:120px;
}

.hero-content h1{
    font-size:48px;
}

.section-title{
    font-size:36px;
}

.cta-box h2{
    font-size:36px;
}

.btn-glass{
    margin-left:0;
    margin-top:15px;
}

.why-choose-us{
    display:none;
}

.footer-bottom-content{
    justify-content:center;
    text-align:center;
}

.certification-card{
    min-width:200px;
}

.dropdown-menu-glass{
    min-width:auto !important;
    width:100% !important;
    max-width:100% !important;
    position:static !important;
    left:auto !important;
    right:auto !important;
    transform:none !important;
    box-shadow:none !important;
    max-height:calc(70vh - 70px);
    overflow-y:auto;
    overflow-x:hidden;
    padding-right:4px;
}

.dropdown-menu-glass::-webkit-scrollbar{
    width:6px;
}

.dropdown-menu-glass::-webkit-scrollbar-thumb{
    background:rgba(255,183,3,0.85);
    border-radius:999px;
}

.mega-menu .row{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:0.5rem;
}

.mega-col{
    width:100%;
    padding:0;
}

.dropdown-item-glass{
    padding:10px 12px;
}

}


/* BACK TO TOP */

.back-to-top{
    position:fixed;
    right:20px;
    bottom:100px;
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    font-size:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:999;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.back-to-top:hover{
    background:rgba(255,183,3,.18);
    color:var(--primary);
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(255,183,3,.25);
}


