@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif; /* Default font for body */
  font-size: 14px;
  color: #333; /* Default text color (dark gray) */
  background-color: #f9f9f9; /* Soft background for contrast */
  line-height: 1.6; /* Better readability */
  transition: background 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif; /* Use Roboto for headings */
  color: #2c3e50; /* Deep blue-gray color for headings */
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.3s ease; /* Smooth color transitions */
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #0071ff; /* Hover color effect */
}

.clear {
  clear: both;
}

.ovh {
  overflow: hidden;
}

.error {
  color: red;
}

.success {
  color: green;
}

/* Headline Styles */
.headline {
  text-align: center;
  margin-bottom: 40px; /* Reduced margin for compact look */
}

.headline h2 {
  font-size: 34px; /* Increased size for impact */
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1.5px; /* Spacing for a modern look */
  color: #0071ff; /* Vibrant modern blue */
  animation: fadeInDown 0.6s ease; /* Animated entrance */
}

.headline h3 {
  font-size: 20px;
  color: #666; /* Softer color for subheadings */
}

/* Background Colors */
.bg-gray {
  background: #f4f4f4 !important; /* Lighter gray for clean look */
}

.bg-white {
  background: #ffffff !important;
}
/* Base style for the navigation bar */
.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0071ff, #00c6ff, #0071ff); /* Gradient mimicking wood colors */
    background-size: 200% 200%; /* Increased size for smoother animation */
    animation: gradientShift 5s ease infinite; /* Smooth color shift animation */
    overflow: hidden;
    display: flex;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 20px; /* Adjusted for desktop */
    color: white; /* White text color */
    text-align: center;
}

/* Keyframe for smooth background gradient animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Style for each nav item */
.navbar li {
    display: inline-block;
    margin: 0 10px; /* Smaller margin */
}


/* Top Bar */
.top {
  width: 100%;
  height: 40px;
  background: #131921; /* Dark modern background */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  transition: background 0.3s ease;
}

.top:hover {
  background-color: #2c3e50; /* Darker color on hover */
}

.top ul {
  display: flex;
  align-items: center;
  list-style-type: none;
}

.top ul li {
  margin: 0 10px;
  font-weight: 500; /* Bolder for clarity */
}

.top ul li i {
  margin-right: 5px;
}

.top .right ul li a {
  color: white;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  display: block;
  transition: background 0.4s ease, transform 0.3s ease; /* Smooth transition for icons */
}

.top .right ul li a:hover {
  background: #0071ff;
  transform: scale(1.1); /* Scale effect on hover */
}

/* Header Section */
.header {
  width: 100%;
  height: auto;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Soft shadow for depth */
  padding: 10px 0;
  transition: box-shadow 0.3s ease;
}

.header:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Deeper shadow on hover */
}

.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

/* Logo */
.header .logo {
  flex: 1;
  text-align: left;
}

.header .logo img {
  max-width: 100%;
  height: 60px; /* Adjusted logo height */
  transition: transform 0.3s ease;
}

.header .logo img:hover {
  transform: scale(1.1); /* Subtle scaling effect on logo hover */
}

