html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Taviraj', serif;
	font-size: 15px;
}

/*@font-face {
  font-family: myFirstFont;
  src: url(sansation_light.woff);
}*/

/*----------------------------------------------------------------------------------------------------------------
	Global
----------------------------------------------------------------------------------------------------------------*/

h1, h2, h3, h4,h5, h6 {
	color: #000;
}

p {
	color: #000;
}
a:hover{
	text-decoration: none;
}
li{
	list-style-type: none;
}
.c-btn {
	background-color: #071e70;
	color: #fff;
	padding: 0.5rem 2rem;
	border-radius: 10px;
}
.c-btn:hover {
	color: #fff;
	background-color: #04113e;
}
.mr0 {
	margin: 0;
}
.pd0 {
	padding: 0;
}
.mrt10 {
	margin-top: 10px;
}
.mrt20 {
	margin-top: 20px;
}
.mrt30 {
	margin-top: 30px;
}
.mrt40 {
	margin-top: 40px;
}
.mrb10 {
	margin-bottom: 10px;
}
.mrb20 {
	margin-bottom: 20px;
}
.mrb30 {
	margin-bottom: 30px;
}
.mrb40 {
	margin-bottom: 40px;
}
.pdt10 {
	padding-top: 10px;
}
.pdt20 {
	padding-top: 20px;
}
.pdb10 {
	padding-bottom: 10px;
}
.pdb20 {
	padding-bottom: 20px;
}
.section-entry {
	padding: 5rem 0;
}
.page-section {
	padding: 2rem 0;
}

.relative {
	position: relative;
}
.width100 {
	width: 100%;
}
.txtct {
	text-align: center;
}
.txtrt {
	text-align: right;
}
.txtupr {
	text-transform: uppercase;
}
.dflex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}


/*---------------------------------------------------------------------------------------------------------------------
	Navbar
---------------------------------------------------------------------------------------------------------------------*/

.navbar {
	background-color: transparent!important;
	/* -webkit-box-shadow: 0 2px 6px -1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 6px -1px rgba(0, 0, 0, 0.2); */
}
.logo-img {
	width: 190px;
}
.nav-item {
	padding-left: 2rem;
}
.nav-link {
	color: #fff!important;
	line-height: 50px;
    text-transform: uppercase;
}

.navbar-dark .navbar-toggler {
	border:2px solid #fff;
}

/* add your custome hamburger icon */
.myNav-toggler-icon {
    background-image: url(../img/toggler-w.png)!important;
}

.navbar-dark .navbar-toggler:focus {
	outline: none;
} 

.customNav  {
	background-color: #000!important;
	-webkit-box-shadow: 0 2px 6px -1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 6px -1px rgba(0, 0, 0, 0.2);
	animation: navSlide 1s ease forwards;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 500;
    color: #000;
    text-align: inherit;
    white-space: nowrap;
    background-color: #d4af37;
    border: 0;
    border-bottom: solid 1px #585858;
    text-transform: uppercase;
    font-size: 14px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -36px;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 17px;
    color: #fff;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    text-align: center;
    border-radius: 0.25rem;
    line-height: 37px;
}

.dropdown-item:hover {
    color: #fff;
    text-decoration: none;
    background-color: #000;
}

.navbar-social a {
    color: #fff; /* or use brand colors */
    transition: 0.3s ease;
}

.navbar-social a:hover {
    color: #f39c12;
}


@keyframes navSlide {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0%);
	}
}

/*---------------------------------------------------------------------------------------------------------------------
	Carousel
---------------------------------------------------------------------------------------------------------------------*/

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

