/* Main Theme Styles */

/* Brand Colors */
:root {
  --primary-blue: #0d3b66;
  --secondary-blue: #002147;
  --accent-orange: #f4a261;
  --accent-orange-dark: #e76f51;
  --background-light: #f4f7fb;
  --text-dark: #333333;
  --text-light: #ffffff;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--background-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP BAR */
.top-bar {
    background: #27378d;
    color: var(--text-light);
    padding: 10px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-right a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.top-bar-right a:hover {
    color: var(--accent-orange);
}

.top-bar-left i,
.top-bar-right i {
    font-size: 14px;
    color: var(--text-light);
}

/* NAVBAR */
.navbar {
    background: var(--text-light);
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #27378d;
}

.logo a {
    color: #27378d;
    text-decoration: none;
}

.menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: 0.3s;
    display: block;
}

.menu li a:hover,
.menu .current-menu-item a,
.menu .current_page_item a {
    color: var(--accent-orange);
}

.cta-btn {
    background: #283792 !important;
    color: var(--text-light);
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.cta-btn:hover {
    background: var(--accent-orange-dark);
    color: var(--text-light);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    background: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f') no-repeat center center;
    background-size: cover;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 80px 8%;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease-in-out;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
    animation: fadeInUp 1s ease forwards;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 3px 15px rgba(0,0,0,0.4);
}

.hero p {
    margin-bottom: 35px;
    font-size: 20px;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-btn {
    background: var(--accent-orange);
    padding: 16px 35px;
    border-radius: 35px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.hero-btn:hover {
    background: var(--accent-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Navigation Buttons */
.hero-slider .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 45px;
    font-weight: bold;
    color: var(--text-light);
    background: rgba(0,0,0,0.35);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s, transform 0.3s;
}

.hero-slider .slider-nav:hover {
    background: rgba(0,0,0,0.65);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider .prev { left: 25px; }
.hero-slider .next { right: 25px; }

/* Fade in animation for content */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ==============================
   Google Map Section
============================== */
.google-map-section {
    margin: 50px 0;
}

.google-map-section .map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.google-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ==============================
   Product Slider
============================== */
.products.swiper-container {
    padding: 30px 0;
}

.products .swiper-slide {
    background-color: var(--text-light);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.products .swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.products .product-box i {
    font-size: 40px;
    color: #27378d;
    margin-bottom: 15px;
}

.products .product-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.products .product-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* ===============================
   Vision, Mission & Core Values
================================= */
.vision-mission-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.vision-mission-section .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 600;
}

.cards-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.cards-wrapper .card {
    flex: 1 1 30%;
    background-color: var(--text-light);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards-wrapper .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.cards-wrapper .card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #27378d;
}

.cards-wrapper .card p,
.cards-wrapper .card ul {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: left;
}

.cards-wrapper .card ul {
    list-style: disc inside;
    padding-left: 0;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.2s;
}

.cards-wrapper .card:nth-child(2) { animation-delay: 0.4s; }
.cards-wrapper .card:nth-child(3) { animation-delay: 0.6s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .cards-wrapper .card {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .cards-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .cards-wrapper .card {
        flex: 1 1 100%;
    }
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #27378d;
}

/* Responsive adjustments */
@media(max-width:900px){
    .hero h1 { font-size: 42px; }
    .hero p { font-size: 18px; }
    .hero-btn { padding: 14px 28px; }
    .hero-slider .slider-nav { font-size: 35px; width: 50px; height: 50px; }
}

@media(max-width:600px){
    .hero { padding: 60px 6%; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .hero-btn { padding: 12px 25px; }
    .hero-slider .slider-nav { font-size: 28px; width: 40px; height: 40px; }
}

/* SERVICES */
.services {
    padding: 100px 8%;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    background: var(--text-light);
}

.service-box {
    flex: 1;
    min-width: 280px;
    padding: 50px 30px;
    text-align: center;
    border-radius: 15px;
    color: var(--text-light);
    transition: 0.4s;
}

.service-box i {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-box:hover {
    transform: translateY(-12px);
}

.loan { background: #1d3557; }
.savings { background: #457b9d; }
.investment { background: #2a9d8f; }

.service-box h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.service-box p {
    line-height: 1.6;
    opacity: 0.9;
}

/* OUR PRODUCTS */
.our-products {
    padding: 100px 8%;
    background: var(--background-light);
}

.our-products h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 60px;
    color: #27378d;
    position: relative;
    padding-bottom: 20px;
}

.our-products h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-orange);
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.product-box {
    background: var(--text-light);
    flex: 1;
    min-width: 260px;
    max-width: 350px;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.product-box i {
    font-size: 36px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.product-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-box h3 {
    margin-bottom: 15px;
    color: #27378d;
}

.product-box p {
    color: #666;
    line-height: 1.6;
}

/* PAGE CONTENT */
.page-content,
.single-content {
    padding: 60px 8%;
    background: var(--text-light);
}

.page-content h1,
.single-content h1 {
    color: #27378d;
    margin-bottom: 30px;
    font-size: 36px;
}

.page-content h2,
.single-content h2 {
    color: #27378d;
    margin: 30px 0 20px;
}

.page-content p,
.single-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

/* FOOTER */
.site-footer {
    background-color: var(--secondary-blue);
    color: var(--text-light);
    font-size: 0.95rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.site-footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--accent-orange);
}

.footer-top {
    padding: 50px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-widgets {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-widget {
    flex: 1 1 22%;
    min-width: 180px;
}

.footer-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-orange);
    font-weight: 700;
}

.footer-widget p {
    line-height: 1.6;
    color: #ddd;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.social-links {
    padding-left: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    color: #ddd;
}

.social-links li a {
    font-weight: 600;
    color: #ddd;
    font-size: 0.95rem;
}

.social-links li a:hover {
    color: var(--accent-orange);
}
/* ==============================
   Hero Slider (Unique Classes)
============================== */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slides-wrapper {
    position: relative;
    min-height: 650px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    padding: 80px 8%;
    color: var(--text-light);
    transition: background 0.5s ease-in-out;
}

.hero-slide.active {
    display: flex;
}

.hero-slide-content {
    max-width: 650px;
    z-index: 2;
    animation: fadeInUp 1s ease forwards;
}

.hero-slide h1 {
    font-size: 56px;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 3px 15px rgba(0,0,0,0.4);
}
/* ==============================
   Product Items with Featured Images
============================== */
.product-item {
    background: var(--text-light);
    padding: 0 0 30px 0; /* Remove top padding to accommodate image */
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.4s;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.page-header {
    padding: 60px 0;
    color: white;
    text-align: center;
}

.page-title {
    font-size: 48px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.products-intro-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.products-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.all-products-section {
    padding: 80px 0;
    background: white;
}

.products-filter {
    text-align: center;
    margin-bottom: 50px;
}

.filter-btn {
    display: inline-block;
    padding: 10px 25px;
    margin: 0 5px 10px;
    background: transparent;
    border: 2px solid #0d3b66;
    color: #0d3b66;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0d3b66;
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-grid-item {
    transition: all 0.3s ease;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-card-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img {
    transform: scale(1.1);
}

.product-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.product-icon-wrapper i {
    font-size: 64px;
    color: white;
}

.product-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    margin: 0 0 15px;
    font-size: 1.3rem;
}

.product-title a {
    color: #0d3b66;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #f4a261;
}

.product-short-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.product-features-list li {
    margin-bottom: 8px;
    color: #555;
    font-size: 0.9rem;
}

.product-features-list li i {
    color: #27ae60;
    margin-right: 8px;
    font-size: 0.8rem;
}

.product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.product-meta-item {
    flex: 1;
}

.meta-label {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 5px;
}

.meta-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #0d3b66;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-details,
.btn-apply {
    flex: 1;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-details {
    background: transparent;
    border: 2px solid #0d3b66;
    color: #0d3b66;
}

.btn-details:hover {
    background: #0d3b66;
    color: white;
}

.btn-apply {
    background: #f4a261;
    color: white;
    border: 2px solid #f4a261;
}

.btn-apply:hover {
    background: #e76f51;
    border-color: #e76f51;
}

.no-products-found {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

.no-products-found i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-products-found h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.no-products-found p {
    color: #666;
}

.products-pagination {
    text-align: center;
    margin-top: 50px;
}

.products-pagination .page-numbers {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 3px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.products-pagination .page-numbers.current {
    background: #0d3b66;
    color: white;
    border-color: #0d3b66;
}

.products-pagination .page-numbers:hover {
    background: #f4a261;
    color: white;
    border-color: #f4a261;
}

.products-cta-section {
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 15px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: white;
    color: #0d3b66;
}

.cta-btn-primary:hover {
    background: #0d3b66;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #0d3b66;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .product-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .products-filter .filter-btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}
.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    background: #f5f5f5;
}

.product-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .product-featured-image {
    transform: scale(1.1);
}

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-image-placeholder i {
    font-size: 48px;
    color: white;
    opacity: 0.8;
}

.product-item i:not(.product-image-placeholder i) {
    font-size: 48px;
    color: var(--accent-orange);
    margin: 30px 0 20px;
    display: block;
}

.product-item h3 {
    margin: 15px 20px 10px;
    color: #27378d;
    font-size: 1.3rem;
}

.product-item p {
    color: #666;
    line-height: 1.6;
    margin: 0 20px 20px;
    flex-grow: 1;
}

.product-read-more {
    display: inline-block;
    margin: 0 20px 20px;
    padding: 8px 20px;
    background: var(--accent-orange);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: background 0.3s ease;
    align-self: center;
}

.product-read-more:hover {
    background: var(--accent-orange-dark);
    color: white;
}

/* Swiper container adjustments */
.products-swiper-container {
    padding: 20px 0 40px;
    position: relative;
    overflow: hidden;
    margin: 0 -10px;
}

.products-swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.products-swiper-slide {
    flex: 0 0 auto;
    width: calc(33.333% - 20px);
    margin: 0 10px;
    height: auto;
}

/* Product Swiper Navigation Buttons */
.swiper-button-prev-products,
.swiper-button-next-products {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #27378d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.swiper-button-prev-products:hover,
.swiper-button-next-products:hover {
    background: var(--accent-orange);
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-prev-products {
    left: 0;
}

.swiper-button-next-products {
    right: 0;
}

/* Responsive adjustments */
@media(max-width:900px){
    .products-swiper-slide {
        width: calc(50% - 20px);
    }
}

@media(max-width:600px){
    .products-swiper-slide {
        width: calc(100% - 20px);
    }
    
    .product-image-wrapper,
    .product-image-placeholder {
        height: 180px;
    }
    
    .swiper-button-prev-products {
        left: 5px;
    }
    
    .swiper-button-next-products {
        right: 5px;
    }
}

/* Optional: Add loading animation for images */
.product-featured-image.loading {
    opacity: 0;
}

.product-featured-image.loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}
.hero-slide p {
    margin-bottom: 35px;
    font-size: 20px;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-slide-btn {
    background: var(--accent-orange);
    padding: 16px 35px;
    border-radius: 35px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.hero-slide-btn:hover {
    background: var(--accent-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Hero Slider Navigation Buttons */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 45px;
    font-weight: bold;
    color: var(--text-light);
    background: rgba(0,0,0,0.35);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s, transform 0.3s;
}

.hero-slider-nav:hover {
    background: rgba(0,0,0,0.65);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev { left: 25px; }
.hero-slider-next { right: 25px; }

/* ==============================
   Product Slider (Swiper)
============================== */
.products-swiper-container {
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.products-swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.products-swiper-slide {
    background-color: var(--text-light);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex: 0 0 auto;
    width: calc(33.333% - 20px);
    margin-right: 20px;
}

.products-swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Product Swiper Navigation Buttons */
.swiper-button-prev-products,
.swiper-button-next-products {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #27378d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    font-size: 20px;
}

.swiper-button-prev-products:hover,
.swiper-button-next-products:hover {
    background: var(--accent-orange);
}

.swiper-button-prev-products { left: -20px; }
.swiper-button-next-products { right: -20px; }

/* ==============================
   Our Products Section
============================== */
.our-products-section {
    padding: 100px 8%;
    background: var(--background-light);
    position: relative;
}

.our-products-section h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 60px;
    color: #27378d;
    position: relative;
    padding-bottom: 20px;
}

.our-products-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-orange);
}

.product-item {
    background: var(--text-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.product-item i {
    font-size: 36px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-item h3 {
    margin-bottom: 15px;
    color: #27378d;
}

.product-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments */
@media(max-width:900px){
    .hero-slide h1 { font-size: 42px; }
    .hero-slide p { font-size: 18px; }
    .hero-slide-btn { padding: 14px 28px; }
    .hero-slider-nav { font-size: 35px; width: 50px; height: 50px; }
    .products-swiper-slide { width: calc(50% - 20px); }
}

@media(max-width:600px){
    .hero-slide { padding: 60px 6%; }
    .hero-slide h1 { font-size: 32px; }
    .hero-slide p { font-size: 16px; }
    .hero-slide-btn { padding: 12px 25px; }
    .hero-slider-nav { font-size: 28px; width: 40px; height: 40px; }
    .products-swiper-slide { width: 100%; margin-right: 0; }
    .swiper-button-prev-products { left: 10px; }
    .swiper-button-next-products { right: 10px; }
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  background-color: #ee2b81;
  font-size: 0.9rem;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-widgets {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }

    .footer-widget {
        flex: 1 1 40%;
        min-width: auto;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-widget {
        flex: 1 1 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        gap: 15px;
    }
}

/* ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* WORDPRESS CORE CLASSES */
.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto 20px;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.gallery {
    margin: 30px 0;
}

.sticky {
    background: #f9f9f9;
}

.bypostauthor {
    background: #f0f0f0;
}

/* RESPONSIVE MENU */
@media(max-width:900px) {
    .menu { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--text-light);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .menu.show { display: flex; }
    
    .menu li { text-align: center; padding: 10px 0; }
    
    .menu-toggle { display: block; }
    
    .services, .products { 
        flex-direction: column;
        align-items: center;
    }
    
    .hero h1 { font-size: 32px; }
    .hero { min-height: 450px; }
    .product-box { max-width: 100%; }
    
    .top-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .top-bar-left,
    .top-bar-right { justify-content: center; }
    
    .top-bar-left span { gap: 3px; }
}

@media(max-width:600px) {
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 16px; }
    .service-box { padding: 40px 20px; }
}

/* Simple fade-in-up animation for hero content */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