/* Search Area */
.header .search-area {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header .search-area input[type="text"] {
  width: 100%;
  max-width: 400px;
  padding: 10px 15px;
  border-radius: 25px;
  border: 1px solid #ddd;
  outline: none;
  transition: border 0.3s ease;
}

.header .search-area input[type="text"]:focus {
  border-color: #0071ff; /* Border color change on focus */
}

.header .search-area button {
  position: absolute;
  right: 5px;
  background-color: #0071ff;
  border: none;
  padding: 10px 20px;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.header .search-area button:hover {
  background-color: #005bb5;
  transform: scale(1.05); /* Slight scale on hover */
}

/* Right Section */
.header .right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header .right ul {
  display: flex;
  list-style: none;
}

.header .right ul li {
  margin-left: 15px;
  color: #333;
}

.header .right ul li a {
  color: #0071ff;
  font-weight: 600;
  transition: color 0.3s ease;
}

.header .right ul li a:hover {
  color: #00c6ff; /* Hover color change */
}

/* Animations */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header .inner {
    flex-direction: column;
  }

  .header .logo,
  .header .search-area,
  .header .right {
    flex: unset;
    margin-bottom: 15px;
  }

  .header .search-area input[type="text"] {
    max-width: 100%;
  }
}


.nav {
  background: linear-gradient(135deg, #0071ff, #00c6ff, #0071ff); /* Gradient mimicking wood colors */
  background-size: 200% 200%; /* Increased size for smoother animation */
  animation: gradientShift 5s ease infinite; /* Smooth color shift animation */
  position: relative; /* For layering */
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Menu Container */
.menu-container {
  width: 100%;
  margin: 0 auto;
}

/* Mobile Menu - Default hidden for desktop */
.menu-mobile {
  display: none; /* Hidden for desktop */
  padding: 20px;
  color: #fff;
  background-color: #333; /* Add background color for visibility */
  text-align: left; /* Align text left */
  cursor: pointer;
  position: relative; /* Allow for positioning the icon */
}

.menu-mobile:after {
  content: "\f067"; /* FontAwesome icon */
  font-family: "FontAwesome";
  font-size: 2.5rem;
  color: #fff;
  position: absolute;
  right: 20px; /* Position icon on the right */
  top: 50%;
  transform: translateY(-50%); /* Vertically center the icon */
}

/* Hover Effect for Mobile Menu */
.menu-mobile:hover {
  color: #ddd;
}

/* Media Query for Mobile View */
@media (max-width: 768px) {
  .menu-mobile {
    display: block; /* Display mobile menu on small screens */
  }
}



.menu-dropdown-icon:before {
  content: "\f067";
  font-family: "FontAwesome";
  display: none;
  cursor: pointer;
  float: right;
  padding: 1.5em 2em;
  background: rgba(255, 255, 255, 0.5); /* Semi-transparent background for dropdown */
  color: #333;
}

.menu > ul {
  margin: 0 auto;
  width: 100%;
  list-style: none;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}

.menu > ul:before,
.menu > ul:after {
  content: "";
  display: table;
}

.menu > ul:after {
  clear: both;
}

.menu > ul > li {
  float: left;
  padding: 0;
  margin: 0;
}

.menu > ul > li a {
  text-decoration: none;
  padding: 1.5em 20px;
  display: block;
  color: #fff;
}

.menu > ul > li:hover {
  background: rgba(255, 255, 255, 0.2); /* Light background on hover */
}

.menu > ul > li > ul {
  display: none;
  width: 100%;
  background: #f0f0f0;
  padding: 20px;
  position: absolute;
  z-index: 999999;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li {
  margin: 0;
  padding-bottom: 0;
  list-style: none;
  width: 25%;
  background: none;
  float: left;
}

.menu > ul > li > ul > li a {
  color: #777;
  padding: 0.2em 0;
  width: 95%;
  display: block;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  color: #333;
}

.menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  font-size: 0.8em;
}

.menu > ul > li > ul > li > ul > li a {
  border: 0;
}

.menu > ul > li > ul.normal-sub {
  width: 220px;
  left: auto;
  padding: 10px 20px;
}

.menu > ul > li > ul.normal-sub > li {
  width: 100%;
}

.menu > ul > li > ul.normal-sub > li a {
  border: 0;
  padding: 1em 0;
}

/* –––––––––––––––––––––––––––––––––––––––––––––––––– 
Mobile Style - Advanced Modern UI 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media only screen and (max-width: 959px) {
  /* Menu Container */
  .menu-container {
    width: 100%;
    background: linear-gradient(135deg, #00c6ff, #0072ff); /* Blue Gradient */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* More subtle shadow for depth */
    border-radius: 12px; /* Rounded corners for the container */
    padding: 15px;
  }

  /* Mobile Menu */
  .menu-mobile {
    display: block;
    background: linear-gradient(135deg, #00c6ff, #0072ff); /* Matching Gradient */
    border-radius: 12px; /* Rounded edges */
    padding: 15px;
    text-align: center;
  }

  /* Dropdown Icon */
  .menu-dropdown-icon:before {
    display: block;
    content: "\f0d7"; /* FontAwesome hamburger icon */
    font-family: 'Font Awesome 5 Free', 'Arial';
    font-size: 30px;
    color: #fff;
    padding: 10px;
    transition: transform 0.3s ease-in-out;
  }

  .menu-dropdown-icon:active:before {
    transform: rotate(90deg); /* Rotate icon when active */
  }

  /* Menu List */
  .menu > ul {
    display: none;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  /* Menu List Item */
  .menu > ul > li {
    width: 100%;
    float: none;
    display: block;
    background: transparent;
    margin: 12px 0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  }

  .menu > ul > li:hover {
    background: linear-gradient(135deg, #0072ff, #00c6ff); /* Inverted gradient on hover */
    transform: scale(1.05); /* Slight scale effect on hover */
  }

  /* Menu Link */
  .menu > ul > li a {
    padding: 1.5em;
    width: 100%;
    display: block;
    background: transparent;
    color: white; /* Ensures contrast with the background */
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }

  .menu > ul > li a:hover {
    background: rgba(255, 255, 255, 0.1); /* Light hover effect */
    color: #ffeb3b; /* Golden color on hover */
  }

  /* Submenu Styling */
  .menu > ul > li > ul {
    position: relative;
    background: rgba(255, 255, 255, 0.1); /* Submenu light overlay */
    border-radius: 8px;
    margin-top: 10px;
    padding: 0;
    transition: opacity 0.3s ease-in-out;
  }

  /* Normal Submenu */
  .menu > ul > li > ul.normal-sub {
    width: 100%;
  }

  /* Submenu List Item */
  .menu > ul > li > ul > li {
    width: 100%;
    margin-top: 10px;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    text-align: left;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

  .menu > ul > li > ul > li:first-child {
    margin-top: 0;
  }

  .menu > ul > li > ul > li:hover {
    background: rgba(255, 255, 255, 0.2); /* Light background for hover effect */
    transform: scale(1.02);
  }

  /* Submenu Link */
  .menu > ul > li > ul > li a {
    padding: 1.5em;
    display: block;
    color: white;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }

  .menu > ul > li > ul > li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffeb3b; /* Golden color for submenu items on hover */
  }

  /* Deeper Submenu */
  .menu > ul > li > ul > li > ul {
    background: rgba(255, 255, 255, 0.3); /* Even lighter background for deeper menus */
  }

  .menu > ul > li > ul > li > ul > li {
    display: block;
    background: transparent;
  }

  /* Show on Mobile */
  .menu .show-on-mobile {
    display: block;
    background: linear-gradient(135deg, #00c6ff, #0072ff); /* Consistent with the main menu */
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
  }

  /* Active Menu Item */
  .menu > ul > li.active > a {
    background: linear-gradient(135deg, #ffeb3b, #00c6ff); /* Highlight active item */
    color: #333; /* Dark text for active item */
  }

  /* Animation for smooth dropdowns */
  .menu > ul > li > ul {
    display: none;
  }

  .menu > ul > li.active > ul {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  }
}


.bx-wrapper {
  position: relative;
  box-shadow: none;
  border: 0;
  margin-bottom: 0;
}

.bx-controls {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
}

.welcome {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #333;
  text-align: center;
  padding: 70px 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
}

.welcome .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: #333;
}

.welcome h2 {
  color: #fff;
  margin-bottom: 25px;
}

.welcome p {
  color: #fff;
}

.welcome p.button {
  color: #fff;
  margin-top: 35px;
}

.welcome p.button a {
  background: #0d1452;
  color: #fff;
  padding: 10px 14px;
  transition: all 0.4s ease;
  text-decoration: none;
}

.welcome p.button a:hover {
  background: #fff;
  color: #0d1452;
}

.service {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 70px 0;
}

.service .item {
  text-align: center;
}
.service .icon {
  text-align: center;
}

.service .icon i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: #0d1452;
  color: #fff;
  font-size: 38px;
  border-radius: 50%;
}
.product .product-carousel {
  position: relative;
}

.product .owl-controls {
  position: absolute;
  top: -60px;
  right: 0;
}

.product .owl-controls .owl-prev,
.product .owl-controls .owl-next {
  background: #353535;
  transition: all 0.4s ease;
  padding: 13px 20px; /* Combined padding for simplicity */
  border-radius: 5px; /* Added border radius for a smoother look */
}

.product .owl-controls .owl-prev i,
.product .owl-controls .owl-next i {
  font-size: 14px;
}

.product .owl-controls .owl-prev:hover,
.product .owl-controls .owl-next:hover {
  background: #0d1452;
}

.product .item {
  border: 2px solid #e5e5e5;
  border-radius: 10px; /* Added border radius for a softer appearance */
  transition: transform 0.3s; /* Added transform effect */
}

.product .item:hover {
  transform: scale(1.02); /* Slightly enlarges the item on hover */
}

.product .text {
  background: #f2f3f3;
  padding: 14px;
  overflow: hidden;
  border-radius: 10px; /* Added border radius for consistency */
}

.product .text del {
  color: #9d9d9d;
}

.product .text h3 {
  font-weight: 700;
  text-align: center;
  color: #353535;
  font-size: 18px;
  margin: 0 0 5px; /* Adjusted margin for better spacing */
}

.product .text h3 a {
  color: #333;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.product .text h3 a:hover {
  text-decoration: none;
}

.product .text h4 {
  color: #0d1452;
  text-align: center;
  font-size: 18px;
}

.product .text p {
  text-align: center;
  font-size: 14px;
  margin: 20px 0 14px; /* Adjusted margins for spacing */
}

.product .text p a {
  background: #e7a340;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  transition: all 0.4s ease;
  border-radius: 5px; /* Added border radius for buttons */
}

.product .out-of-stock {
  width: 100%;
  text-align: center;
}

.product .out-of-stock .inner {
  display: inline-block;
  background: #0d1452;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  text-decoration: line-through;
  border-radius: 5px; /* Added border radius */
}

.product .text .rating {
  text-align: center;
}

.product .text p a:hover {
  background: #333;
}

.product .item .thumb {
  position: relative;
  overflow: hidden;
}

.product .item .thumb .photo {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 10px 10px 0 0; /* Rounded top corners */
}

.product .item .thumb .overlay {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0.2);
  transition: all 300ms ease;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px; /* Matching overlay border radius */
}

.product .item:hover .thumb .overlay {
  opacity: 1;
  transform: scale(1);
}

.product-cat {
  padding-top: 14px;
}

.product-cat .item {
  margin-bottom: 30px;
}

.product .item-product-cat {
  border: 0;
}

.product .item-product-cat .inner {
  border: 2px solid #e5e5e5;
  border-radius: 10px; /* Added border radius for consistency */
}

.product .item-search-result {
  border: 0;
}

.product .item-search-result .inner {
  border: 2px solid #e5e5e5;
  border-radius: 10px; /* Added border radius for consistency */
}

.product .item-search-result:nth-of-type(4n + 1) {
  clear: both;
}

.product .item-product-cat:nth-of-type(3n + 1) {
  clear: both;
}

/* Testimonial Section */
.testimonial-v1 {
  padding: 80px 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-color: #131921; /* Dark background for contrast */
}

.testimonial-v1 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Updated to use rgba for control over opacity */
}

.testimonial-v1 .container {
  position: relative;
  z-index: 1; /* Kept elements above the overlay */
}

/* Testimonial Heading */
.testimonial-v1 .heading {
  margin-bottom: 50px;
}

.testimonial-v1 .heading h2 {
  font-size: 32px; /* Increased for more impact */
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #00c6ff; /* Bright cyan for a modern look */
  letter-spacing: 1.2px;
}

.testimonial-v1 .heading p {
  font-size: 16px;
  text-align: center;
  color: #ddd; /* Softer white for readability */
  margin-top: 10px;
}

/* Testimonial Carousel */
.testimonial-v1 .testimonial-carousel {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}

.testimonial-v1 .content .comment {
  background-color: rgba(255, 255, 255, 0.1); /* Light semi-transparent background */
  color: #fff;
  padding: 20px 50px;
  border-radius: 10px; /* Larger border-radius for a modern look */
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.testimonial-v1 .content .comment:hover {
  background-color: rgba(255, 255, 255, 0.2); /* Slight background change on hover */
  transform: scale(1.05); /* Slight scaling effect on hover */
}

.testimonial-v1 .content .comment p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  font-style: italic; /* Added italics for testimonial text */
}

/* Author Section */
.testimonial-v1 .author {
  width: 100%;
  text-align: center;
  margin-top: 30px; /* Increased margin for better spacing */
}

.testimonial-v1 .photo {
  display: inline-block;
  margin-right: -4px;
  vertical-align: top;
}

.testimonial-v1 .photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #00c6ff; /* Added border to highlight the author */
}

.testimonial-v1 .text {
  display: inline-block;
  vertical-align: top;
}

.testimonial-v1 .text h3 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-align: left;
  margin-top: 10px;
}

.testimonial-v1 .text h4 {
  font-size: 14px;
  color: #ddd; /* Softer color for sub-text */
  text-align: left;
}

/* Owl Carousel Navigation */
.testimonial-v1 .owl-nav {
  margin-top: 20px;
}

.testimonial-v1 .owl-nav i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 24px;
  text-align: center;
}

.testimonial-v1 .owl-nav .owl-prev,
.testimonial-v1 .owl-nav .owl-next {
  color: #fff;
  background: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); /* Centered vertically */
}

