:root {
  --primary: #005e99;
  --secondary: #ffb400;
  --dark: #0d1b2a;
}
* {
    text-decoration: none !important;
}

/* topbar */
.top-bar {
  background: linear-gradient(90deg, #005e99, #0077b6);
  padding: 10px 0;
  font-size: 14px;
  /* height: 50px; */
}

.top-left a {
  color: #fff;
  text-decoration: none;
  margin-right: 25px;
  font-weight: 500;
}

.top-left i {
  color: #ffb400;
  margin-right: 8px;
}

.top-social a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  margin-left: 8px;
  transition: 0.4s;
}

.top-social a:hover {
  background: #ffb400;
  color: #000;
  transform: translateY(-4px);
}

/* preloader */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #ffd500;
  top: 0;
  left: 0;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-box {
  text-align: center;
}

.ship-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid #005e99;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  animation: rotateShip 3s linear infinite;
}

.ship-circle i {
  font-size: 45px;
  color: #005e99;
}

.loader-box h4 {
  margin-top: 20px;
  color: #005e99;
  font-weight: 700;
}

.loading-bar {
  width: 250px;
  height: 6px;
  background: #ddd;
  border-radius: 20px;
  margin-top: 20px;
  overflow: hidden;
}

.loading-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: #005e99;
  animation: loading 2s infinite;
}

@keyframes loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes rotateShip {
  100% {
    transform: rotate(360deg);
  }
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(15px);
  padding: 15px 0;
  transition: 0.1s ease;
  z-index: 9999;
  /* top: 50px; */
}


.navbar-brand img {
  height: 65px;
  transition: 0.4s;
}


.nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: #222 !important;
  padding: 12px 18px !important;
  transition: 0.3s;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* .nav-link::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:0;
    width:0;
    height:3px;
    background:linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );
    transform:translateX(-50%);
    transition:.4s;
    border-radius:10px;
} */

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

.nav-link.active {
  color: var(--primary) !important;
}

/* Dropdown */

.dropdown-menu {
  border: none;
  border-radius: 15px;
  padding: 15px 0;
  min-width: 250px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: dropdown 0.35s ease;
}

.dropdown-item {
  padding: 12px 25px;
  font-weight: 500;
  transition: 0.3s;
}

.dropdown-item:hover {
  background: var(--primary);
  color: #fff;
  padding-left: 35px;
}

@keyframes dropdown {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button */

.quote-btn {
  background: linear-gradient(135deg, var(--primary), #0077b6);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: 0.4s;
}

.quote-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--secondary), #ff8800);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 136, 0, 0.3);
}

/* Mobile */

@media (max-width: 991px) {
  .navbar {
    top: 0px;
  }
  .navbar-collapse {
    background: #fff;
    margin-top: 15px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-link {
    padding: 12px 0 !important;
  }

  .navbar-brand img {
  height: 40px;
  
}
  .quote-btn {
    width: 100%;
    margin-top: 15px;
  }
}




/* ==========================
   HERO SLIDER
========================== */

.hero-slider{
    position: relative;
}

.mySwiper{
    width:100%;
    height:85vh;
}

.swiper-slide{
    position:relative;
    overflow:hidden;
}

.slide-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.slide-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:zoomEffect 10s linear infinite alternate;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,38,77,0.85),
        rgba(0,38,77,0.45),
        rgba(0,0,0,0.15)
    );
}

.swiper-slide .container{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:700px;
    text-align:left;
}

