

:root {
    --primary-color: #1e40af; /* Deep blue matching the brand */
    --secondary-color: #ffffff;
    --accent-color: #e91e63; /* Bright pink/magenta from brand */
    --light-blue: #87ceeb; /* Light blue from brand */
    --text-color: #374151;
    --light-gray: #f8fafc;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --brand-navy: #1a365d; /* Darker navy for depth */
    overflow-x: hidden !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

        /* Header Structure */
        .site-header {
            background: var(--secondary-color);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1030; /* Higher z-index */
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .top-bar {
            background: linear-gradient(135deg, #034f7f 0%, var(--brand-navy) 100%);
            color: var(--secondary-color);
            font-size: 14px;
            padding: 8px 0;
        }

        .top-bar .contact-info {
            margin: 0;
        }

        .top-bar .contact-info i {
            margin-right: 5px;
        }

        .top-bar .social-links a {
            color: var(--secondary-color);
            margin-left: 15px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .top-bar .social-links a:hover {
            color: var(--accent-color);
        }

        .main-header {
            padding: 15px 0;
            background: linear-gradient(135deg, var(--light-blue) 0%, var(--secondary-color) 100%);
        }

        /* Logo Styles */
        .navbar-brand {
            padding: 8px 0;
            transition: all 0.3s ease;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #034f7f !important;
        }

        .brand-logo:hover {
            color: var(--brand-navy) !important;
            text-decoration: none;
        }

        .logo-icon {
            width: 90px;
            height: 90px;
            background: #efefef;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            margin-right: 12px;
            box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
            overflow: hidden;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            padding: 10px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .brand-name {
            font-weight: 700;
            font-size: 32px;
            color: #034f7f;
            margin: 0;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            position: relative;
        }

        /* Trademark symbol styling */
        /*.brand-name::after {*/
        /*    content: "®";*/
        /*    font-size: 0.8em;*/
        /*    vertical-align: super;*/
        /*    margin-left: 3px;*/
        /*    color: #034f7f;*/
        /*}*/

        .brand-tagline {
            font-size: 18px;
            color: var(--accent-color);
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Navigation Styles */
        .navbar {
            padding: 10px 0;
        }

        .navbar-nav .nav-link {
            color: var(--text-color);
            font-weight: 700;
            margin: 0 10px;
            font-size: 18px;
            padding: 8px 20px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--secondary-color);
            background: linear-gradient(135deg, #023555 0%, #034f7f 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgb(177 177 177 / 30%);
        }

        .navbar-toggler {
            border: none;
            padding: 4px 8px;
            position: relative;
            z-index: 1031; /* Higher than navbar */
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Navbar toggler custom styling */
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830, 58, 138, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Mobile Navigation Fixes */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--secondary-color);
                border-top: 1px solid var(--border-color);
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
                padding: 0;
                margin: 0;
                z-index: 1029; /* Below toggler but above content */
            }

            .navbar-nav {
                margin-top: 0;
                padding: 10px 0;
            }
            
            .navbar-nav .nav-link {
                padding: 12px 20px !important;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                margin: 0;
                border-radius: 0;
            }

            .navbar-nav .nav-link:hover,
            .navbar-nav .nav-link.active {
                transform: none;
                border-radius: 0;
            }

            /* Prevent body scroll when menu is open */
            .navbar-collapse.show {
                max-height: 400px;
                overflow-y: auto;
            }
        }

        /* Responsive Logo Adjustments */
        @media (max-width: 1200px) {
            .brand-name {
                font-size: 22px;
            }
            
            .brand-name::after {
                font-size: 0.75em;
            }
            
            .brand-tagline {
                font-size: 18px;
            }
        }

        @media (max-width: 992px) {
            .logo-icon {
                width: 50px !important;
                height: 50px !important;
                font-size: 16px;
                margin-right: 10px;
            }
            
            .brand-name {
                font-size: 22px;
            }
            
            .brand-name::after {
                font-size: 0.75em;
            }
            
            .brand-tagline {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 8px 0;
            }
            
            .logo-icon {
                width: 50px !important;
                height: 50px !important;
                font-size: 15px;
                margin-right: 8px;
            }
    
            .brand-name {
                font-size: 20px;
            }
            
            .brand-name::after {
                font-size: 0.7em;
            }
            
            .brand-tagline {
                font-size: 17px;
            }
        }

        @media (max-width: 576px) {
            .logo-icon {
                width: 65px !important;
                height: 65px !important;
                font-size: 14px;
                margin-right: 8px;
            }
            
            .brand-name {
                font-size: 18px;
            }
            
            .brand-name::after {
                font-size: 0.7em;
            }
            
            .brand-tagline {
                font-size: 16px;
            }
            
            .container {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .brand-name {
                font-size: 18px;
            }
            
            .brand-name::after {
                font-size: 0.65em;
            }
            
            .logo-icon {
                width: 50px !important;
                height: 50px !important;
                font-size: 12px;
                margin-right: 6px;
            }
        }

        @media (max-width: 375px) {
            .brand-name {
                font-size: 15px;
            }
            
            .brand-name::after {
                font-size: 0.65em;
            }
            
            .brand-tagline {
                font-size: 15px;
            }
            
            .logo-icon {
                width: 45px !important;
                height: 45px !important;
                font-size: 11px;
                margin-right: 5px;
            }
        }

        @media (max-width: 320px) {
            .container {
                padding: 0 10px;
            }
            
            .brand-name {
                font-size: 15px;
            }
            
            .brand-name::after {
                font-size: 0.6em;
            }
            
            .logo-icon {
                width: 40px !important;
                height: 40px !important;
                font-size: 10px;
            }
        }


/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, #034f7f 0%, var(--brand-navy) 100%);
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--secondary-color);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #034f7f 0%, var(--brand-navy) 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-color) 0%, #d81b60 100%);
  border: none;
  color: var(--secondary-color);
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background: linear-gradient(135deg, #d81b60 0%, var(--accent-color) 100%);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.btn-get-product {
  background: linear-gradient(135deg, var(--accent-color) 0%, #d81b60 100%);
  border: none;
  color: var(--secondary-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-get-product:hover {
  background: linear-gradient(135deg, #d81b60 0%, var(--accent-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

/* Card Styles */
.custom-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  background: var(--secondary-color);
}

.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2);
}

.service-card {
  text-align: center;
  padding: 30px 20px;
  height: 100%;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--secondary-color) 100%);
}

.service-card .icon {
  font-size: 48px;
  color: #034f7f;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.service-card:hover .icon {
  color: var(--accent-color);
}

.service-card h5 {
  color: #034f7f;
  margin-bottom: 15px;
  font-weight: 600;
}

.product-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.product-card:hover {
  border-color: var(--accent-color);
}

.product-card .card-img-top {
  height: 400px;
  border: 1ppx solid #000;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
  transform: scale(1.1);
}

.product-card .card-body {
  padding: 20px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--light-blue) 100%);
}

.product-card .price {
  font-size: 18px;
  font-weight: bold;
  color: #034f7f;
  margin-bottom: 10px;
}

.product-card .min-order {
  font-size: 12px;
  color: var(--accent-color);
  margin-bottom: 15px;
  font-weight: 600;
}

/* Modal Styles */
.inquiry-modal .modal-content {
  border-radius: 15px;
  border: none;
}

.inquiry-modal .modal-header {
  background: linear-gradient(135deg, #034f7f 0%, var(--accent-color) 100%);
  color: var(--secondary-color);
  border-radius: 15px 15px 0 0;
}

.inquiry-modal .modal-header .btn-close {
  filter: invert(1);
}

.inquiry-modal .product-info {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-gray) 100%);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 2px solid var(--accent-color);
}

.inquiry-modal .form-label {
  font-weight: 600;
  color: #034f7f;
  margin-bottom: 8px;
}

.inquiry-modal .form-control,
.inquiry-modal .form-select {
  border-radius: 8px;
  border: 2px solid var(--border-color);
  padding: 10px 15px;
  transition: border-color 0.3s ease;
}

.inquiry-modal .form-control:focus,
.inquiry-modal .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #024066 0%, #022b47 100%);
    color: var(--secondary-color);
    padding: 40px 0 20px;
    margin-top: 0px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--light-blue) 50%, var(--accent-color) 100%);
}