.testimonial-v1 .owl-nav .owl-prev i,
.testimonial-v1 .owl-nav .owl-next i {
  font-size: 30px;
  font-weight: bold;
}

.testimonial-v1 .owl-nav .owl-prev {
  left: -60px; /* Adjusted position for better balance */
}

.testimonial-v1 .owl-nav .owl-next {
  right: -60px;
}

.testimonial-v1 .owl-nav .owl-prev:hover,
.testimonial-v1 .owl-nav .owl-next:hover {
  color: #00c6ff; /* Bright cyan hover color for modern look */
  transform: scale(1.2); /* Slight scaling effect */
}
/* Home Blog Section */
.home-blog {
  width: 100%;
  height: auto;
  padding: 70px 0; /* Increased padding for spaciousness */
  overflow: hidden; /* Ensures no overflow from items */
}

.home-blog .item {
  margin-bottom: 20px; /* Added margin for spacing between items */
}

.home-blog .item .photo {
  width: 100%;
  height: 300px; /* Fixed height for uniformity */
  background-size: cover; /* Cover for full background */
  background-position: center center; /* Center the background image */
  background-repeat: no-repeat; /* No repeat of background */
}

.home-blog .text {
  padding: 14px; /* Consistent padding */
  background: #f2f3f3; /* Light background for text */
}

