/********** Template CSS **********/
:root {
    --primary: #3D90D7;
    --secondary: #001064;
    --light: #F6F7F8;
    --dark: #010A35;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #05070b;
    background: linear-gradient(120deg, #d8e0ed, #aaccde, #ffffff, #000000);
    background-size: 300% 300%;
    animation: bgColorShift 25s ease infinite;
    position: relative;
    overflow-x: hidden; 
  }
  
  
  @keyframes bgColorShift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  /* Optional subtle glowing overlay */
  body::after {
    content: "";
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 20% 30%, rgba(0, 170, 255, 0.15), transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12), transparent 60%);
    animation: glowShift 20s linear infinite;
    mix-blend-mode: screen;
    z-index: -1;
  }
  
  @keyframes glowShift {
    0% {
      background-position: 20% 30%, 80% 70%;
    }
    50% {
      background-position: 25% 35%, 75% 65%;
    }
    100% {
      background-position: 20% 30%, 80% 70%;
    }
  }
  
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.navbar .navbar-brand h1 {
    max-height: 60px;
   color:  var(--primary);
}

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 15px 27px;
    color: #0a0b0e;
    font-weight: bolder;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Header Carousel Base Styles ***/
.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--dark);
  border: 12px solid var(--dark);
  border-radius: 50%;
}


@media (max-width: 768px) {
  #header-carousel .carousel-item {
      position: relative;
      min-height: 450px;
  }

  #header-carousel .carousel-item img {
      position: absolute;
      width: 100%;
      height: 100%;
  }


  .carousel-control-prev,
  .carousel-control-next {
      width: 10%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
      width: 2.5rem;
      height: 2.5rem;
  }
}

/* For mobile devices */
@media (max-width: 576px) {
  #header-carousel .carousel-item {
      min-height: 300px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
      width: 2rem;
      height: 2rem;
      border: 8px solid var(--dark);
  }
}

.page-header {
    background: linear-gradient(rgba(1, 10, 53, .8), rgba(1, 10, 53, .8)), url(../img/bg-ban.avif) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Facts ***/
.facts {
	position: relative;
}

.facts * {
	position: relative;
	z-index: 1;
}

.facts::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
    background: rgba(1, 10, 53, .8);
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .container.quote .quote-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.quote .quote-form {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.quote .quote-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.quote .quote-form  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.quote .quote-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.quote .quote-form  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.quote .quote-text,
.container.quote .quote-form {
	position: relative;
}

.container.quote .quote-text *,
.container.quote .quote-form * {
	position: relative;
	z-index: 1;
}

.container.quote .quote-text::after,
.container.quote .quote-form::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.container.quote .quote-text::after {
    background: rgba(1, 10, 53, .8);
}

.container.quote .quote-form::after {
    background: rgba(255, 255, 255, .8);
}

.container.quote .quote-text .h-100,
.container.quote .quote-form .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*** Service ***/

.torches-section {
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    text-align: center;
  }
  
  .split-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    animation: splitFade 1.2s ease-in-out forwards;
    opacity: 0;
  }
  
  @keyframes splitFade {
    0% {
      opacity: 0;
      transform: translateY(30px) scale(0.95);
      letter-spacing: -2px;
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
      letter-spacing: 0;
    }
  }
  
  .product-list {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
  }

  .product-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 12px 8px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.6s ease forwards;
  }

  /* stagger delay */
  .product-list li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .product-list li:nth-child(2) {
    animation-delay: 0.3s;
  }
  .product-list li:nth-child(3) {
    animation-delay: 0.5s;
  }
  .product-list li:nth-child(4) {
    animation-delay: 0.7s;
  }
  .product-list li:nth-child(5) {
    animation-delay: 0.9s;
  }

  .product-icon {
    color: #007bff;
    font-size: 28px;
    min-width: 32px;
    margin-top: 4px;
    flex-shrink: 0;
    transition: color 0.3s ease;
  }

  .product-list li:hover .product-icon {
    color: #004080;
  }

  .product-text h5 {
    margin: 0 0 4px 0;
    font-weight: 700;
    color: #004080;
    font-size: 18px;
  }

  .product-text p {
    margin: 0;
    font-size: 14px;
    color: #0a0808;
    line-height: 1.3;
  }

  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @media (max-width: 480px) {
    .product-list li {
      flex-direction: column;
      align-items: flex-start;
    }
    .product-icon {
      margin-top: 0;
    }
  }
  .torch-heading p {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
  }
  
  /* ===== Torch Card Design ===== */
  .torch-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .torch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .torch-image {
    background: #f6f9fc;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
  }
  
  .torch-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    rotate: 180deg;
  }
  
  .torch-card:hover .torch-image img {
    transform: scale(1.08);
  }
  
  .torch-content {
    padding: 20px;
    background: #fff;
  }
  
  .torch-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
  }
  
  .torch-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
  }
  
  /* ===== Responsive Adjustments ===== */
  @media (max-width: 992px) {
    .torch-card {
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .split-text {
      font-size: 2rem;
    }
  
    .torch-content h4 {
      font-size: 1.1rem;
    }
  
    .torch-content p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 576px) {
    .torch-card {
      border-radius: 16px;
    }
  
    .torch-image {
      height: 180px;
      padding: 20px;
    }
  }
  
    

/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}