/* Main Heading - Line 1 */
.carousel-caption h2 {
    font-size: 5rem;
    font-weight: 700;
    color: #d4af37;  /* Gold color */
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: capitalize;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

/* Main Heading - Line 2 */
.carousel-caption h3 {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;  /* White color */
    line-height: 1.2;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-in-out 0.2s;
}

/* Sub-text / Tagline */
.carousel-caption p {
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 400;
    color: #f1f1f1; /* Light grey */
    letter-spacing: 0.5px;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s ease-in-out 0.4s;
}

/* Animate on active slide */
.carousel-item.active .carousel-caption h2,
.carousel-item.active .carousel-caption h3,
.carousel-item.active .carousel-caption p {
    opacity: 1;
    transform: translateY(0);
}



/* ...........................................................................
 Owl Carousel
..................................................................................... */

.owl-prev span, .owl-next span {
	color: red;
	font-size: 20px;
}

.owl-prev span:hover, 
.owl-next span:hover {
	color: #8199A3;
}

.owl-prev, .owl-next {
	position: absolute;
	top: 0;
	height: 100%;
}

.owl-prev {
	left: -20px;
}

.owl-next {
	right: -20px;
}

/* removing blue outline from buttons */
button:focus, button:active {
   outline: none;
}





/*---------------------------------------------------------------------------------------------------------------------
	Home
---------------------------------------------------------------------------------------------------------------------*/

.main-wrapper {
	margin-top: 100;
}

.card-layout1 {
	
}

/* .bg-img-wrapper {
    background-image: url(../img/home-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: overlay;
    background-color: #000000b8; */
/* } */


.boxes-wrapper {
  background-color: #cca02e;
}


.box-wrap {
  display: flex;
  justify-content: center;
  align-content: center;
}

.box-wrap img {
      width: 250px;
    border-radius: 50%;
}

.box-txt {
   margin-left: 20px;
}

.box-txt h5 a {
  color: #000;
  font-size: 24px;
}

.box-txt p {
  color: #fff;
}


.top-category-wrapper h3 {
    text-align: center;
    font-size: 48px;
   
}

.top-wrap {
    border: 2px dashed rgba(0, 0, 0, 0.1);
    padding: 10px 50px 50px 50px;
    height: 100%;
}

.top-wrap h5{
  text-align: center;
  margin-top: 15px;
}

.top-wrap p {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  line-height: 1.7em;
  font-weight: 400;
  /*text-align: center;*/
}

.top-wrap h5 a {
   color: #000;
}

.btn-1 {
   margin-top: 50px;
   display: flex;
   justify-content: center;
}

.btn-1 a {
   padding: 20px 74px 20px;
    min-width: 280px;
    font-size: 16px;
    background-color: #d7b65d;
    color: #000;
    text-align: center;
}

.btn-1 a:hover {
    background-color: #192026;
    color: #fff;
    transition: 0.5s;
}

.featured-head h3 {
   margin-top: 25px;
    margin-bottom: 25px;
}


.client-wrapper {
   background-color: #f5f5f5;
}

.client-wrapper img {
  width: 100px;
}


/*---------------------------------------------------------------------------------------------------------------------
	About
---------------------------------------------------------------------------------------------------------------------*/

/* About Us Page Styling */
.about-hero-section {
    background: url('../img/about-us-banner.png') center center/cover no-repeat;
    background-blend-mode: overlay;
    background-color: #000000b8;
    padding: 180px 0;
    color: #fff;
}
.about-hero-section h1 {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
}
.about-hero-section h1 span {
    color: #f8c146;
}
.about-hero-section p {
    font-size: 20px;
    margin-top: 10px;
    color: #fff;
}

.company-overview img {
    max-height: 400px;
    object-fit: cover;
}

.mission-vision {
  background-color: #192026;
}

.mission-vision h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color:  #cca02e;
}
.mission-vision p {
    font-size: 16px;
    color: #fff;
}

.why-choose-us .choose-box {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
    transition: 0.3s ease;
}
.why-choose-us .choose-box:hover {
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.why-choose-us .choose-box img {
    width: 60px;
    margin-bottom: 15px;
}

.team-section img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}





/*---------------------------------------------------------------------------------------------------------------------
	Products
---------------------------------------------------------------------------------------------------------------------*/