.home-blog .text h3 {
  margin-top: 0; /* Removes default margin for consistency */
  font-size: 18px; /* Font size for heading */
  font-weight: 700; /* Bold font weight */
}

.home-blog .text p.button {
  margin-top: 25px; /* Margin for button spacing */
}

.home-blog .text p.button a {
  background: #0d1452; /* Dark background for button */
  color: #fff; /* White text for contrast */
  font-size: 14px; /* Font size for button text */
  padding: 6px 10px; /* Button padding */
  transition: all 0.4s ease; /* Smooth transition effect */
}

.home-blog .text p.button a:hover {
  background: #333; /* Darker shade on hover */
}

/* Footer Main Section */
.footer-main {
  width: 100%;
  height: auto;
  padding: 50px 0; /* Spacing for footer */
  background: #2a2a2a; /* Dark footer background */
}

.footer-main h3 {
  color: #ffffff; /* White text color */
  font-size: 16px; /* Font size for headings */
  font-weight: 600; /* Bold font weight */
  text-transform: uppercase; /* Uppercase text for emphasis */
  position: relative; /* Positioning for pseudo-element */
  padding-bottom: 14px; /* Padding for spacing */
  margin-bottom: 25px; /* Margin for spacing */
  border-bottom: 1px solid #525252; /* Bottom border for separation */
}

.footer-main h3:after {
  content: ""; /* Pseudo-element for additional styling */
  position: absolute; /* Absolute positioning */
  width: 50px; /* Width for underline */
  background: #0d1452; /* Underline color */
  left: 0; /* Align to left */
  bottom: -2px; /* Position below text */
  height: 4px; /* Height for underline */
}

.footer-main .footer-col p {
  color: #a3a3a3; /* Softer text color */
  font-size: 14px; /* Font size for paragraph text */
  line-height: 22px; /* Improved line height for readability */
}

.footer-main .footer-col p a {
  color: #a3a3a3; /* Link color */
}

.footer-main .footer-col p span {
  display: block; /* Block display for spans */
  color: #a3a3a3; /* Span color */
}

.footer-main .footer-col ul li {
  color: #a3a3a3; /* List item color */
  font-size: 14px; /* Font size for list items */
  line-height: 22px; /* Improved line height */
  transition: all 0.4s ease; /* Transition for hover effect */
  list-style-type: none; /* Remove default list style */
  margin-bottom: 8px; /* Margin for spacing */
  position: relative; /* Positioning for icon */
  padding-left: 20px; /* Padding for spacing */
}

.footer-main .footer-col ul li a {
  color: #a3a3a3; /* Link color */
  font-size: 14px; /* Font size for links */
  line-height: 22px; /* Improved line height */
  transition: all 0.4s ease; /* Transition for hover effect */
}

.footer-main .footer-col ul li a:hover {
  color: #fff; /* White color on hover */
}

.footer-main .footer-col ul li:before {
  color: #a3a3a3; /* Icon color */
  content: "\f0a4"; /* FontAwesome icon */
  font-family: "FontAwesome"; /* Font family for icons */
  left: 0; /* Align to left */
  position: absolute; /* Absolute positioning */
  top: 0; /* Align to top */
}

.footer-main .footer-col .contact-item {
  color: #a3a3a3; /* Text color for contact items */
  font-size: 14px; /* Font size for contact items */
  overflow: hidden; /* Hide overflow */
  margin-bottom: 10px; /* Margin for spacing */
  display: table; /* Table display for alignment */
}

.footer-main .footer-col .contact-item .icon {
  width: 35px; /* Width for icon */
  display: table-cell; /* Table-cell display for alignment */
  vertical-align: top; /* Vertical alignment */
  font-size: 14px; /* Font size for icon */
  margin-right: 10px; /* Margin for spacing */
}