.site-footer h5,
.site-footer h6 {
    color: var(--secondary-color);
    font-weight: 600;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 8px;
}

.site-footer ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer ul li a:hover {
    color: var(--accent-color);
}

/* Footer Logo Section */
.footer-logo-section {
    display: flex;
    align-items: left;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #f8fafc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.footer-logo-text {
    flex: 1;
    margin: 10px 0;
}

/* Brand Name Styling */
.footer-brand-name {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 5px;              /* 👈 default margin removed */
    line-height: 1;         /* 👈 no extra spacing */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    position: relative;
}

/* Trademark Symbol Styling */
.footer-brand-name::after {
    content: '®';
    position: relative;
    font-size: 15px;
    font-weight: 500;
    vertical-align: super;
    margin-left: 2px;
}

/* Tagline Styling */
.footer-tagline {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0;          /* 👈 extra space removed */
    line-height: 1.2;       /* 👈 tightened line-height */
}

/* Footer Social Links */
.site-footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ff0000;
    color: var(--secondary-color);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.site-footer .social-links a:hover {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--accent-color) 100%);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

/* Footer Contact List */
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #cbd5e1;
}

.footer-contact-list li i {
    margin-right: 10px;
    margin-top: 7px;
    color: #fff;
    width: 16px;
    flex-shrink: 0;
}