/*** About Start ***/
  .about-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .about-img-wrapper {
    flex: 1 1 400px;
    overflow: hidden;
  }
  .about-img {
    width: 100%;
    border-radius: 16px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  .about-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  .about-content {
    flex: 1 1 400px;
  }

  .about-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .about-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
  }
  .about-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
  }
  .about-features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #0f0e0f;
    font-weight: bold;
  }
  .btn-about {
    display: inline-block;
    padding: 12px 32px;
    background: #3571ca;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  .btn-about:hover {
    background: #417adc;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
  }
  .animate-fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
  }
  .animate-slide-in {
    opacity: 0;
    animation: slideInLeft 1s ease-out forwards;
    animation-delay: 0.2s;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .about-inner {
      gap: 20px;
    }
  }
  @media (max-width: 768px) {
    .about-inner {
      flex-direction: column;
    }
    .about-title {
      font-size: 1.8rem;
    }
  }
  @media (max-width: 576px) {
    .about-subtitle {
      font-size: 1rem;
    }
    .about-text {
      font-size: 0.95rem;
    }
  }

.torch-header {
  max-width: 600px;
  margin-bottom: 40px;
}

.torch-title {
  font-weight: 700;
  color: #003366;
  margin-bottom: 10px;
}

.torch-subtitle {
  font-size: 1.05rem;
  color: #6c757d;
}

.torch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.torch-item {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 360px;
}

/* Card */
.torch-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 25px 20px 30px;
  text-align: center;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.torch-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.torch-img-wrapper {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
  transition: box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.torch-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 50%;
 
}

@media (max-width: 991.98px) {
  .torch-img-wrapper {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 575.98px) {
  .torch-img-wrapper {
    width: 130px;
    height: 130px;
  }
}


/* Torch info text */
.torch-info h4 {
  font-weight: 600;
  color: #004080;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.torch-info p {
  font-size: 1rem;
  color: #0c0b0b;
  margin: 0;
  line-height: 1.4;
}

/* Fade in + slide up animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .torch-item {
    max-width: 300px;
  }
}

@media (max-width: 575.98px) {
  .torch-item {
    max-width: 100%;
  }

  .torch-card {
    padding: 20px 15px 25px;
  }

  .torch-img-wrapper {
    width: 120px;
    height: 120px;
  }

  .torch-info h4 {
    font-size: 1.15rem;
  }

  .torch-info p {
    font-size: 0.95rem;
  }
}

.torch-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.torch-feature {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.torch-feature:hover {
    transform: translateY(-4px) scale(1.02);
}

.feature-icon {
    font-size: 1.8rem;
    color: #0d6efd;
}

/* Animations */
@keyframes fade-in {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes slide-in {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.animate-fade-in {
    animation: fade-in 1s ease-out forwards;
}
.animate-slide-in {
    animation: slide-in 1s ease-out forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

.about-start,
.about-end {
    background: url(../img/bg-light.jpg) center center no-repeat;
    background-size: contain;
}

@media (min-width: 992px) {
    .about-start {
        position: relative;
        margin-right: -90px;
        z-index: 1;
    }

    .about-end {
        position: relative;
        margin-left: -90px;
        z-index: 1;
    }
}
/* about end */
.about-start,
.about-end {
    background: url(../img/about-bg.jpg) center center no-repeat;
    background-size: contain;
}

@media (min-width: 992px) {
    .about-start {
        position: relative;
        margin-right: -90px;
        z-index: 1;
    }

    .about-end {
        position: relative;
        margin-left: -90px;
        z-index: 1;
    }
}
/* about end */

/* why choose */  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
  }
  
 
  .torch-img {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transform: scale(1);
    transition: transform 0.4s ease-in-out;
  }
  
  .torch-img:hover {
    transform: scale(1.05) rotate(1deg);
  }
  
/* Container */
.why-choose-us {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
}

/* Section Title */
.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #003366;
  font-weight: 700;
  text-align: center;
}

/* Feature Item */
.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  transition: transform 0.3s ease;
  cursor: default;
}

.feature-item:last-child {
  margin-bottom: 0;
}

/* Hover effect */
.feature-item:hover {
  transform: translateX(8px);
}

/* Icon Circle */
.icon-circle {
  background-color: #007bff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

/* Icon */
.icon-circle i {
  color: white;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

/* Icon hover */
.feature-item:hover .icon-circle {
  background-color: #004080;
}

.feature-item:hover .icon-circle i {
  transform: scale(1.2);
}

/* Feature Text */
.feature-text h5 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #004080;
}

.feature-text p {
  margin: 0;
  font-size: 1rem;
  color: #444;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-item {
    gap: 15px;
  }

  .icon-circle {
    width: 70px;
    height: 70px;
  }

  .icon-circle i {
    font-size: 2rem;
  }

  .feature-text h5 {
    font-size: 1.1rem;
  }

  .feature-text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .icon-circle i {
    font-size: 1.5rem;
  }
}

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .torch-img {
      margin-bottom: 20px;
    }
    .section-title {
      font-size: 2rem;
    }
  }
  /* Section container */