.footer-main .footer-col .contact-item .icon i {
  width: 24px; /* Width for icon */
  height: 24px; /* Height for icon */
  line-height: 24px; /* Line height for icon */
  text-align: center; /* Centered text for icon */
  background: #dedede; /* Background color for icon */
  color: #2a2a2a; /* Dark color for icon */
  border-radius: 50%; /* Circular icon */
}

.footer-main .footer-col .contact-item .text {
  display: table-cell; /* Table-cell display for alignment */
  vertical-align: top; /* Vertical alignment */
  line-height: 22px; /* Line height for text */
}

.footer-main .footer-col p.social {
  margin-bottom: 10px; /* Margin for social links */
}

/* Footer Bottom Section */
.footer-bottom {
  width: 100%;
  height: auto;
  background: #141314; /* Dark footer background */
  padding: 14px 0; /* Padding for footer */
}

.footer-bottom .copyright {
  font-size: 13px; /* Font size for copyright text */
  color: #a3a3a3; /* Color for copyright text */
  text-align: center; /* Centered text */
}
/* Scroll to Top Button */
.scrollup {
  position: fixed;
  z-index: 99999; /* High z-index for visibility */
  bottom: 20px; /* Position from bottom */
  right: 20px; /* Position from right */
  display: none; /* Hidden by default */
}

.scrollup i {
  width: 50px; /* Icon size */
  height: 50px; /* Icon size */
  line-height: 40px; /* Centering text */
  border-radius: 50%; /* Circular button */
  background: #0d1452; /* Button color */
  color: #fff; /* Icon color */
  border: 4px solid #0d1452; /* Border color */
  text-align: center; /* Centering icon */
  font-size: 26px; /* Icon font size */
  opacity: 0.5; /* Initial opacity */
}

.scrollup i:hover {
  opacity: 1; /* Full opacity on hover */
}

/* Product Slider */
ul.prod-slider li {
  height: 450px; /* Fixed height for slides */
  background-repeat: no-repeat; /* No repeat for background */
  background-size: cover; /* Cover for full background */
  background-position: top center; /* Positioning of background */
  position: relative; /* For absolute positioning of links */
}

ul.prod-slider li a {
  position: absolute; /* Absolute positioning */
  top: 0; /* Align to top */
  left: 0; /* Align to left */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  display: block; /* Block display */
  z-index: 99999999; /* High z-index for clickability */
}

.bx-controls {
  display: none; /* Hide controls */
}

.prod-pager-thumb {
  width: 80px; /* Thumbnail width */
  height: 80px; /* Thumbnail height */
  background-repeat: no-repeat; /* No repeat for background */
  background-size: cover; /* Cover for full background */
  background-position: top center; /* Positioning of background */
}

#prod-pager {
  margin-top: 20px; /* Margin for spacing */
}

#prod-pager a {
  float: left; /* Float for layout */
  margin-right: 3px; /* Margin for spacing */
}

/* Product Details */
ul.nav-tabs {
  margin-top: 50px; /* Margin for top spacing */
}

.product .p-title h2 {
  color: #0d1452; /* Title color */
  margin-top: 0; /* Removes default margin */
  font-size: 24px; /* Font size for title */
  font-weight: 700; /* Bold title */
}

.product .p-status,
.product .p-review {
  margin-bottom: 10px; /* Spacing for status and review */
}

.product .p-price {
  line-height: 30px; /* Line height for pricing */
  font-size: 20px; /* Font size for price */
  font-weight: 700; /* Bold price */
  color: #333; /* Price color */
  margin-bottom: 20px; /* Margin for spacing */
}

.product .p-price span {
  font-size: 30px; /* Larger price span */
}

.product .p-price del {
  color: #c7c7c7; /* Color for strikethrough price */
}

.product .p-short-des {
  margin-bottom: 30px; /* Margin for short description */
}

.product .p-quantity {
  font-weight: 700; /* Bold quantity */
  line-height: 30px; /* Line height for quantity */
  margin-bottom: 35px; /* Margin for spacing */
  font-size: 14px; /* Font size for quantity */
}

.product .p-quantity input[type="number"] {
  height: 30px; /* Input height */
  width: 100px; /* Input width */
  border: 2px solid #c7c7c7; /* Border color */
}

.product .btn-cart,
.product .btn-cart1 input[type="submit"] {
  margin-bottom: 30px; /* Margin for spacing */
}

.product .btn-cart a,
.product .btn-cart1 input[type="submit"] {
  padding: 10px 14px; /* Padding for buttons */
  background: #f19000; /* Button background color */
  color: #fff; /* Button text color */
}

/* Share Section */
.product .share {
  line-height: 30px; /* Line height for share text */
  font-weight: 700; /* Bold font weight */
}

/* Navigation Tabs */
.product .nav {
  background: transparent; /* Transparent background */
}

.product .nav-tabs li a {
  font-weight: 700; /* Bold font weight */
  color: #333; /* Link color */
}

/* Tab Content */
.product .tab-content > .tab-pane {
  padding-top: 20px; /* Padding for tab content */
}

/* Review Form */
.review-form h2 {
  font-size: 24px; /* Font size for review title */
  font-weight: 700; /* Bold font weight */
}

.review-form .btn-default {
  background: #0d1452; /* Background color for button */
  color: #fff; /* Text color for button */
  border-radius: 0; /* Square corners */
  border: 0; /* No border */
  padding: 10px 14px; /* Padding for button */
}

/* Rating Section */
.rating-section {
  margin-bottom: 14px; /* Margin for spacing */
}