.hero-badge{
    display:inline-block;
    background:#ffb400;
    color:#000;
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.hero-content h1{
    color:#fff;
    font-size:70px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    color:#fff;
    font-size:18px;
    line-height:1.8;
    max-width:600px;
    margin-bottom:30px;
}

.hero-btns{
    display:flex;
    gap:15px;
    align-items:center;
}

.btn-primary-custom{
    background:#005e99;
    color:#fff;
    padding:14px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary-custom:hover{
    background:#ffb400;
    color:#000;
}

.btn-outline-custom{
    border:2px solid #fff;
    color:#fff;
    padding:14px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-outline-custom:hover{
    background:#fff;
    color:#000;
}

/* Navigation */

.swiper-button-next,
.swiper-button-prev{
    color:#fff;
    width:50px;
    height:50px;
}

.swiper-button-next:after,
.swiper-button-prev:after{
    font-size:28px;
    font-weight:bold;
}

/* Pagination */

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#fff;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#ffb400;
}

/* Text Animation */

.swiper-slide-active .hero-content{
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes zoomEffect{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.12);
    }
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

.mySwiper{
    height:75vh;
}

.hero-content h1{
    font-size:50px;
}

.hero-content p{
    font-size:16px;
}

.swiper-button-next,
.swiper-button-prev{
    display:none;
}

}

/* ==========================
   MOBILE
========================== */

@media(max-width:576px){

.mySwiper{
    height:70vh;
}

.hero-content{
    max-width:100%;
}

.hero-badge{
    font-size:12px;
    padding:8px 15px;
}

.hero-content h1{
    font-size:32px;
    line-height:1.2;
}

.hero-content p{
    font-size:14px;
    line-height:1.7;
    margin-bottom:20px;
}

.hero-btns{
    flex-direction:row; /* full width nahi honge */
    gap:10px;
    flex-wrap:wrap;
}

.hero-btns a{
    width:auto;
    padding:12px 20px;
    font-size:14px;
}

.swiper-button-next,
.swiper-button-prev{
    display:none;
}

}

.about-section{
    padding:100px 0;
    background:#f8fbff;
    overflow:hidden;
}

.about-image-wrapper{
    position:relative;
}

.about-main-img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.experience-box{
    position:absolute;
    right:-20px;
    bottom:40px;
    background:#005e99;
    color:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    min-width:180px;
    box-shadow:0 15px 40px rgba(0,0,0,.2);
}

.experience-box h3{
    font-size:40px;
    margin:0;
    font-weight:800;
}

.section-tag{
    display:inline-block;
    background:#ffb400;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.about-title{
    font-size:48px;
    font-weight:800;
    color:#005e99;
    margin-bottom:25px;
    /* text-align: center !important; */
    display: flex;
    align-items: start;
    justify-content: start;
}

.section-text{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.stats-row{
    margin-top:35px;
    margin-bottom:35px;
}

.stat-box{
    background:#fff;
    text-align:center;
    padding:25px 15px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.stat-box:hover{
    transform:translateY(-10px);
}

.stat-box h3{
    color:#005e99;
    font-weight:800;
    margin-bottom:5px;
}

.stat-box p{
    margin:0;
    color:#777;
}

.about-btn{
    display:inline-block;
    background:#005e99;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    background:#ffb400;
    color:#000;
}


/* our products  */
.products-section{
    background:#f8fbff;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.product-img{
    overflow:hidden;
}

.product-img img{
    width:100%;
    height:auto;
    object-fit:fill;
    transition:.5s;
}

.product-card:hover .product-img img{
    transform:scale(1.08);
}

.product-content{
    padding:25px;
    text-align: center;
}

.product-content h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#005e99;
}

.product-content a{
    text-decoration:none;
    color:orangered;
    font-weight:600;
}

.product-content a i{
    margin-left:5px;
    transition:.3s;
}

.product-card:hover .product-content a i{
    transform:translate(4px,-4px);
}

.section-tag{
    display:inline-block;
    background:#ffb400;
    color:#000;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title{
    font-size:42px;
    font-weight:800;
    color:#005e99;
}

@media(max-width:768px){

    .section-title{
        font-size:30px;
    }

    .product-img img{
        height:auto;
    }

}


/* css stats starts */
.stats-section{
    background:#ffb400;
    padding:80px 0;
    position:relative;
    overflow:hidden;
}

.stats-section::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-100px;
    left:-100px;
}

.stats-section::after{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    bottom:-80px;
    right:-80px;
}

.stat-card{
    text-align:center;
    position:relative;
    z-index:2;
}

.stat-card h2{
    font-size:60px;
    font-weight:800;
    color:#002b45;
    margin-bottom:10px;
    line-height:1;
}

.stat-card p{
    margin:0;
    color:#002b45;
    font-size:18px;
    font-weight:600;
}

@media(max-width:991px){

    .stat-card h2{
        font-size:45px;
    }

    .stat-card p{
        font-size:16px;
    }

}

@media(max-width:576px){

    .stats-section{
        padding:60px 0;
    }

    .stat-card h2{
        font-size:36px;
    }

    .stat-card p{
        font-size:14px;
    }

}

/* our gallery effects start  */
.gallery-section{
    background:#f8fbff;
}

.gallery-item{
    overflow:hidden;
    border-radius:15px;
    position:relative;
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.section-tag{
    display:inline-block;
    background:#ffb400;
    color:#000;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title{
    font-size:42px;
    font-weight:800;
    color:#005e99;
}

@media(max-width:768px){

    .section-title{
        font-size:30px;
    }

    .gallery-item img{
        height:220px;
    }

}

/* testimonial start  */
.testimonial-section{
  padding: 70px 0;
  background: #f8f8f8;
  font-family: Arial, sans-serif;
}

.container{
  width: 90%;
  margin: auto;
}

.section-title{
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle{
  text-align: center;
  margin-bottom: 40px;
  color: #666;
}

.testimonial-card{
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  height: 100%;
  transition: 0.3s;
}

.testimonial-card:hover{
  transform: translateY(-5px);
}

.testimonial-card p{
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.testimonial-card h4{
  margin-top: 15px;
  margin-bottom: 5px;
  color: #111;
}

.testimonial-card span{
  font-size: 13px;
  color: #777;
}
.stars{
  color: #f5c518;   /* IMDb yellow gold look */
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

/* contact start  */
.contact-section{
  padding: 70px 0;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.contact-box{
  background: #032766;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
}

.contact-box h2{
  margin-bottom: 10px;
  font-size: 28px;
  color: rgb(255, 191, 0);
  text-align: center;
}

.contact-box p{
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;

}

.contact-box .form-control{
  border-radius: 8px;
  padding: 10px;
}

.contact-box .btn{
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
}

.map-box{
  height: 100%;
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-box iframe{
  height: 100%;
  width: 100%;
}


.nnm-footer{
  background: #0b1220;
  color: #cbd5e1;
  padding-top: 60px;
  font-family: Arial, sans-serif;
}

/* logo */
.footer-logo{
  width: 140px;
  margin-bottom: 15px;
}

/* text */
.footer-box p{
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

/* headings */
.footer-box h3{
  color: #ff9900;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 800;
}

/* links */
.footer-box ul{
  list-style: none;
  padding: 0;
}

.footer-box ul li{
  margin-bottom: 10px;
}

.footer-box ul li a{
  text-decoration: none;
  color: #94a3b8;
  transition: 0.3s;
}

.footer-box ul li a:hover{
  color: #FFB400;
  padding-left: 6px;
}

/* SOCIAL ICONS */
.footer-social{
  margin-top: 15px;
}

.footer-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 8px;
  background: #1e293b;
  color: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-social a:hover{
  background: #FFB400;
  transform: translateY(-3px);
}

/* bottom bar */
.footer-bottom{
  margin-top: 40px;
  padding: 15px 0;
  background: #070d18;
  border-top: 1px solid #1e293b;
}

.footer-bottom p{
  margin: 0;
  font-size: 13px;
  color: #94a3b8;
}

/* back to top */
.top-btn{
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #FFB400;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.top-btn:hover{
  background: #FFB400;
  transform: translateY(-4px);
}

/* page banner start css */
.page-banner{
    position: relative;
    padding: 90px 0;
    background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url('../images/nnm05.jpg') center center/cover no-repeat;
}

/* content positioning */
.page-banner-content{
    position: relative;
    z-index: 2;
}

/* heading */
.page-banner h1{
    font-size: 42px;
    letter-spacing: 1px;
}

/* breadcrumb style */
.breadcrumb a{
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover{
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before{
    color: rgb(232, 197, 0);
}

/* active breadcrumb */
.breadcrumb .active{
    color: #ffd000;
}

/* small mobile fix */
@media(max-width:768px){
    .page-banner{
        padding: 70px 0;
    }

    .page-banner h1{
        font-size: 30px;
    }
}


/* products css start  */
.hover-card{
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    cursor: pointer;
}

.hover-card .card-img{
    overflow: hidden;
}

.hover-card img{
    width: 100%;
    height: auto;
    object-fit: fill;
    transition: 0.5s ease;
}

/* Title */
.hover-card .card-title{
    padding: 15px;
    margin: 0;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
    background-color: var(--primary);
    transition: 0.3s;
}

/* Hover Effects */
.hover-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.hover-card:hover img{
    transform: scale(1.1);
}

.hover-card:hover .card-title{
    color: #ff9800;
}

/* link remove default style */
.hover-card a{
    text-decoration: none;
    color: inherit;
}