.footer-contact-list li span {
    flex: 1;
}
.footer-contact-list li a{
    flex: 1;
    color: #cbd5e1 !important;
}

/* Copyright Section */
.copyright {
    text-align: left;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(233, 30, 99, 0.3);
    color: #cbd5e1;
}

.footer-policy-link {
    transition: color 0.3s ease;
}

.footer-policy-link:hover {
    color: var(--accent-color) !important;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-logo-icon {
        width: 60px;
        height: 60px;
        margin-right: 12px;
    }
    .footer-logo-text {
        flex: 1;
        font-size: 15px;
        margin: 10px;
    }
    
    .footer-logo-icon img {
        border-radius: 8px;
    }
    
    .footer-brand-name {
        font-size: 14px;
    }

    .footer-brand-name::after {
        font-size: 12px;
    }
    
    .footer-tagline {
        font-size: 15px;
    }
    
    .site-footer .social-links a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        margin-right: 8px;
    }
}

@media (max-width: 576px) {
    .footer-logo-section {
        text-align: left;
    }
    
    .footer-logo-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .copyright {
        text-align: center;
    }
    
    .copyright .col-md-6:last-child {
        text-align: center !important;
        margin-top: 10px;
    }
}


/* Utility Classes */
.text-primary-custom {
  color: #034f7f !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.bg-primary-custom {
  background: linear-gradient(135deg, #034f7f 0%, var(--brand-navy) 100%) !important;
}

.bg-light-custom {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-gray) 100%) !important;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #034f7f;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--light-blue) 100%);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top-color: var(--accent-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.alert-success {
  background-color: var(--success-color);
  border-color: var(--success-color);
  color: var(--secondary-color);
}

.alert-danger {
  background-color: var(--danger-color);
  border-color: var(--danger-color);
  color: var(--secondary-color);
}