/* Page Banner */
.page-banner {
  width: 100%; /* Full width */
  height: auto; /* Auto height */
  background-repeat: no-repeat; /* No repeat for background */
  background-position: center center; /* Center background */
  background-size: cover; /* Cover for full background */
  position: relative; /* For overlay positioning */
  padding-top: 15px; /* Top padding */
  padding-bottom: 15px; /* Bottom padding */
  overflow: hidden; /* Hide overflow */
}

.page-banner .overlay {
  position: absolute; /* Absolute positioning */
  left: 0; /* Align to left */
  top: 0; /* Align to top */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  opacity: 0.7; /* Overlay opacity */
  background: #131921; /* Overlay background color */
}

.page-banner h1 {
  color: #fff; /* Heading color */
  text-align: center; /* Centered text */
  z-index: 999; /* High z-index for visibility */
  position: relative; /* For positioning */
}

/* Page Section */
.page {
  width: 100%; /* Full width */
  height: auto; /* Auto height */
  padding-top: 50px; /* Top padding */
  padding-bottom: 50px; /* Bottom padding */
}

.page h3.special {
  font-size: 22px; /* Font size for special headings */
  font-weight: 600; /* Font weight for headings */
  padding-bottom: 14px; /* Bottom padding */
  margin-bottom: 25px; /* Bottom margin */
  border-bottom: 1px solid #b9b9b9; /* Bottom border */
}

.page h3.special:after {
  content: ""; /* Pseudo-element for underline */
  position: absolute; /* Absolute positioning */
  width: 50px; /* Width for underline */
  background: #0d1452; /* Underline color */
  left: 0; /* Align to left */
  bottom: -2px; /* Position below text */
  height: 4px; /* Height for underline */
}


.cart {
  width: 100%;
  height: auto;
}

.cart table img {
  width: 100px;
}

.cart table tr td {
  vertical-align: middle;
}

.cart input[type="number"] {
  height: 30px;
  width: 70px;
  border: 2px solid #c7c7c7;
  padding-left: 10px;
  padding-right: 10px;
}

.cart table tr td .trash {
  color: #0d1452;
  font-size: 18px;
}

.cart table tr td.total-text,
.cart table tr th.total-text {
  text-align: right;
  font-size: 14px;
}

.cart table tr td.total-amount,
.cart table tr th.total-amount {
  text-align: right;
  font-size: 14px;
}

.cart-buttons {
  width: 100%;
  float: right;
  margin-top: 40px;
}

.cart-buttons ul {
  float: right;
}

.cart-buttons li {
  float: left;
  list-style-type: none;
  margin-left: 14px;
}

.cart-buttons li input[type="submit"],
.cart-buttons li a {
  background: #0d1452;
  border: 0;
  border-radius: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 18px;
  padding: 10px 20px;
  color: #fff;
}

.cart-buttons li input[type="submit"]:hover,
.cart-buttons li a:hover {
  background: #333;
  color: #fff;
}

.cform input[type="submit"] {
  background: #0d1452;
  border: 0;
}

.cform address span,
.cform address a span {
  color: #0d1452;
}

.page iframe {
  width: 100%;
}