.page-banner-fixed {
    background-color: #000000a1;
    background-image: url(../img/COSMETIC-BOXES.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 170px 0;
    text-transform: uppercase;
    background-blend-mode: overlay;
    background-size: 100% 481px;
    height: 500px; 
    min-height: 500px;
}
.page-banner-fixed-sweet {
    background-color: #000000a1;
    background-image: url(../img/SWEETS-BOXES.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 170px 0;
    text-transform: uppercase;
    background-blend-mode: overlay;
    background-size: 100% 481px;
    height: 500px; 
    min-height: 500px;
}
.page-banner-fixed h2 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 17px;
    text-align: center;
}


.page-banner-fixed-2 {
   background-color: #000000a1;
    background-image: url(../img/GIFTS-BOXES.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 170px 0;
    text-transform: uppercase;
    background-blend-mode: overlay;
    background-size: 100% 481px;
    height: 500px; 
    min-height: 500px;
}

.page-banner-fixed-2 h2 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 17px;
    text-align: center;
}

.page-banner-fixed-3 {
   background-color: #000000a1;
    background-image: url(../img/FASHION.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 170px 0;
    text-transform: uppercase;
    background-blend-mode: overlay;
    background-size: 100% 481px;
    height: 500px; 
    min-height: 500px;
}

.page-banner-fixed-3 h2 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 17px;
    text-align: center;
}

.page-banner-fixed-4 {
   background-color: #000000a1;
    background-image: url(../img/ELECTRONICS-BOXES.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 170px 0;
    text-transform: uppercase;
    background-blend-mode: overlay;
    background-size: 100% 481px;
    height: 500px; 
    min-height: 500px;
}

.page-banner-fixed-4 h2 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 17px;
    text-align: center;
}

.page-banner-fixed-5 {
   background-color: #000000a1;
    background-image: url(../img/health.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 170px 0;
    text-transform: uppercase;
    background-blend-mode: overlay;
    background-size: 100% 481px;
    height: 500px; 
    min-height: 500px;
}

.page-banner-fixed-5 h2 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 17px;
    text-align: center;
}

.page-banner-fixed-6 {
   background-color: #000000a1;
    background-image: url(../img/WEDDING-BOXES.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 170px 0;
    text-transform: uppercase;
    background-blend-mode: overlay;
    background-size: 100% 481px;
    height: 500px; 
    min-height: 500px;
}

.page-banner-fixed-6 h2 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 17px;
    text-align: center;
}
.page-banner-fixed-7 {
   background-color: #000000a1;
    background-image: url(../img/SLEEVE-BOXES.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 170px 0;
    text-transform: uppercase;
    background-blend-mode: overlay;
    background-size: 100% 481px;
    height: 500px; 
    min-height: 500px;
}

.page-banner-fixed-7 h2 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 17px;
    text-align: center;
}

.page-banner-fixed-8 {
   background-color: #000000a1;
    background-image: url(../img/TOYS-GAMES.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 170px 0;
    text-transform: uppercase;
    background-blend-mode: overlay;
    background-size: 100% 481px;
    height: 500px; 
    min-height: 500px;
}

.page-banner-fixed-8 h2 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 17px;
    text-align: center;
}

.points-info-box ul li {
    list-style-type: disc !important;
    line-height: 35px;
}

.points-info-box ul {
   padding-left: 10px;
}


.product-image-wrapper {
    background-color: #ededed;
}

.test-img-box img {
   border: 3px dotted grey; 
   padding: 20px;
   background-color: #fff;
}


.why-choose-boxopedia {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px 25px;
  background-color: #f9f9f9;
  border-left: 4px solid #d7b65d;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.why-choose-boxopedia h5 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.why-choose-boxopedia p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.why-choose-boxopedia ul {
  list-style: none;
  padding-left: 0;
}

.why-choose-boxopedia ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.why-choose-boxopedia ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #000;
  font-weight: bold;
}



.google-rating {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  padding: 10px 15px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  gap: 10px;
}

.rating-number {
  color: #c49a00;
  font-weight: bold;
  font-size: 18px;
}

.stars span {
  color: #c49a00;
  font-size: 20px;
  margin-right: 2px;
}

.review-link {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  margin-left: 5px;
}

.review-link:hover {
  text-decoration: underline;
}

.google-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  margin-left: 8px;
}



.cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f8ff;
  border-radius: 20px;
  padding: 30px 40px;
  font-family: Arial, sans-serif;
  gap: 40px;
  flex-wrap: wrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.cta-left {
  flex: 1;
  min-width: 280px;
}

.cta-left h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.cta-left p {
  font-size: 15px;
  color: #222;
  line-height: 1.6;
}

/* Divider + Contact Block */
.cta-right {
  min-width: 180px;
  border-left: 1px solid #0073e6;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.cta-call-text {
  color: #0073e6;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 10px;
}

.cta-call-btn {
  background-color: #ffc107;
  color: #000;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: background-color 0.3s;
}

.cta-call-btn:hover {
  background-color: #e0a800;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-right {
    border-left: none;
    border-top: 1px solid #0073e6;
    padding-left: 0;
    padding-top: 20px;
    align-items: flex-start;
  }
}


.img-box-1{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c9c4c0;
    padding: 40px
}

.img-box-1 img{
  width: 400px;
  height: 400px;
}