/* Brand Specific Enhancements */
.brand-highlight {
  background: linear-gradient(135deg, var(--accent-color) 0%, #034f7f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.brand-badge {
  background: linear-gradient(135deg, var(--accent-color) 0%, #d81b60 100%);
  color: var(--secondary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}
    .text-md-end a{
        color: #cbd5e1 !important;
        text-decoration: none!important;
    }
    .text-md-end a:hover{
        color: var(--accent-color) !important;
        text-decoration: none!important;
    }
    

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  
  .service-card {
    padding: 20px 15px;
  }
  
  .service-card .icon {
    font-size: 36px;
  }
  
    .product-card .card-img-top {
        height: 400px !important;
    }
  
  .btn-get-product {
    padding: 6px 15px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .top-bar {
    font-size: 12px;
  }
  
  .logo {
    font-size: 24px;
  }
  
  .section-padding {
    padding: 40px 0;
  }
}

.name{
  font-size: 10px;
  text-align: end;
  color: var(--accent-color);
  font-weight: 600;
}

        /* Center Phone Number Bar */
        .center-phone-bar {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 999;
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 8px;
            border-radius: 25px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            display: none;
            align-items: center;
            justify-content: center;
            min-width: 200px;
            animation: slideUp 0.5s ease;
        }

        .center-phone-bar .phone-number {
            font-size: 18px;
            font-weight: bold;
            letter-spacing: 1px;
            margin: 0 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 8px;
            border-radius: 15px;
            color: white;
            text-decoration: none;
        }

        .center-phone-bar .phone-number:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.05);
            color: white;
        }

        @keyframes slideUp {
            from {
                bottom: -100px;
                opacity: 0;
            }
            to {
                bottom: 30px;
                opacity: 1;
            }
        }

        /* Adjust other buttons to make space */
        .call-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 1000;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .call-btn {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #007bff, #0056b3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            font-size: 24px;
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .call-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 123, 255, 0.6);
            background: linear-gradient(135deg, #0056b3, #004085);
            color: white;
        }

        .call-btn:active {
            transform: translateY(-1px);
        }

        .call-btn i {
            transition: transform 0.3s ease;
        }

        .call-btn:hover i {
            transform: scale(1.1);
        }

        /* Call Tooltip */
        .call-btn::before {
            content: 'Call Us';
            position: absolute;
            left: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .call-btn::after {
            content: '';
            position: absolute;
            left: 60px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-right: 6px solid rgba(0, 0, 0, 0.8);
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .call-btn:hover::before,
        .call-btn:hover::after {
            opacity: 1;
            visibility: visible;
        }

        /* WhatsApp Float Button - Bottom Right */

        .whatsapp-btn {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            font-size: 24px;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
            background: linear-gradient(135deg, #128c7e, #075e54);
            color: white;
        }

        .whatsapp-btn:active {
            transform: translateY(-1px);
        }

        .whatsapp-btn i {
            transition: transform 0.3s ease;
        }

        .whatsapp-btn:hover i {
            transform: scale(1.1);
        }

        /* WhatsApp Tooltip */
        .whatsapp-btn::before {
            content: 'WhatsApp';
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .whatsapp-btn::after {
            content: '';
            position: absolute;
            right: 60px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 6px solid rgba(0, 0, 0, 0.8);
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover::before,
        .whatsapp-btn:hover::after {
            opacity: 1;
            visibility: visible;
        }

        /* Pulse Animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
            }
            100% {
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .call-float {
                bottom: 20px;
                left: 20px;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }

            .call-btn,
            .whatsapp-btn {
                width: 55px;
                height: 55px;
                font-size: 20px;
            }

            .center-phone-bar {
                display: flex !important;
                bottom: 20px;
                padding: 5px;
                min-width: 250px;
            }

            .center-phone-bar .phone-number {
                font-size: 16px;
            }
        }
        
        a.btn.btn-outline-primary.btn-sm {
    background: #02426a;
    color: #fff;
}
i.fas.fa {
    color: #02426a;
}
.text-primary {
    color: #02426a !important;
}
h2.fw-bold {
    color: #023b5e;
}



.product-grid3{font-family:Roboto,sans-serif;text-align:center;position:relative;box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;z-index:1}
.product-grid3:before{content:"";height:81%;width:100%;background:#fff;border:1px solid rgba(0,0,0,.1);opacity:0;position:absolute;top:0;left:0;z-index:-1;transition:all .5s ease 0s}
.product-grid3:hover:before{opacity:1;height:100%}
.product-grid3 .product-image3{position:relative}
.product-grid3 .product-image3 a{display:block}
.product-grid3 .product-image3 img{width:100%;height:auto}
.product-grid3 .pic-1{opacity:1;transition:all .5s ease-out 0s}
.product-grid3:hover .pic-1{opacity:0}
.product-grid3 .pic-2{position:absolute;top:0;left:0;opacity:0;transition:all .5s ease-out 0s}
.product-grid3:hover .pic-2{opacity:1}
.product-grid3 .social{width:120px;padding:0;margin:0 auto;list-style:none;opacity:0;position:absolute;right:0;left:0;bottom:-23px;transform:scale(0);transition:all .3s ease 0s}
.product-grid3:hover .social{opacity:1;transform:scale(1)}
.product-grid3:hover .product-discount-label,.product-grid3:hover .product-new-label,.product-grid3:hover .title{opacity:1}
.product-grid3 .social li{display:inline-block}
.product-grid3 .social li a{color:#e67e22;background:#fff;font-size:18px;line-height:50px;width:50px;height:50px;border:1px solid rgba(0,0,0,.1);border-radius:50%;margin:0 2px;display:block;transition:all .3s ease 0s}
.product-grid3 .social li a:hover{background:#e67e22;color:#fff}
.product-grid3 .product-discount-label,.product-grid3 .product-new-label{background-color:#e67e22;color:#fff;font-size:17px;padding:2px 10px;position:absolute;right:10px;top:10px;transition:all .3s}
.product-grid3 .product-content{z-index:-1;padding:15px;text-align:left}
.product-grid3 .title{font-size:14px;text-transform:capitalize;margin:0 0 7px;transition:all .3s ease 0s}
.product-grid3 .title a{color: #000;}
.product-grid3 .price{color:#000;font-size:16px;letter-spacing:1px;font-weight:600;margin-right:2px;display:inline-block}
.product-grid3 .price span{color:#909090;font-size:14px;font-weight:500;letter-spacing:0;text-decoration:line-through;text-align:left;display:inline-block;margin-top:-2px}
.product-grid3 .rating{padding:0;margin:-22px 0 0;list-style:none;text-align:right;display:block}
.product-grid3 .rating li{color: #023150;font-size:13px;display:inline-block}
.product-grid3 .rating li.disable{color:#dcdcdc}
@media only screen and (max-width:1200px){.product-grid3 .rating{margin:0}
}
@media only screen and (max-width:990px){.product-grid3{margin-bottom:30px}
.product-grid3 .rating{margin:-22px 0 0}
}
@media only screen and (max-width:359px){.product-grid3 .rating{margin:0}
}