.gal-container {
  padding: 12px;
}
.gal-item {
  overflow: hidden;
  padding: 3px;
}
.gal-item .box {
  height: 350px;
  overflow: hidden;
}
.box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.gal-item a:focus {
  outline: none;
}
.gal-item a:after {
  content: "\e003";
  font-family: "Glyphicons Halflings";
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  right: 3px;
  left: 3px;
  top: 3px;
  bottom: 3px;
  text-align: center;
  line-height: 350px;
  font-size: 30px;
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.gal-item a:hover:after {
  opacity: 1;
}
.modal-open .gal-container .modal {
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-open .gal-item .modal-body {
  padding: 0px;
}
.modal-open .gal-item button.close {
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #000;
  opacity: 1;
  color: #fff;
  z-index: 999;
  right: -12px;
  top: -12px;
  border-radius: 50%;
  font-size: 14px;
  border: 2px solid #fff;
  line-height: 25px;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
}
.modal-open .gal-item button.close:focus {
  outline: none;
}
.modal-open .gal-item button.close span {
  position: relative;
  top: -3px;
  font-weight: lighter;
  text-shadow: none;
}
.gal-container .modal-dialogue {
  width: 80%;
}
.gal-container .description {
  position: relative;
  height: 40px;
  top: -40px;
  padding: 10px 25px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: left;
}
.gal-container .description h4 {
  margin: 0px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}
.gal-container .modal.fade .modal-dialog {
  -webkit-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -ms-transform: scale(0.1);
  transform: scale(0.1);
  top: 100px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.gal-container .modal.fade.in .modal-dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, -100px, 0);
  opacity: 1;
}
@media (min-width: 768px) {
  .gal-container .modal-dialog {
    width: 55%;
    margin: 50 auto;
  }
}
@media (max-width: 768px) {
  .gal-container .modal-content {
    height: 250px;
  }
}
/* Footer Style */
i.red {
  color: #bc0213;
}
.gal-container {
  padding-top: 0px;
  padding-bottom: 75px;
}

.videos {
  padding-top: 30px;
  padding-bottom: 10px;
  text-align: center;
}
.videos .adv img {
  width: 100%;
  height: auto;
}
.videos .prop-4-col:nth-of-type(4n + 1) {
  clear: both;
}
.videos .prop-3-col:nth-of-type(3n + 1) {
  clear: both;
}
.videos h2 {
  color: #464646;
  font-family: "Open Sans", serif;
  font-size: 26px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
}
.videos h3 {
  color: #464646;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 40px;
  margin-top: 20px;
}
.single-room {
  position: relative;
  margin-bottom: 30px;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.75);
}
.single-room .photo-col2 {
  width: 100%;
  height: 360px;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.single-room .photo-col3 {
  width: 100%;
  height: 150px;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.single-room-text {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.single-room-text h2 {
  background: #fff;
  font-size: 13px;
  line-height: 1.4;
  text-transform: none;
  margin-bottom: 0;
}
.single-room-text h2 a {
  color: #333;
  padding: 8px !important;
  font-weight: 600;
  display: block;
}

table.bill-address tr td:nth-of-type(1) {
  font-weight: bold;
  width: 200px;
}

.user-sidebar ul {
  text-align: center;
}

.user-sidebar ul li {
  list-style-type: none;
  border-bottom: 1px solid #fff;
  display: inline-block;
}

.user-sidebar ul li a {
  padding: 7px 20px;
  min-height: 40px;
  line-height: 40px;
  background: #444;
  color: #fff;
}

.user-content h3 {
  margin-bottom: 20px;
}

.blog {
  background: #fff;
}

.blog .post-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.blog .image-holder {
  width: 285px;
  float: left;
  position: relative;
  margin-right: 15px;
}

.blog .image-holder-single {
  width: 100%;
  float: none;
  position: relative;
}

.blog .image-holder-single img {
  width: 100%;
  height: auto;
}

.blog .image-holder .date {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  z-index: 999;
}

.blog .image-holder .day {
  width: 60px;
  height: 40px;
  line-height: 40px;
  background: #0d1452;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 16px;
}

.blog .image-holder .day:before {
  position: absolute;
  top: 22px;
  left: 24px;
  color: #0d1452;
  font-family: "FontAwesome";
  content: "\f0d7";
  font-size: 24px;
}

.blog .image-holder .month {
  width: 60px;
  height: 40px;
  line-height: 40px;
  background: #333;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
}

.blog .text {
  width: calc(100% - 300px);
  float: left;
}

.blog .text-single {
  width: 100%;
  float: none;
}

.blog .text-single h3 {
  font-family: "Roboto", serif; /* Change to Georgia font */
  margin-top: 20px;
}

.blog .text .inner {
  padding: 0 20px 20px 20px;
}

.blog h3 {
  font-family: "Roboto", sans-serif;
  text-align: left;
  color: #333;
  font-weight: 700;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.5;
  text-transform: uppercase;
}

.blog h3 a {
  font-family: "Roboto", sans-serif;
  color: #333;
}

.blog h3 a:hover {
  color: #0d1452;
}

.blog .text ul.status {
  overflow: hidden;
  margin-bottom: 15px;
}

.blog .text ul.status li {
  text-align: left;
  margin-bottom: 15px;
  color: #0d1452;
  font-size: 14px;
  float: left;
  list-style-type: none;
  margin-right: 15px;
  line-height: 18px;
  margin-bottom: 5px;
  padding-left: 0;
}

.blog .text ul.status li a {
  color: #0d1452;
}

.blog .text ul.status li i {
  margin-right: 8px;
}

.blog ul.status li:before {
  content: "";
}

.blog ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  list-style-type: none;
}

.blog ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "FontAwesome";
  content: "\f044";
  color: #333;
}

.blog h1 {
  font-size: 24px;
  color: #0d1452;
  font-weight: bold;
}

.blog h2 {
  font-size: 20px;
  color: #0d1452;
  font-weight: bold;
}

.blog h3 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
}

.blog h4 {
  font-size: 16px;
  color: #0d1452;
  font-weight: bold;
}

.blog h5 {
  font-size: 14px;
  color: #0d1452;
  font-weight: bold;
}

.blog h6 {
  font-size: 12px;
  color: #0d1452;
  font-weight: bold;
}

.blog p {
  margin-bottom: 15px;
  font-size: 14px;
}

.blog p.button {
  margin-top: 20px;
}

