@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ==========================================
   GENERAL STYLES
   ========================================== */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: 32px;
}

.section-title h2:before {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.section-title p {
    font-size: 18px;
    opacity: 0.8;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: darken(var(--secondary-color), 10%);
    border-color: darken(var(--secondary-color), 10%);
}

/* Animations */
.animate-fadeIn {
    animation: fadeIn 1s ease;
}

.animate-slideUp {
    animation: slideUp 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes heroTextFlavour {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95) skewY(2deg);
        letter-spacing: 0.2em;
    }
    60% {
        opacity: 1;
        transform: translateY(-8px) scale(1.03) skewY(-1deg);
        letter-spacing: 0.05em;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) skewY(0deg);
        letter-spacing: normal;
    }
}

@keyframes heroTextOut {
    0% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-40px) scale(0.96); }
}
@keyframes heroTextIn {
    0% { opacity: 0; transform: translateY(40px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-text-anim-out {
    animation: heroTextOut 0.5s cubic-bezier(.4,2,.6,1) both;
}
.hero-text-anim-in {
    animation: heroTextIn 0.7s cubic-bezier(.4,2,.6,1) both;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.top-bar {
    padding-left: 40px;
}
.top-bar .container,
.top-bar .row,
.top-bar .col-md-6 {
    padding-left: 0 !important;
    margin-left: 0 !important;
}
.top-bar .list-inline {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.top-bar .list-inline-item:not(:last-child) {
    margin-right: 1.5rem;
}

.navbar-brand {
    position: relative;
    z-index: 10;
}

.navbar-logo {
    height: 56px;
    width: auto;
    max-width: 180px;
    display: block;
}
@media (max-width: 991px) {
    .navbar-logo {
        height: 40px;
        max-width: 120px;
    }
}
@media (max-width: 575px) {
    .navbar-logo {
        height: 32px;
        max-width: 90px;
    }
}

/* Remove default max-height for logo in navbar */
.navbar-brand img {
    max-height: none;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    padding: 15px 12px;
    font-weight: 500;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #fff;
    bottom: 10px;
    left: 12px;
    transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: calc(100% - 24px);
}

.navbar-dark .navbar-nav .nav-item {
    margin: 0 5px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero, .hero-video {
    padding-top: 0 !important;
}
body > .hero:first-child {
    margin-top: 0 !important;
}

.hero-video {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 32, 0.7);
    z-index: 0;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: none !important;
    box-shadow: none !important;
}

.hero-content h3 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    animation: heroTextFlavour 1.2s cubic-bezier(0.23, 1.02, 0.36, 1) both;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .d-flex {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-content .d-flex a {
    min-width: 160px;
    flex-basis: 160px;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}

/* Ensure hero section text is white */
.hero-content,
.hero-content h1,
.hero-content p {
    color: #fff !important;
}
.hero-content .btn-primary {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.hero-content .btn-outline-light {
    color: #fff;
    border-color: #fff;
}
.hero-content .btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Sleek transition for hero rotating text */
#hero-rotating-text {
    display: inline-block;
    transition: opacity 0.5s cubic-bezier(.4,2,.6,1), transform 0.5s cubic-bezier(.4,2,.6,1);
}
.hero-text-out {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.4s, transform 0.4s;
}
.hero-text-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.5s, transform 0.5s;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 25px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    color: #666;
}

.service-categories {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.service-categories h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.service-categories ul {
    list-style: none;
    padding-left: 0;
}

.service-categories ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.service-categories ul li:last-child {
    border-bottom: none;
}

.service-categories ul li a {
    color: #333;
    transition: all 0.3s ease;
}

.service-categories ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.service-detail {
    margin-bottom: 50px;
}

.service-detail img {
    border-radius: 10px;
    margin-bottom: 30px;
    width: 100%;
}

/* ==========================================
   ABOUT US SECTION
   ========================================== */
.about-img {
    max-height: 600px;
    height: 100%;
    display: flex;
    align-items: stretch;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    max-height: 700px;
    object-fit: cover;
    border-radius: 10px;
}

.about-experience {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: #666;
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    margin-bottom: 20px;
}

.about-feature i {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 15px;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.team-member h4 {
    margin-bottom: 5px;
}

.team-member p {
    color: #666;
    margin-bottom: 15px;
}

.team-member .social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: #f8f9fa;
    color: #333;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-member .social-icons a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* ==========================================
  BLOG SECTION
  ========================================== */
.blog-card {
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   margin-bottom: 30px;
   transition: all 0.3s ease;
}

.blog-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-card img {
   width: 100%;
   height: 200px;
   object-fit: cover;
}

.blog-card .card-body {
   padding: 25px;
}

.blog-card .blog-meta {
   margin-bottom: 15px;
   font-size: 14px;
   color: #666;
}

.blog-card .blog-meta span {
   margin-right: 15px;
}

.blog-card .blog-meta i {
   margin-right: 5px;
   color: var(--primary-color);
}

.blog-card h3 {
   font-size: 22px;
   margin-bottom: 15px;
}

.blog-card p {
   margin-bottom: 20px;
   color: #666;
}

.blog-detail {
   margin-bottom: 50px;
}

.blog-detail img {
   border-radius: 10px;
   margin-bottom: 30px;
   width: 100%;
}

.blog-detail .blog-meta {
   margin-bottom: 20px;
   font-size: 16px;
   color: #666;
}

.blog-detail .blog-meta span {
   margin-right: 20px;
}

.blog-detail .blog-meta i {
   margin-right: 5px;
   color: var(--primary-color);
}

.blog-detail h1 {
   font-size: 32px;
   margin-bottom: 20px;
}

.blog-sidebar {
   background-color: #f8f9fa;
   padding: 30px;
   border-radius: 10px;
   margin-bottom: 30px;
}

.blog-sidebar h3 {
   margin-bottom: 20px;
   padding-bottom: 10px;
   border-bottom: 1px solid #ddd;
}

.recent-posts {
   list-style: none;
   padding-left: 0;
}

.recent-posts li {
   padding: 10px 0;
   border-bottom: 1px solid #eee;
}

.recent-posts li:last-child {
   border-bottom: none;
}

.recent-posts li a {
   color: #333;
}

.recent-posts li a:hover {
   color: var(--primary-color);
}

.recent-posts .post-date {
   font-size: 12px;
   color: #666;
   display: block;
   margin-top: 5px;
}

/* ==========================================
  GALLERY SECTION
  ========================================== */
.gallery-filter {
   margin-bottom: 30px;
   text-align: center;
}

.gallery-filter button {
   background: none;
   border: none;
   padding: 8px 15px;
   margin: 0 5px 10px;
   border-radius: 25px;
   cursor: pointer;
   font-weight: 500;
   transition: all 0.3s ease;
}

.gallery-filter button:hover,
.gallery-filter button.active {
   background-color: var(--primary-color);
   color: #fff;
}

.gallery-item {
   margin-bottom: 30px;
   position: relative;
   overflow: hidden;
   border-radius: 10px;
   cursor: pointer;
}

.gallery-item img {
   width: 100%;
   height: 250px;
   object-fit: cover;
   transition: all 0.5s ease;
}

.gallery-item:hover img {
   transform: scale(1.1);
}

.gallery-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 32, 0.7);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
   opacity: 1;
}

.gallery-overlay i {
   color: #fff;
   font-size: 24px;
   margin: 0 10px;
}

/* Gallery Lightbox */
.lightbox {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.9);
   display: none;
   z-index: 1050;
   align-items: center;
   justify-content: center;
}

.lightbox.active {
   display: flex;
}

.lightbox-content {
   position: relative;
   max-width: 90%;
   max-height: 90%;
   display: flex;
   align-items: center;
   justify-content: center;
}
.lightbox-content video,
.lightbox-content img {
   display: block;
   margin: 0 auto;
   max-width: 800px;
   width: 100%;
   max-height: 70vh;
   border-radius: 12px;
   background: #000;
}

.lightbox-close {
   position: absolute;
   top: 15px;
   right: 15px;
   color: #fff;
   font-size: 24px;
   cursor: pointer;
}

.lightbox-nav {
   position: absolute;
   top: 50%;
   width: 100%;
   display: flex;
   justify-content: space-between;
   transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
   color: #fff;
   font-size: 24px;
   cursor: pointer;
   padding: 10px;
}

/* ==========================================
  SHOP SECTION
  ========================================== */
/* Enhanced Product Card Styles */
.product-card {
   border-radius: 15px;
   overflow: hidden;
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
   margin-bottom: 30px;
   transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   background: #fff;
   position: relative;
   height: 100%;
   display: flex;
   flex-direction: column;
}

.product-card:hover {
   transform: translateY(-15px);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-img {
   position: relative;
   overflow: hidden;
   border-radius: 15px 15px 0 0;
   height: 250px;
}

.product-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: all 0.6s ease;
}

.product-card:hover .product-img img {
   transform: scale(1.08);
}

.product-overlay {
   position: absolute;
   bottom: -60px;
   left: 0;
   width: 100%;
   background: rgba(255, 255, 255, 0.95);
   display: flex;
   justify-content: center;
   padding: 15px 0;
   transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
   z-index: 5;
}

.product-card:hover .product-overlay {
   bottom: 0;
}

.product-overlay a {
   color: #333;
   font-size: 18px;
   width: 40px;
   height: 40px;
   background: #fff;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 8px;
   transition: all 0.3s ease;
   box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.product-overlay a:hover {
   color: #fff;
   background-color: var(--primary-color);
   transform: translateY(-5px);
}

.product-overlay a.disabled {
   opacity: 0.5;
   cursor: not-allowed;
   pointer-events: none;
}

.product-badge {
   position: absolute;
   top: 15px;
   left: 15px;
   background-color: var(--primary-color);
   color: #fff;
   padding: 8px 12px;
   border-radius: 30px;
   font-size: 12px;
   font-weight: 500;
   z-index: 2;
   box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.product-badge.in-stock {
   background: #28a745;
   color: #fff;
   margin-left: 60%;
}
.product-badge.out-of-stock {
   background: #dc3545;
   color: #fff;
   margin-left: 60%;
}

.product-card .card-body {
   padding: 20px;
   flex-grow: 1;
   display: flex;
   flex-direction: column;
}

.product-card h3 {
   font-size: 18px;
   margin-bottom: 10px;
   font-weight: 600;
   flex-grow: 1;
}

.product-card h3 a {
   color: #333;
   transition: color 0.3s ease;
}

.product-card h3 a:hover {
   color: var(--primary-color);
}

.product-card .price {
   font-size: 18px;
   font-weight: 700;
   color: var(--primary-color);
   margin-bottom: 0;
}

.product-card .price del {
   font-size: 14px;
   color: #999;
   margin-right: 10px;
   font-weight: 400;
}

/* Enhanced notification styling */
.notification-alert {
   border-radius: 10px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   animation: slideInRight 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes slideInRight {
   from {
       transform: translateX(100%);
       opacity: 0;
   }
   to {
       transform: translateX(0);
       opacity: 1;
   }
}

/* Add animations for cart icon */
@keyframes tada {
   0% {transform: scale(1);}
   10%, 20% {transform: scale(0.9) rotate(-3deg);}
   30%, 50%, 70%, 90% {transform: scale(1.1) rotate(3deg);}
   40%, 60%, 80% {transform: scale(1.1) rotate(-3deg);}
   100% {transform: scale(1) rotate(0);}
}

.animate__animated {
   animation-duration: 1s;
   animation-fill-mode: both;
}

.animate__tada {
   animation-name: tada;
}
.product-detail {
   margin-bottom: 50px;
}

.product-detail-img {
   border-radius: 10px;
   overflow: hidden;
   margin-bottom: 20px;
}

.product-detail-img img {
   width: 100%;
}

.product-thumbnails {
   display: flex;
   margin-bottom: 30px;
}

.product-thumbnails img {
   width: 80px;
   height: 80px;
   object-fit: cover;
   margin-right: 10px;
   border-radius: 5px;
   cursor: pointer;
   opacity: 0.6;
   transition: all 0.3s ease;
}

.product-thumbnails img:hover,
.product-thumbnails img.active {
   opacity: 1;
}

.product-info h1 {
   font-size: 28px;
   margin-bottom: 15px;
}

.product-info .price {
   font-size: 24px;
   font-weight: 700;
   color: var(--primary-color);
   margin-bottom: 20px;
}

.product-info .price del {
   font-size: 18px;
   color: #999;
   margin-right: 10px;
   font-weight: 400;
}

.product-info .rating {
   margin-bottom: 20px;
}

.product-info .rating i {
   color: #ffc107;
   margin-right: 5px;
}

.product-info .rating span {
   color: #666;
   margin-left: 10px;
}

.product-info .description {
   margin-bottom: 30px;
   color: #666;
}

.product-actions {
   display: flex;
   align-items: center;
   margin-bottom: 30px;
}

.product-quantity {
   display: flex;
   align-items: center;
   margin-right: 15px;
}

.product-quantity input {
   width: 60px;
   height: 40px;
   text-align: center;
   border: 1px solid #ddd;
   border-radius: 4px;
}

.product-quantity button {
   background: #f8f9fa;
   border: 1px solid #ddd;
   width: 40px;
   height: 40px;
   border-radius: 4px;
   font-weight: 700;
   cursor: pointer;
}

.product-categories {
   background-color: #f8f9fa;
   padding: 30px;
   border-radius: 10px;
   margin-bottom: 30px;
}

.product-categories h3 {
   margin-bottom: 20px;
   padding-bottom: 10px;
   border-bottom: 1px solid #ddd;
}

.product-categories ul {
   list-style: none;
   padding-left: 0;
}

.product-categories ul li {
   padding: 8px 0;
   border-bottom: 1px solid #eee;
}

.product-categories ul li:last-child {
   border-bottom: none;
}

.product-categories ul li a {
   color: #333;
   display: flex;
   justify-content: space-between;
   transition: all 0.3s ease;
}

.product-categories ul li a:hover {
   color: var(--primary-color);
   padding-left: 5px;
}

.product-categories ul li a span {
   background-color: #eee;
   border-radius: 3px;
   padding: 0 8px;
   font-size: 12px;
}

/* Cart */
.cart-table th {
   font-weight: 600;
}

.cart-table .product-img {
   width: 80px;
   height: 80px;
   object-fit: cover;
   border-radius: 5px;
}

.cart-table .product-name {
   font-weight: 500;
}

.cart-table .product-remove {
   color: #dc3545;
   font-size: 18px;
   cursor: pointer;
}

.cart-table .quantity-input {
   width: 60px;
   text-align: center;
   border: 1px solid #ddd;
   border-radius: 4px;
   padding: 5px;
}

.cart-summary {
   background-color: #f8f9fa;
   padding: 30px;
   border-radius: 10px;
}

.cart-summary h3 {
   margin-bottom: 20px;
   padding-bottom: 10px;
   border-bottom: 1px solid #ddd;
}

.cart-summary table {
   width: 100%;
}

.cart-summary table tr {
   border-bottom: 1px solid #eee;
}

.cart-summary table tr:last-child {
   border-bottom: none;
}

.cart-summary table td {
   padding: 10px 0;
}

.cart-summary table td:last-child {
   text-align: right;
   font-weight: 500;
}

.cart-summary .total {
   font-size: 18px;
   font-weight: 700;
   color: var(--primary-color);
}

/* Checkout */
.checkout-form {
   margin-bottom: 30px;
}

.checkout-form h3 {
   margin-bottom: 20px;
   padding-bottom: 10px;
   border-bottom: 1px solid #ddd;
}

.checkout-form label {
   font-weight: 500;
}

.checkout-form .form-control {
   border-radius: 5px;
   padding: 10px 15px;
   margin-bottom: 15px;
}

.payment-methods {
   margin-top: 30px;
}

.payment-method {
   padding: 15px;
   border: 1px solid #ddd;
   border-radius: 5px;
   margin-bottom: 15px;
   cursor: pointer;
}

.payment-method.active {
   border-color: var(--primary-color);
   background-color: rgba(var(--primary-color-rgb), 0.05);
}

.payment-method label {
   display: flex;
   align-items: center;
   cursor: pointer;
}

.payment-method input {
   margin-right: 10px;
}

.payment-method-description {
   margin-top: 10px;
   padding-top: 10px;
   border-top: 1px solid #eee;
   display: none;
}

.payment-method.active .payment-method-description {
   display: block;
}

/* ==========================================
  CONTACT SECTION
  ========================================== */
.contact-info {
   background-color: #f8f9fa;
   padding: 30px;
   border-radius: 10px;
   margin-bottom: 30px;
}

.contact-info h3 {
   margin-bottom: 20px;
   padding-bottom: 10px;
   border-bottom: 1px solid #ddd;
}

.contact-info ul {
   list-style: none;
   padding-left: 0;
}

.contact-info ul li {
   padding: 10px 0;
   display: flex;
   align-items: flex-start;
}

.contact-info ul li i {
   color: var(--primary-color);
   font-size: 18px;
   margin-right: 15px;
   margin-top: 5px;
}

.contact-info ul li div {
   flex: 1;
}

.contact-info ul li h4 {
   font-size: 18px;
   margin-bottom: 5px;
}

.contact-info ul li p {
   margin-bottom: 0;
   color: #666;
}

.contact-form {
   margin-bottom: 30px;
}

.contact-form h3 {
   margin-bottom: 20px;
   padding-bottom: 10px;
   border-bottom: 1px solid #ddd;
}

.contact-form .form-control {
   border-radius: 5px;
   padding: 10px 15px;
   margin-bottom: 15px;
}

.contact-form textarea.form-control {
   height: 150px;
}

.map-container {
   height: 400px;
   border-radius: 10px;
   overflow: hidden;
   margin-bottom: 30px;
}

/* ==========================================
  AUTH PAGES
  ========================================== */
.auth-container {
   max-width: 500px;
   margin: 50px auto;
   padding: 30px;
   background-color: #fff;
   border-radius: 10px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.auth-container h2 {
   margin-bottom: 20px;
   padding-bottom: 10px;
   border-bottom: 1px solid #ddd;
   text-align: center;
}

.auth-container .form-control {
   border-radius: 5px;
   padding: 10px 15px;
   margin-bottom: 15px;
}

.auth-container .btn {
   padding: 10px 20px;
}

.auth-container .form-text {
   margin-top: 20px;
   text-align: center;
}

/* ==========================================
  ACCOUNT PAGES
  ========================================== */
.account-sidebar {
   background-color: #f8f9fa;
   border-radius: 10px;
   overflow: hidden;
   margin-bottom: 30px;
}

.account-sidebar .user-info {
   padding: 20px;
   background-color: var(--primary-color);
   color: #fff;
   text-align: center;
}

.account-sidebar .user-info h3 {
   margin-bottom: 5px;
}

.account-sidebar .user-info p {
   margin-bottom: 0;
   opacity: 0.8;
}

.account-sidebar .nav {
   padding: 15px 0;
}

.account-sidebar .nav-link {
   color: #333;
   padding: 10px 20px;
   border-left: 3px solid transparent;
   transition: all 0.3s ease;
}

.account-sidebar .nav-link:hover,
.account-sidebar .nav-link.active {
   background-color: rgba(var(--primary-color-rgb), 0.1);
   color: var(--primary-color);
   border-left-color: var(--primary-color);
}

.account-sidebar .nav-link i {
   margin-right: 10px;
}

.account-content {
   background-color: #fff;
   border-radius: 10px;
   padding: 30px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.account-content h3 {
   margin-bottom: 20px;
   padding-bottom: 10px;
   border-bottom: 1px solid #ddd;
}

.order-table th {
   font-weight: 600;
}

.order-status {
   display: inline-block;
   padding: 5px 10px;
   border-radius: 3px;
   font-size: 12px;
   font-weight: 500;
}

.order-status.pending {
   background-color: #ffc107;
   color: #000;
}

.order-status.processing {
   background-color: #17a2b8;
   color: #fff;
}

.order-status.completed {
   background-color: #28a745;
   color: #fff;
}

.order-status.cancelled {
   background-color: #dc3545;
   color: #fff;
}

/* ==========================================
  FOOTER
  ========================================== */
footer {
   background-color: #1a1a1a;
   color: #fff;
}

.footer-links a {
   color: #fff;
   display: block;
   margin-bottom: 10px;
   transition: all 0.3s ease;
}

.footer-links a:hover {
   color: var(--primary-color);
   padding-left: 5px;
}

.footer-contact li {
   margin-bottom: 15px;
}

.social-icons a {
   display: inline-block;
   width: 40px;
   height: 40px;
   line-height: 40px;
   text-align: center;
   background-color: rgba(255, 255, 255, 0.1);
   color: #fff;
   border-radius: 50%;
   margin-right: 10px;
   transition: all 0.3s ease;
}

.social-icons a:hover {
   background-color: var(--primary-color);
   transform: translateY(-5px);
}

.back-to-top {
   position: fixed;
   bottom: 30px;
   right: 30px;
   width: 40px;
   height: 40px;
   line-height: 40px;
   text-align: center;
   border-radius: 50%;
   background-color: var(--primary-color);
   color: #fff;
   z-index: 999;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s ease;
}

.back-to-top:hover {
   background-color: darken(var(--primary-color), 10%);
   color: #fff;
}

/* ==========================================
  RESPONSIVE STYLES
  ========================================== */
@media (max-width: 991px) {
   .navbar-dark .navbar-nav .nav-link::after {
       display: none;
   }
   
   .hero-content h1 {
       font-size: 36px;
   }
   
   .section-padding {
       padding: 60px 0;
   }
   .about-img img {
       max-height: 500px;
   }
   .hero-hanging-cards {
       position: static !important;
       bottom: auto !important;
       margin-top: 1.5rem !important;
       z-index: auto;
       width: 100%;
       justify-content: center;
   }
   .hanging-card {
       margin-right: 0;
       margin-bottom: 0;
   }
}

@media (max-width: 767px) {
   .hero-content {
       padding: 32px 10px;
       max-width: 95vw;
   }
   .hero-content h1 {
       font-size: 2rem;
   }
   .hero-content p {
       font-size: 1rem;
   }
   .hero-content .d-flex {
       flex-direction: column;
       align-items: stretch;
       gap: 12px;
   }
   .hero-video {
       height: 50vw;
       min-height: 40vh;
       max-height: 60vh;
   }
   .hero-video video {
       object-fit: cover;
       width: 100vw;
       height: 100%;
       min-height: 40vh;
       max-height: 60vh;
   }
   
   .section-padding {
       padding: 40px 0;
   }
   
   .section-title h2 {
       font-size: 28px;
   }
   
   .product-actions {
       flex-direction: column;
       align-items: flex-start;
   }
   
   .product-quantity {
       margin-bottom: 15px;
   }
   .hero-content .d-flex a {
       width: 100%;
       min-width: 0;
       flex-basis: auto;
   }
}

@media (max-width: 575px) {
   .top-bar {
       display: none;
   }
   
   .hero-content h1 {
       font-size: 24px;
   }
   
   .hero-video {
       height: 50vh;
   }
   
   .section-title h2 {
       font-size: 24px;
   }
   .navbar-logo-relative {
       height: 56px;
       left: 50%;
       top: 0;
       transform: translateX(-50%);
   }
   .about-img img {
       max-height: 350px;
   }
   .hero-hanging-cards {
       flex-direction: column !important;
       align-items: center;
       margin-top: 1.5rem !important;
   }
   .hanging-card {
       margin-bottom: 0.5rem;
   }
   .hanging-card:last-child {
       margin-bottom: 0;
   }
}

/* Define a variable for top-bar height at the root */
:root {
   --top-bar-height: 40px;
}

/* Updated logo positioning - relative to header instead of fixed */
.navbar-logo-relative {
    position: absolute;
    left: 40px;
    top: var(--top-bar-height); /* Start at the bottom of top bar, not overlapping it */
    height: 160px;
    width: auto;
    z-index: 1050;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10);
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12));
    background: transparent;
    transition: height 0.4s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
    pointer-events: none;
}

@media (max-width: 991px) {
    .navbar-logo-relative {
        height: 90px;
        left: 16px;
        top: var(--top-bar-height); /* Keep it at top bar height */
    }
}

@media (max-width: 575px) {
    .top-bar {
        display: none;
    }
    .navbar-logo-relative {
        height: 56px;
        left: 50%;
        top: 0; /* No top bar on mobile, so start at 0 */
        transform: translateX(-50%);
    }
}

/* Modern About Us section styles for homepage */
.about-home-section {
   background: none;
   position: relative;
   z-index: 1;
}

/* Animated security icons background for About Us section */
.about-animated-icons-bg {
   position: absolute;
   top: 0; left: 0; right: 0; bottom: 0;
   z-index: 0;
   pointer-events: none;
   overflow: hidden;
}
.about-animated-icons-bg .icon {
   position: absolute;
   font-size: 2rem;
   opacity: 0.10;
   color: var(--primary-color);
   animation: floatIcons 8s linear infinite alternate;
}
.about-animated-icons-bg .icon.icon1 { left: 5%; top: 12%; font-size: 2.2rem; animation-delay: 0s; }
.about-animated-icons-bg .icon.icon2 { left: 20%; top: 10%; font-size: 2.5rem; animation-delay: 2s; }
.about-animated-icons-bg .icon.icon3 { left: 40%; top: 60%; font-size: 2rem; animation-delay: 4s; }
.about-animated-icons-bg .icon.icon4 { left: 70%; top: 30%; font-size: 2.2rem; animation-delay: 1s; }
.about-animated-icons-bg .icon.icon5 { left: 80%; top: 70%; font-size: 1.8rem; animation-delay: 3s; }
.about-animated-icons-bg .icon.icon6 { left: 10%; top: 80%; font-size: 2.3rem; animation-delay: 5s; }
.about-animated-icons-bg .icon.icon7 { left: 15%; top: 40%; font-size: 2.1rem; animation-delay: 1.5s; }
.about-animated-icons-bg .icon.icon8 { left: 30%; top: 25%; font-size: 1.7rem; animation-delay: 2.7s; }
.about-animated-icons-bg .icon.icon9 { left: 55%; top: 15%; font-size: 2.4rem; animation-delay: 3.2s; }
.about-animated-icons-bg .icon.icon10 { left: 60%; top: 80%; font-size: 2.1rem; animation-delay: 4.5s; }
.about-animated-icons-bg .icon.icon11 { left: 75%; top: 10%; font-size: 2.6rem; animation-delay: 2.2s; }
.about-animated-icons-bg .icon.icon12 { left: 85%; top: 50%; font-size: 2.0rem; animation-delay: 5.5s; }
.about-animated-icons-bg .icon.icon13 { left: 90%; top: 20%; font-size: 1.9rem; animation-delay: 1.8s; }
.about-animated-icons-bg .icon.icon14 { left: 25%; top: 70%; font-size: 2.3rem; animation-delay: 3.8s; }
.about-animated-icons-bg .icon.icon15 { left: 35%; top: 85%; font-size: 2.2rem; animation-delay: 2.9s; }
.about-animated-icons-bg .icon.icon16 { left: 50%; top: 40%; font-size: 1.8rem; animation-delay: 4.1s; }
.about-animated-icons-bg .icon.icon17 { left: 65%; top: 55%; font-size: 2.5rem; animation-delay: 1.2s; }
.about-animated-icons-bg .icon.icon18 { left: 78%; top: 40%; font-size: 2.1rem; animation-delay: 3.6s; }
.about-animated-icons-bg .icon.icon19 { left: 60%; top: 25%; font-size: 2.0rem; animation-delay: 2.4s; }
.about-animated-icons-bg .icon.icon20 { left: 45%; top: 10%; font-size: 2.3rem; animation-delay: 5.8s; }

@keyframes floatIcons {
   0% { transform: translateY(0) scale(1) rotate(0deg); }
   100% { transform: translateY(-30px) scale(1.1) rotate(8deg); }
}

/* Keep the rest of the about-home-section styles for card, pattern, etc. */
.about-home-section .container {
   position: relative;
   z-index: 2;
}
.about-home-section .about-content.card {
   background: rgba(255,255,255,0.92);
   box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.08);
   border-radius: 1.5rem;
}
.about-home-section .section-title h2 {
   color: var(--primary-color);
   font-weight: 700;
}
.about-home-section .about-feature i, .about-home-section .about-feature span {
   color: var(--primary-color);
}
.about-home-section .about-experience {
   background: var(--primary-color);
   color: #fff;
   font-size: 1.1rem;
   font-weight: 600;
   border-radius: 8px;
   padding: 10px 18px;
   left: 20px;
   bottom: 20px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

/* Hanging cards overlapping hero and about us section */
.hero-hanging-cards {
   position: absolute;
   left: 0;
   right: 0;
   bottom: -50px;
   z-index: 10;
   pointer-events: none;
   display: flex;
   gap: 0 !important;
   margin: 0;
   padding: 0;
}

.hanging-card {
   min-width: 350px; 
   max-width: 400px; 
   min-height: 140px;
   padding: 1.1rem 0.75rem 0.9rem 0.75rem;
   pointer-events: auto;
   transform: translateY(0) scale(1.01);
   transition: box-shadow 0.2s, transform 0.2s;
   box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
   border: 2px solid #fff;
   background: #fff;
   color: #323173; /* Default text color */
   border-radius: 0 !important;
   margin: 0;
   margin-right: -2px;
}

/* Add this to your existing CSS */
.hanging-card:nth-child(2) .icon {
   color: white !important;
}
/* First and last card styling */
.hanging-card:first-child,
.hanging-card:last-child {
   background: #fff;
   color: #323173;
}

/* Middle card styling - works when there are exactly 3 cards */
.hanging-card:nth-child(2) {
   background: #323173;
   color: white;
   border-color: #323173;
}

.hanging-card:last-child {
   margin-right: 0;
}

/* Card color variants - override the default styles */
.hanging-card-school {
   background: linear-gradient(135deg, #e3eafc 0%, #c1d3f7 100%);
   border-color: #b0c4de;
}
.hanging-card-investigations {
   background: linear-gradient(135deg, #f3e9f7 0%, #e0c3fc 100%);
   border-color: #cbb4d4;
}
.hanging-card-digital {
   background: linear-gradient(135deg, #eafaf1 0%, #c3f7e6 100%);
   border-color: #b4d4c3;
}

.hanging-card:hover {
   box-shadow: 0 16px 48px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.12);
   transform: translateY(-6px) scale(1.03);
   z-index: 11;
}

/* Responsive adjustments */
@media (max-width: 1199px) { /* Adjusted breakpoint for larger cards */
   .hanging-card {
       min-width: 250px; /* Scaled up proportionally */
       max-width: 300px;
   }
}

@media (max-width: 991px) {
   .hero-hanging-cards {
       bottom: -25px;
   }
   .hanging-card {
       min-width: 195px; /* Increased from 130px (~50%) */
       max-width: 255px; /* Increased from 170px (~50%) */
       min-height: 100px;
       padding: 0.7rem 0.4rem 0.6rem 0.4rem;
   }
}

@media (max-width: 767px) { /* New intermediate breakpoint */
   .hanging-card {
       min-width: 160px;
       max-width: 200px;
   }
}

@media (max-width: 575px) {
   .hero-hanging-cards {
       flex-direction: column;
       align-items: center;
       bottom: -10px;
   }
   .hanging-card {
       min-width: 90vw;
       max-width: 95vw;
       min-height: 80px;
       padding: 0.5rem 0.3rem 0.4rem 0.3rem;
       margin-right: 0;
       margin-bottom: -2px;
   }
   .hanging-card:last-child {
       margin-bottom: 0;
   }
}

/* Modern Why Choose Us section styles */
.why-choose-us-section {
   background: linear-gradient(135deg, #f8f9fa 0%, #e9eaf3 100%);
   position: relative;
   z-index: 1;
}
.why-choose-bg-pattern {
   position: absolute;
   top: 0; left: 0; right: 0; bottom: 0;
   z-index: 0;
   opacity: 0.07;
   background-image: url('https://www.toptal.com/designers/subtlepatterns/patterns/symphony.png'), repeating-linear-gradient(135deg, #fff 0px, #fff 2px, transparent 2px, transparent 40px);
   pointer-events: none;
}
.why-choose-us-section .container {
   position: relative;
   z-index: 2;
}
.why-card {
   background: #fff;
   border-radius: 1.25rem;
   box-shadow: 0 8px 32px rgba(50,49,115,0.10), 0 2px 8px rgba(50,49,115,0.08);
   transition: box-shadow 0.2s, transform 0.2s;
   border: none;
   min-height: 320px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: flex-start;
   position: relative;
}
.why-card:hover {
   box-shadow: 0 16px 48px rgba(50,49,115,0.18), 0 4px 16px rgba(50,49,115,0.12);
   transform: translateY(-6px) scale(1.03);
}
.why-icon {
   width: 64px;
   height: 64px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   font-size: 2rem;
   margin-bottom: 1rem;
   box-shadow: 0 2px 8px rgba(50,49,115,0.10);
}
.why-icon.bg-primary { background: #323173 !important; }
.why-icon.bg-success { background: #3bb273 !important; }
.why-icon.bg-warning { background: #ffe066 !important; color: #323173 !important; }
.why-icon.bg-info { background: #4fc3f7 !important; }
.why-icon.bg-secondary { background: #94949a !important; }
.why-icon.bg-dark { background: #000 !important; }
.why-card h3 {
   font-size: 1.25rem;
   font-weight: 700;
   margin-bottom: 0.5rem;
   color: #323173;
}
.why-card p {
   color: #666;
   font-size: 1rem;
}
@media (max-width: 991px) {
   .why-card {
       min-height: 260px;
       padding: 1.5rem 1rem;
   }
   .why-icon {
       width: 48px;
       height: 48px;
       font-size: 1.3rem;
   }
}
@media (max-width: 575px) {
   .why-card {
       min-height: 200px;
       padding: 1.2rem 0.7rem;
   }
   .why-icon {
       width: 40px;
       height: 40px;
       font-size: 1.1rem;
   }
}

/* Gallery thumbnail styles for homepage */
.gallery-thumb-wrapper {
   aspect-ratio: 16/9;
   width: 100%;
   background: #e9eaf3;
   border-radius: 1rem;
   overflow: hidden;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: box-shadow 0.2s;
   box-shadow: 0 2px 8px rgba(50,49,115,0.08);
}
.gallery-thumb-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform 0.2s;
}
.gallery-thumb-wrapper:hover .gallery-thumb-img {
   transform: scale(1.04);
}
.gallery-thumb-video {
   position: relative;
   width: 100%;
   height: 100%;
}
.gallery-play-icon {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   font-size: 2.5rem;
   color: #fff;
   background: none !important;
   border-radius: 50%;
   padding: 0 !important;
   pointer-events: none;
   box-shadow: 0 2px 8px rgba(50,49,115,0.15);
}
.gallery-thumb-wrapper:hover .gallery-play-icon {
   background: none !important;
}
.gallery-overlay {
   position: absolute;
   top: 0; left: 0; right: 0; bottom: 0;
   background: rgba(50,49,115,0.08);
   opacity: 0;
   transition: opacity 0.2s;
   border-radius: 1rem;
   display: flex;
   align-items: center;
   justify-content: center;
   pointer-events: none;
}
.gallery-thumb-wrapper:hover .gallery-overlay {
   opacity: 1;
}
.gallery-overlay i {
   font-size: 2rem;
   color: #323173;
   background: #fff;
   border-radius: 50%;
   padding: 0.5rem;
   box-shadow: 0 2px 8px rgba(50,49,115,0.10);
}
.gallery-thumb-wrapper:hover .gallery-overlay i {
   color: #323173 !important;
   transition: color 0.2s;
}
@media (max-width: 991px) {
   .gallery-thumb-wrapper {
       aspect-ratio: 16/10;
       border-radius: 0.7rem;
   }
   .gallery-overlay i, .gallery-play-icon {
       font-size: 2rem;
   }
}
@media (max-width: 575px) {
   .gallery-thumb-wrapper {
       aspect-ratio: 16/12;
       border-radius: 0.5rem;
   }
   .gallery-overlay i, .gallery-play-icon {
       font-size: 1.5rem;
   }
}

.lightbox-media-wrapper {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 100%;
   min-height: 200px;
}
.lightbox-media-wrapper video,
.lightbox-media-wrapper img {
   width: 100% !important;
   height: 250px !important;
   max-width: 100% !important;
   max-height: 250px !important;
   object-fit: cover !important;
   border-radius: 12px !important;
   background: #000 !important;
   display: block !important;
   margin: 0 auto !important;
   box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.product-overlay .add-to-cart.disabled {
   pointer-events: none;
   opacity: 0.5 !important;
}

.product-badge.out-of-stock {
   background-color: #dc3545;
   color: white;
   position: absolute;
   top: 10px;
   left: 10px;
   padding: 5px 10px;
   border-radius: 3px;
   font-size: 12px;
   z-index: 2;
}

.product-stock {
   margin-top: 10px;
}

.alert.position-fixed {
   animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
   from {
       transform: translateX(100%);
       opacity: 0;
   }
   to {
       transform: translateX(0);
       opacity: 1;
   }
}

/* Force WhatsApp (btn-success) button to be visible and green */
.btn-success {
   background-color: #198754 !important;
   border-color: #198754 !important;
   color: #fff !important;
}
.btn-success:hover, .btn-success:focus {
   background-color: #157347 !important;
   border-color: #146c43 !important;
   color: #fff !important;
}

/* Payment Method Styling */
.payment-method-logo {
   max-height: 30px;
   max-width: 80px;
   object-fit: contain;
   vertical-align: middle;
}

.payment-methods .payment-method {
   border: 2px solid #e9ecef;
   border-radius: 8px;
   padding: 15px;
   margin-bottom: 10px;
   transition: all 0.3s ease;
   cursor: pointer;
}

.payment-methods .payment-method:hover {
   border-color: var(--primary-color);
   background-color: #f8f9fa;
}

.payment-methods .payment-method.active {
   border-color: var(--primary-color);
   background-color: rgba(var(--primary-color-rgb), 0.05);
}

.payment-methods .payment-method label {
   display: flex;
   align-items: center;
   margin-bottom: 0;
   cursor: pointer;
   font-weight: 500;
}

.payment-methods .payment-method input[type="radio"] {
   margin-right: 10px;
}

.payment-methods .payment-method span {
   display: flex;
   align-items: center;
   flex: 1;
}

.payment-method-description {
   margin-top: 10px;
   padding-top: 10px;
   border-top: 1px solid #e9ecef;
}

.payment-method-description p {
   margin-bottom: 0;
   color: #6c757d;
   font-size: 0.9rem;
}

/* Modern Page Header Styles */
.page-header {
    background: #fff;
    color: #222;
    border-radius: 0rem 0rem 0.75rem 0.75rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1.5px 4px rgba(0, 0, 0, 0.03);
    margin: 0rem auto 0rem auto;
    max-width: 1400px;
    padding: 2.25rem 2.25rem 2.25rem 2.25rem;
    position: relative;
    z-index: 2;
}

.page-header .container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0;
}
.page-header h1 {
   font-size: 2rem;
   font-weight: 700;
   margin-bottom: 0.25rem;
   color: #fff;
}
.page-header nav.breadcrumb {
   background: none;
   padding: 0;
   margin-bottom: 0;
}
.page-header .breadcrumb-item a {
   color: var(--primary-color, #007bff);
   text-decoration: underline;
}
.page-header .breadcrumb-item.active {
   color: #888;
}
@media (max-width: 991px) {
   .page-header {
       padding: 1rem 1rem 1rem 1rem;
       max-width: 98vw;
   }
   .page-header .container {
       max-width: 98vw;
   }
   .page-header h1 {
       font-size: 1.3rem;
   }
}
@media (max-width: 575px) {
   .page-header {
       padding: 1rem 1rem 1rem 1rem;
       border-radius:  0rem 0rem 0.5rem 0.5rem;
   }
   .page-header h1 {
       font-size: 1rem;
   }
}

@media (max-width: 575px) {
   .hero-content h3 {
       font-size: 1.2rem;
   }
   .hero-content p {
       font-size: 0.85rem;
   }
}

@media (max-width: 575px) {
   footer .navbar-logo-relative {
       display: block;
       margin-left: auto;
       margin-right: auto;
       float: none !important;
       text-align: center;
   }
}