/********** Template CSS **********/
:root {
    --primary: #F47C20;
    --light: #F6F7F8;
    --dark: #1A2A36;
}
  body {
      margin: 0;
      font-family: 'Open Sans', sans-serif !important;
      box-sizing: border-box;
      overflow-x: hidden;
      width: 100% !important;
    }

    
html, body {
  width: 100%;
  overflow-x: hidden;  /* Hides unwanted horizontal scroll */
}

.container, .carousel, .navbar {
  max-width: 100%;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 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 {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.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;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 125px;
}

.navbar .navbar-nav .nav-link {
    
    margin-right: 30px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    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-nav .nav-link  {
        margin-right: 0;
          padding: 20px 50px;

    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.portfolio-img::before,
.portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: var(--dark);
    transition: .5s;
}

.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 51%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}


@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    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;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}


  .page-header {
        height: 700px !important;
        background-position: center top !important;
    }

@media (max-width: 768px) {
    .page-header {
        height: 460px !important;
        background-position: center top !important;
    }
}
@media (max-width: 668px) {
    .page-header {
        height: 360px !important;
        background-position: center top !important;
    }
}

@media (max-width: 568px) {
    .page-header {
        height: 260px !important;
        background-position: center top !important;
    }
}



.float-icon {
  position: fixed;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  z-index: 9999;
  animation: blinkIcon 1.2s infinite;
}

/* Left Call Button */
.call-left {
  left: 20px;
  bottom: 100px;
  background-color: #0d6efd;
}

/* Right WhatsApp Button */
.whatsapp-right {
  right: 20px;
    bottom: 100px;
  background-color: #25D366;
}

@keyframes blinkIcon {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}