.blog p.button a {
  font-family: "Roboto", sans-serif;
  background: #0d1452;
  color: #fff;
  padding: 10px 14px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.blog p.button a:hover {
  background: #444;
}

.blog .pagination {
  margin-top: 20px;
}

.blog .pagination ul {
  width: 100%;
  height: auto;
  text-align: center;
}

.blog .pagination ul li {
  display: inline-block;
  color: #333;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-right: 10px;
  padding-left: 0;
}

.blog .pagination ul li:before {
  content: "";
}

.blog .pagination ul li a {
  background: #0d1452;
  color: #fff;
  display: block;
  font-size: 16px;
}

.blog .pagination ul li a i {
  margin-right: 0;
}

.blog .pagination ul li a:hover {
  background: #333;
}

.blog .pagination ul li a.active {
  background: #333;
}

.blog .gallery-carousel {
  position: relative;
  z-index: 999;
}

.blog .owl-controls {
  position: absolute;
  top: 0px;
  right: 0;
  z-index: 999;
}

.blog .owl-controls .owl-prev,
.blog .owl-controls .owl-next {
  background: #333;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding-left: 13px;
  padding-right: 13px;
}

.blog .owl-controls .owl-prev i,
.blog .owl-controls .owl-next i {
  font-size: 16px;
}

.blog .owl-controls .owl-prev:hover,
.blog .owl-controls .owl-next:hover {
  background: #0d1452;
}

.blog .video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.blog .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog .audio {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

/**
 * ---------------------------------------------------
 * Sidebar Style
 * ---------------------------------------------------
 */
/* Sidebar */
.sidebar {
  width: 100%;
}

/* Widget */
.widget {
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid #ddd; /* Subtle border for definition */
  border-radius: 6px; /* Rounded corners */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
  background-color: #fff; /* Background color for contrast */
}

/* Search Widget */
.widget-search input {
  height: 40px;
  border: 2px solid #afafaf;
  padding: 0 10px; /* Padding adjusted for better spacing */
  border-radius: 4px; /* Slightly rounded */
  transition: border-color 0.3s ease; /* Smooth border transition */
}

.widget-search input:focus {
  border-color: #0d1452; /* Focus border color */
  outline: none; /* Remove default outline */
}

.widget-search button {
  width: 48px; /* Increased width for a modern look */
  height: 40px; /* Increased height for better alignment */
  border: none; /* No border for cleaner look */
  background: #0d1452;
  border-radius: 4px;
  margin-left: 5px;
  color: #fff;
  cursor: pointer; /* Pointer cursor for buttons */
  transition: background-color 0.3s ease; /* Smooth background transition */
}

.widget-search button:hover {
  background: #333; /* Darker background on hover */
}

/* Widget Title */
.widget h4 {
  font-family: "Roboto", sans-serif;
  font-size: 24px; /* Increased font size */
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 2px solid #0d1452; /* Bottom border for emphasis */
}

/* List Items */
.widget ul li {
  display: block;
  color: #333;
  position: relative;
  padding-left: 20px; /* Increased padding for better spacing */
  margin-bottom: 10px;
  transition: color 0.3s ease; /* Smooth color transition */
}

.widget ul li:hover {
  color: #0d1452; /* Change color on hover */
}

.widget ul li:before {
  content: "\f105"; /* FontAwesome icon */
  font-family: "FontAwesome";
  position: absolute;
  color: #0d1452; /* Color of the icon */
  left: 0; /* Positioned to the left */
}

.widget ul li a {
  color: inherit; /* Inherit color from parent */
  font-size: 14px; /* Consistent font size */
  text-decoration: none; /* No underline */
}

.widget ul.tag-cloud li {
  display: inline-block;
  padding: 4px 10px;
  border: 2px solid #afafaf;
  font-size: 12px;
  margin-right: 5px;
  border-radius: 4px; /* Rounded corners for tag cloud */
  transition: background-color 0.3s ease, border-color 0.3s ease; /* Smooth transition */
}

.widget ul.tag-cloud li:hover {
  background: #0d1452; /* Dark background on hover */
  border-color: #0d1452; /* Matching border on hover */
}

.widget ul.tag-cloud li:hover a {
  color: #fff; /* Change text color on hover */
}

/* Card Navigation Tabs */
.card .nav-tabs {
  border-bottom: 2px solid #ddd;
  background: #fff;
}

.card .nav-tabs > li > a {
  border: none;
  color: #666;
  transition: color 0.3s ease; /* Smooth color transition */
}

.card .nav-tabs > li.active > a,
.card .nav-tabs > li > a:hover {
  color: #0d1452 !important;
  background: transparent;
}

.card .nav-tabs > li > a::after {
  content: "";
  background: #0d1452;
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -1px;
  transition: transform 0.3s ease; /* Smooth transform */
  transform: scale(0);
}

.card .nav-tabs > li.active > a::after,
.nav-tabs > li:hover > a::after {
  transform: scale(1);
}

/* Tab Content */
.tab-pane {
  padding: 14px 0;
}

.tab-content {
  padding: 20px;
}

/* Card Styles */
.card {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  border-radius: 6px; /* Rounded corners */
}

/* Video */
.vid iframe {
  width: 100%;
  height: 250px;
  border-radius: 6px; /* Rounded corners for iframe */
}

/* Pagination */
div.pagination {
  padding: 3px;
  margin: 3px;
  font-size: 14px;
  margin-bottom: 20px;
}

div.pagination a {
  padding: 5px 7px;
  margin: 2px;
  border: 1px solid #cf0d42;
  text-decoration: none;
  background-color: #0d1452;
  color: #fff;
  font-weight: bold;
  border-radius: 4px; /* Rounded corners */
  transition: background-color 0.3s ease; /* Smooth transition */
}

div.pagination a:hover,
div.pagination a:active {
  border-color: #cf0d42;
  background-color: #b20b39; /* Background change on hover */
}

div.pagination span.current {
  padding: 5px 7px;
  margin: 2px;
  border: 1px solid #cf0d42;
  font-weight: bold;
  background-color: #b20b39;
  color: #fff;
}

div.pagination span.disabled {
  padding: 5px 7px;
  margin: 2px;
  border: 1px solid #929693;
  color: #929693;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../img/1.gif) no-repeat center; /* Centered background */
  margin: -100px 0 0 -100px;
}

/* Ad Section */
.ad-section img {
  width: 100% !important;
  height: auto !important;
}

/* Breadcrumb */
.breadcrumb {
  background: #fff;
  margin-top: -40px;
}

.breadcrumb ul {
  padding: 0; /* Reset padding */
  list-style-type: none; /* No list styles */
}

.breadcrumb ul li {
  float: left;
  margin-right: 10px;
  color: #0d1452;
}

.breadcrumb ul li:last-child {
  color: #333;
}

.breadcrumb ul li a {
  color: #0d1452;
}

/* Slider */
.bs-slider .item {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 500px;
  border-radius: 6px; /* Rounded corners for slider items */
}

.home-newsletter {
  padding: 80px 0;
  /* background: #0d1452; */
  background: #232f3e;
}

.home-newsletter .single {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.home-newsletter .single h2 {
  font-size: 22px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: 0;
}
.home-newsletter .single .form-control {
  height: 50px;
  border-color: #333;
  outline: none;
}
.home-newsletter .single .btn {
  min-height: 50px;
  background: #333;
  color: #fff;
  padding-left: 15px;
  padding-right: 15px;
}