.choose-us-section {
  padding: 60px 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Title */
.choose-us-title {
  font-weight: 700;
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 40px;
}

/* Torch image */
.choose-us-image {
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.3s;
  width: 611px;
    height: 468px;
}

/* Content wrapper */
.choose-us-content {
  max-width: 600px;
  margin: 0 auto;
}

/* Each reason */
.choose-reason {
  background-color: #e8f1ff;
  border-radius: 14px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 12px rgba(0, 102, 204, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: forwards;
  cursor: default;
  transition: background-color 0.3s ease;
}

.choose-reason:hover {
  background-color: #d0e5ff;
}

.choose-reason h4 {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  color: #004080;
  margin-bottom: 8px;
}

.choose-reason h4 i {
  font-size: 1.6rem;
  margin-right: 12px;
  transition: transform 0.3s ease;
}

.choose-reason:hover h4 i {
  transform: scale(1.2);
}

.choose-reason p {
  font-size: 1rem;
  color: #2c3e50;
  margin: 0;
  line-height: 1.5;
}

/* Animations */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.slide-up-effect {
  animation-name: slideUp;
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
}

.fade-in-effect {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

/* Animation delays */
.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1s;
}

/* Responsive */
@media (max-width: 768px) {
  .choose-us-title {
    font-size: 2rem;
  }

  .choose-reason {
    padding: 18px 20px;
  }

  .choose-reason h4 {
    font-size: 1.1rem;
  }

  .choose-reason h4 i {
    font-size: 1.4rem;
    margin-right: 10px;
  }

  .choose-reason p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .choose-us-title {
    font-size: 1.7rem;
  }

  .choose-reason {
    padding: 15px 18px;
  }

  .choose-reason h4 {
    font-size: 1rem;
  }

  .choose-reason h4 i {
    font-size: 1.2rem;
    margin-right: 8px;
  }

  .choose-reason p {
    font-size: 0.9rem;
  }
}



/*** Footer ***/
.footer {
    color: #ffffff;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffffff;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #ffffff;
    border: 1px solid #ffffff;
}

.footer .btn.btn-square:hover {
    color: var(--light);
    border-color: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .copyright a:hover {
    color: #FFFFFF;
}


.facts i {
    background-color: #007bff; 
    color: #ffffff;            
    padding: 20px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    animation: iconBounce 2s infinite ease-in-out;
  }
  
  @keyframes iconBounce {
    0%, 100% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(-8px) scale(1.1);
    }
  }
  
/* products */

.product-title {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInDown 1.2s ease-in-out;
}

.product-card {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: zoomIn 1.2s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

.product-image-box {
  overflow: hidden;
  border-radius: 12px;
}

.product-image-box img {
  width: 100%;
  height: 300px;
  background-size: contain;
  transition: transform 0.4s ease-in-out;
  rotate: 180deg;
}

.product-card:hover img {
  transform: scale(1.1);
}
.product-description {
  font-size: 1rem;
  line-height: 1.7;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
  animation: fadeIn 1.6s ease;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.product-description ul {
  padding-left: 0;
  margin-top: 15px;
  list-style: none;
}

.product-description ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.product-description ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #001064;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1rem;
}

@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-30px);
  }

  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
      transform: scale(0.95);
      opacity: 0;
  }

  to {
      transform: scale(1);
      opacity: 1;
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }

  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .product-title {
      font-size: 2rem;
  }
  .product-description {
      font-size: 0.95rem;
  }
}

/* policy */

.legal-wrapper {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
  animation: zoomFade 0.7s ease-in-out;
  border-left: 5px solid #2980b9;
}

.legal-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #0056b3;
  font-weight: 800;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legal-subtitle {
  font-size: 1.6rem;
  color: #0077cc;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 10px;
  border-left: 4px solid #007bff;
}

.legal-section p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-section strong {
  color: #004f91;
  font-weight: 700;
}

.legal-section a {
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px dotted transparent;
  transition: all 0.3s ease;
}

.legal-section a:hover {
  color: #003f7f;
  border-color: #003f7f;
}

@keyframes zoomFade {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .legal-wrapper {
    padding: 30px 20px;
  }

  .legal-heading {
    font-size: 2rem;
  }

  .legal-subtitle {
    font-size: 1.4rem;
  }

  .legal-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .legal-wrapper {
    padding: 20px 15px;
  }

  .legal-heading {
    font-size: 1.8rem;
  }

  .legal-subtitle {
    font-size: 1.3rem;
  }

  .legal-section p {
    font-size: 0.95rem;
  }
}