@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  /*color variable*/
  --color-primary:#f3711b;
;
  --color-white: #fff;
  --color-green: #198754;

  /*font variable*/
  --font-poppins:"Poppins", serif;
}
body {
  font-family: var(--font-poppins);
  font-size: 16px;
  width:100%;
  overflow-x: hidden;
  background-color: #fff;
  font-weight: 400;
  line-height: 30px;
}
.img-fluid {
  width: 100%;
}
.homebanner{
    padding-top: 0px;
  }
section {
  padding: 80px 0px;
}
/*header*/
.header {
        transition: all 0.3s ease-in-out;
        z-index: 1030; /* keep above content */
      }

      /* Effect on scroll */
      .header.scrolled {
        background-color:rgb(251 251 251 / 87%) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        padding: 0px 0;
        z-index: 5;
        position: sticky;
      }
      
      .navbar-brand img {
        transition: all 0.3s ease-in-out;
        height: 50px;
      }

      .header.scrolled .navbar-brand img {
        height: 40px; /* shrink logo */
      }
header.header {
  z-index: 1;
  
}
header .navbar-collapse {  
  flex-grow: 0;
}
.navbar-expand-lg .navbar-nav{
  align-items: center;
}
.logo{
  width: 150px;
}
.nav-link{
  color:#000;
  font-weight: 400;
}
.nav-link.active{
  font-weight: 600;
}

.nav-item .nav-link{
margin: 0px 0px;
font-weight: 600;
}
.nav-item .nav-link:hover{
  color:var(--color-primary);
}
/*home banner*/
 .crop-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFC107, #f5b608);
    display: flex;
    align-items: center;
}

.hero-badge {
  background: #e8f0ff;
  color: #1a1f71;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 30px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
}

.hero-title span {
  color: #1a1f71;
}

.hero-desc {
  font-size: 1.05rem;
  color: #555;
  max-width: 520px;
}

.hero-buttons .btn {
  padding: 12px 28px;
}

.hero-image {
  max-width: 90%;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-desc {
    margin: auto;
  }
}

    .footer-section {
  background: #0f1c3f;
  color: #ffffff;
  padding: 50px 0 20px;
}
.footer-section div a{
  color:#FFC107;
}
.footer-section h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-line {
  border-color: rgba(243, 231, 6, 1);
  margin: 30px 0 15px;
}

copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Media Query*/

@media screen and (max-width: 1024px) {
  
}
@media screen and (min-width: 1025px) and (max-width: 1199px) {
  
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .homebanner h1 {
    font-size: 55px;
    line-height: 70px;
  }
  .homebanner{
    padding: 0px;
  }
  .homebanner .image img{
    height: 500px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
 
   section {
    padding: 40px 0px;
  }
  .sec-title {
    font-size: 30px;
    line-height: 40px;
  }
  }

/*  */