.social-sticky {
  position: fixed;
  top: 40%;
  left: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.social-sticky a {
  width: 45px;
  height: 45px;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-sticky a:hover {
  width: 55px;
}

.phone { background: #1455aa; }
.whatsapp { background: #25d366; }
.instagram { background: #e1306c; }
.facebook { background: #1877f2; }
.youtube { background: #ff0000; }

@media (max-width: 768px) {

  .social-sticky {
    position: fixed;
    top: 40%;          /* center vertically */
    right: 0 !important;          /* RIGHT SIDE */
    left: auto ;        /* cancel left */
    bottom: auto;      /* cancel bottom */
    transform: translateY(-50%);
    flex-direction: column;
  }

  .social-sticky a {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .social-sticky a:hover {
    width: 50px;
    transform: translateX(-6px);
  }
}
@media (max-width: 768px) {
  .social-sticky {
    position: fixed !important;
    top: 75% !important;
    right:  auto !important ;
    left:0 !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    flex-direction: column !important;
  }
}


.mobile-topbar {
  background-color: #F47C20;
  overflow: hidden;
  font-family: 'Comic Neue', cursive;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee-scroll 15s linear infinite;
}

.marquee-content span {
  color: #fff;
  font-size: 14px;
  padding: 8px 30px;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.navbar-logo {
  height: 100px;       /* desktop */
  width: auto;
}

@media (max-width: 568px) {
  .navbar-logo {
    height: 70px;  
   
  }
  .navbar a{
    margin-top: -5% !important;
    margin-bottom: -5%;
  }
  .navbar h2{
    display: none;
  }
}
@media (max-width: 368px) {
  .navbar-logo {
    height: 60px;  
   
  }
}
.mn-cover-wrapper {
  width: 100%;
  display: flex;
  justify-content: center; /* centers 95% container */
}

.mn-cover-image {
  width: 95%;              /* DESKTOP width */
  height: 900px;
  overflow: hidden;
  border-radius: 8px;      /* optional */
}

.mn-cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* IMPORTANT */
  object-position: center center;
  display: block;
}

/* Laptop */
@media (max-width: 1200px) {
  .mn-cover-image {
    height: 700px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .mn-cover-image {
    width: 100%;
    height: 550px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .mn-cover-image {
    width: 100%;           /* FULL WIDTH MOBILE */
    height: 420px;
    border-radius: 0;
  }
}


.mn-compare-section {
  padding: 60px 20px;
  background: #fff;
  font-family: "Segoe UI", sans-serif;
}

.mn-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mn-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.mn-title.danger {
  color: #d40000;
}

/* LEFT GRID */
.mn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mn-item {
  text-align: center;
}

.mn-item h4 {
  font-size: 18px;
  margin: 15px 0 8px;
}

.mn-item p {
  font-size: 15px;
  line-height: 1.6;
}

/* ICON CIRCLE */
.mn-icon-circle {
  width: 70px;
  height: 70px;
  background: #0B2C4D; /* PURPLE */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: auto;
}

.mn-icon-circle.danger {
  background: #0B2C4D;
}

.mn-right-box {
  padding-left: 20px;
}

.mn-danger-title {
  color: #d60000;
  text-align: left;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 35px;
}

/* RIGHT LIST */
.mn-right-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mn-right-item {
  display: flex;
  align-items: flex-start;   /* FIX */
  gap: 20px;
}

.mn-right-content h4 {
  font-size: 18px;
  margin: 0 0 6px;
}

.mn-right-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ICON */
.mn-purple {
  background: #0B2C4D;
  min-width: 64px;           /* FIX icon shift */
  height: 64px;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DIVIDER LINE */
.mn-divider {
  height: 1px;
  background: #ddd;
  margin-left: 84px;         /* aligns under text */
}

/* MOBILE */
@media (max-width: 768px) {
  .mn-right-box {
    padding-left: 0;
  }

  .mn-danger-title {
    text-align: center;
  }

  .mn-divider {
    margin-left: 0;
  }
}


/* MOBILE */
@media (max-width: 992px) {
  .mn-container {
    grid-template-columns: 1fr;
  }

  .mn-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .mn-grid {
    grid-template-columns: 1fr;
  }

  .mn-title {
    font-size: 24px;
  }
}

.product-item img {
    width: 100%;
    height: 220px;          /* controls visual zoom */
    object-fit: cover;
}

.product-item h6 {
    font-weight: 500;
    font-size: 15px;
}

@media (max-width: 768px) {
    .product-item img {
        height: 180px;
    }
}


.text-purple {
    color: #6a1b9a;
}

.feature-box {
    padding: 20px 10px;
}

.feature-box i {
    font-size: 42px;
    color: #0B2C4D;
    margin-bottom: 12px;
}

.feature-box h6 {
    font-size: 15px;
    font-weight: 500;
    margin-top: 5px;
}

/* Optional hover effect */
.feature-box:hover i {
    transform: scale(1.1);
    transition: 0.3s;
}


/* Service Section Paragraph Styling */
.product-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-top: 8px;
    padding: 0 10px;
    font-weight: 400;
}

/* Heading paragraph */
.container-xxl .text-center p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    max-width: 750px;
    margin: 0 auto;
}
.product-item img{
    border-radius: 10px;
    height: 300px;
}


/* ================================
   SERVICE SECTION
================================ */

.container-xxl {
    background-color: #fafafa;
}

/* Section Heading */
.container-xxl .text-center h1 {
    font-size: 36px;
    font-weight: 700;
    color: #F47C20; /* Purple */
}

.container-xxl .text-center h5 {
    font-size: 18px;
    font-weight: 500;
    color: #444;
}

.container-xxl .text-center p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    max-width: 780px;
    margin: 0 auto;
}

/* ================================
   PRODUCT CARD
================================ */

.product-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(128, 0, 128, 0.18);
}

/* Product Image */
.product-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

/* Product Title */
.product-item h6 {
    font-size: 16px;
    font-weight: 600;
    color: #F47C20;
    margin-top: 14px;
    letter-spacing: 0.4px;
}

/* Underline Effect */
.product-item h6::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #F47C20;
    margin: 8px auto 0;
}

/* Product Description */
.product-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-top: 10px;
    padding: 0 8px;
}

/* ================================
   RESPONSIVE DESIGN
================================ */

@media (max-width: 991px) {
    .product-item img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .container-xxl .text-center h1 {
        font-size: 28px;
    }

    .container-xxl .text-center h5 {
        font-size: 16px;
    }

    .container-xxl .text-center p {
        font-size: 14px;
    }

    .product-item img {
        height: 180px;
    }

    .product-item h6 {
        font-size: 15px;
    }

    .product-item p {
        font-size: 13px;
    }
}



.founder-section {
  padding: 60px 20px;
  background: #ffffff;
}

.founder-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.founder-image img {
  width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.founder-content h2 {
  font-size: 28px;
  color: #ff7a00;
  margin-bottom: 5px;
}

.founder-content h3 {
  font-size: 22px;
  color: #0b1b3f;
  margin-bottom: 12px;
}

.founder-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  max-width: 600px;
}