/*//////////////////// form ////////////////////*/

.quote-form-container {
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.quote-form-container h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
  color: #333;
}

.quote-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #444;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 16px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form button {
  background-color: #d7b65d;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.quote-form button:hover {
  background-color: #000;
}


/*---------------------------------------------------------------------------------------------------------------------
	Contact
---------------------------------------------------------------------------------------------------------------------*/

#mail-msg-alert {
	margin-bottom: 3rem;
}
#mail-msg-alert button.btn {
	display: table;
	margin: 0 auto;
}
#mail-msg {
	color: #fff;
}
#mail-msg:hover {
	text-decoration: none;
}

.map-wrapper {
        line-height:0;

}


.contact-hero-section {
    background: url('../img/contact-banner.png') center center/cover no-repeat;
    background-blend-mode: overlay;
    background-color: #000000b8;
    padding: 180px 0;
    color: #fff;
}
.contact-hero-section h1 {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
}
.contact-hero-section h1 span {
    color: #f8c146;
}
.contact-hero-section p {
    font-size: 20px;
    margin-top: 10px;
    color: #fff;
}

.contact-form-wrap {
	background-color: #e5e5e561;
    padding: 30px;
}

.height-100 {
	height: 100%;
}


.contact-form-btn {
	background-color: #fd7020;
    color: #fff;
    padding: 10px 25px;
    border-radius: 21px;
    font-weight: 500;
    border: none;
}


.company-contact-info-wrapper {
    background-color: #fd7020;
    margin-bottom: 50px;
}

.comapny-contact-box {
	display: flex;
    align-items: center;
}

.contact-icon-box i {
	text-align: center;
    font-size: 25px;
    color: #fff;
    margin-bottom: 18px;
}

.contact-txt-box p {
	margin-left: 12px;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
}

/*---------------------------------------------------------------------------------------------------------------------
	404 page not found
---------------------------------------------------------------------------------------------------------------------*/
/*.page-not-found-wrap {
	margin-top: 7rem;
}*/
.page-not-found {
	display: table;
	margin: 0 auto;
	padding: 5rem 0;
	width: 50%;
	filter: drop-shadow(2px 4px 6px black);
	display: none;
}
.page-not-found-text {
	text-align: center;
	margin: 8rem 0 5rem;
}

/* oops text with fill background image */
.page-not-found-text h1 {
	font-family: 'Rubik Mono One', sans-serif;
	font-size: 20vw;
	color: #000;  
  background: url("../img/banner1.png") no-repeat;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-position: center;
		text-transform: capitalize;
	/*display: none; currently not visible*/
}

.page-not-found-text h6 {
	font-size: 25px;
	font-weight: bold;
}
.page-not-found-text a {
	font-weight: bold;
}

/*---------------------------------------------------------------------------------------------------------------------
	Footer
---------------------------------------------------------------------------------------------------------------------*/

.footer-logo-box {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-box h5 {
   color: #fff;
}

.footer-logo-box img {
  width: 200px;
}
.top-footer-wrapper {
	
}
.bottom-footer-wrapper {
	background-color: #000;
	padding: 1rem 0;
}
.footer-copyright-text {
	margin-bottom: 0;
	text-align: center;
	font-size: 0.85rem;
	color: #fff;
}
.creator-link {
	color: #d4af37;
    font-size: 16px;
    font-weight: 600;
}
.creator-link:hover {
	color: #fff;
}

.footer-section {
  background-color: #1b1f23;
  padding: 40px 0;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  color: #fff;
  gap: 20px;
}

.footer-box {
  flex: 1;
  min-width: 200px;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 20px;
}

.footer-box:last-child {
  border-right: none;
}

.icon {
  font-size: 24px;
  color: #d4af37; /* gold-ish tone */
  margin-bottom: 10px;
  display: inline-block;
}

.text {
  font-size: 15px;
  color: #fefefe;
  line-height: 1.6;
}

.map {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.whatsapp i {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    background-color: #25d366;
    /* box-shadow: 2px 2px 3px #999; */
    font-size: 30px;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.instagram i {
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, #fdf497 5%, 
    #fd5949 45%, #d6249f 60%, 
    #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.facebook i {
  color: #1877F2;
}

.youtube i {
  color: #FF0000;
}

.twitter i {
  color: #1DA1F2;
}
a:hover i {
  transform: scale(1.2);
  transition: 0.3s ease;
}

