           .testimonials-section {
            padding: 80px 0 100px;
            position: relative;
        }

        .section-title {
            font-size: 48px;
            font-weight: 700;
            color: #1e3a4c;
            text-align: center;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-title .highlight {
            color: #010065;
            border-bottom: 4px solid #010065;
            padding-bottom: 2px;
        }

       

        .testimonials-wrapper {
            position: relative;
            padding: 20px 0;
        }

        .testimonial-card {
            background: white;
            border: 2px solid #010065;
            border-radius: 20px;
            padding: 40px 35px;
            margin: 0 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            min-height: 320px;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .quote-icon {
            font-size: 60px;
            color: #010065;
            line-height: 1;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .testimonial-text {
            font-size: 16px;
            color: #6b7b87;
            line-height: 1.8;
            margin-bottom: 30px;
            flex-grow: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            padding-top: 20px;
            border-top: 3px solid #010065;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #d4e7f7 0%, #c1d9ed 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .author-avatar i {
            font-size: 32px;
            color: #7a9cb5;
        }

        .author-info {
            flex-grow: 1;
        }

        .author-name {
            font-size: 18px;
            font-weight: 700;
            color: #1e3a4c;
            margin-bottom: 3px;
        }

        .author-company {
            font-size: 14px;
            color: #8b97a1;
        }

        /* Navigation Controls */
        .testimonial-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 50px;
            gap: 15px;
        }

        .control-button {
            background: white;
            border: 2px solid #010065;
            color: #010065;
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .control-button:hover {
            background: #010065;
            color: white;
        }

        .control-button i {
            font-size: 12px;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #010065;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot:not(.active) {
            background: #d0e8c5;
            width: 10px;
            height: 10px;
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: #1e3a4c;
            color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .scroll-top:hover {
            background: #2c4f68;
            transform: translateY(-3px);
        }

        .scroll-top i {
            font-size: 20px;
        }

        /* Gift icon */
        .gift-icon {
            position: fixed;
            top: 200px;
            right: 0;
            width: 65px;
            height: 65px;
            background: #ffd700;
            border-radius: 12px 0 0 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gift-icon:hover {
            transform: translateX(-5px);
        }

        /* Carousel customization */
        .carousel-inner {
            padding: 10px 0;
        }

        .carousel-item {
            transition: transform 0.6s ease-in-out;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 32px;
            }

            .testimonial-card {
                margin: 0 10px;
                padding: 30px 25px;
            }

            .control-button {
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        /* Hide default carousel controls */
        .carousel-control-prev,
        .carousel-control-next {
            display: none;
        }

        .carousel-indicators {
            display: none;
        }
.hero-sectionv2 {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
           margin-bottom:20px;
        }

        .hero-text-box {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 3rem 4rem;
            border-radius: 20px;
            max-width: 700px;
            
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
             margin:10px;
        }

        .hero-text-box h1 {
            font-size: 2.1rem;
            font-weight: 700;
            color: #ffffff;
            line-height:1;
            margin-bottom: 1.0rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-text-box p {
            font-size: 1.1rem;
            color: #f8f9fa;
            margin-bottom: 2rem;
            line-height: 1.6;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .hero-btn {
            display: inline-block;
            padding: 1rem 3rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
            color: #ffffff;
        }

        .slider-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 10px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .indicator.active {
            background: #ffffff;
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .hero-text-box {
                padding: 2rem 1.5rem;
                margin: 0 1rem;
            }

            .hero-text-box h1 {
                font-size: 2.2rem;
            }

            .hero-text-box p {
                font-size: 1rem;
            }

            .hero-btn {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .hero-text-box h1 {
                font-size: 1.8rem;
            }

            .hero-text-box p {
                font-size: 0.9rem;
            }
        }
        .box-swiper{
             max-height:200px;
	        height:200px;
        }
        .hero-section{
            max-height:500px;
            min-height:500px;
        }
        .card-info{
             max-height:100px;
	        min-height:100px;
        }
 .features-section {
  padding: 60px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}

.section-title .highlight {
  color: #fdcd01;
  border-bottom: 3px solid #fdcd01;
}

.section-subtitle {
  text-align: center;
  color: #000;
  margin: 10px 0 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border: 2px dashed #7ddc65;
}

.feature-box {
  text-align: center;
  padding: 30px 10px;
  border-right: 2px dashed #7ddc65;
  border-bottom: 2px dashed #7ddc65;
}

.feature-box:nth-child(7n) {
  border-right: none;
}

.feature-box:nth-last-child(-n + 7) {
  border-bottom: none;
}

.icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #c9f1b8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.icon-circle img {
  width: 100px;
}

.feature-box p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

/* Button */
.btn-view-more {
  display: inline-block;
  margin-top: 35px;
  background: #fdcd01;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.btn-view-more:hover {
  background: #000;
}

/* Responsive */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-box:nth-child(4n) {
    border-right: none;
  }

  .feature-box:nth-last-child(-n + 4) {
    border-bottom: none
  }
}
.future-section {
  padding: 90px 0;
 /* background:
    linear-gradient(135deg, #041e2d 0%, #062f42 100%);
    */
    background-color:#010065;
  color: #fff;
  position: relative;
  overflow: hidden;
}


/* Cards */
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 70px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 70px 30px 35px;
  position: relative;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid transparent;
  border-image: linear-gradient(
    90deg,
    transparent,
    #f4c430,
    transparent
  ) 1;
  pointer-events: none;
}

/* Icon */
.icon-wrapper {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index:999;
}

.icon-wrapper img {
  width: 50px;
}

/* Text */
.feature-card h3 {
  color: #7ee33b;
  font-size: 22px;
  margin-bottom: 15px;
  text-align: center;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #e0e6ea;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
  .cards-row {
    grid-template-columns: 1fr;
  }

  .feature-card {
    margin-top: 40px;
  }
}

        .illustration-container {
            position: relative;
            padding: 40px;
        }

        .illustration-wrapper {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Dotted circle background */
        .dotted-circle {
            position: absolute;
            width: 500px;
            height: 500px;
            border: 3px dashed #ffd700;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        /* WiFi icon */
        .wifi-icon {
            position: absolute;
            top: -20px;
            right: 100px;
            color: #d3d3d3;
            font-size: 50px;
            z-index: 1;
        }

        /* Invoice documents */
        .invoice-back {
            position: absolute;
            top: 20px;
            left: 20px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 20px;
            width: 180px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 1;
        }

        .invoice-back .title {
            font-weight: 700;
            font-size: 14px;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .invoice-back .icon {
            width: 30px;
            height: 30px;
            background: #ffd700;
            border-radius: 5px;
            float: right;
        }

        .invoice-table {
            width: 100%;
            margin-top: 10px;
        }

        .invoice-table td {
            height: 8px;
            background: #f0f0f0;
            margin-bottom: 4px;
            display: block;
        }

        .invoice-table td.yellow {
            background: #ffd700;
            width: 60%;
        }

        /* Credit card */
        .credit-card {
            position: absolute;
            top: 60px;
            right: 40px;
            background: linear-gradient(135deg, #010065 0%, #6bc93f 100%);
            border-radius: 15px;
            width: 200px;
            height: 120px;
            padding: 15px;
            box-shadow: 0 10px 25px rgba(126, 217, 87, 0.4);
            z-index: 3;
        }

        .credit-card .chip {
            width: 40px;
            height: 30px;
            background: #f0f0f0;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .credit-card .card-number {
            color: white;
            font-size: 10px;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .credit-card .card-details {
            display: flex;
            justify-content: space-between;
            color: white;
            font-size: 8px;
        }

        /* Mobile phone with invoice */
        .mobile-phone {
            position: absolute;
            top: 80px;
            left: 50%;
            transform: translateX(-50%);
            width: 160px;
            height: 320px;
            background: #2c3e50;
            border-radius: 25px;
            padding: 10px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
            z-index: 4;
        }

        .mobile-screen {
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 15px;
            padding: 15px;
            overflow: hidden;
        }

        .mobile-screen .bill-title {
            text-align: center;
            font-weight: 700;
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .bill-items {
            margin-top: 10px;
        }

        .bill-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            font-size: 10px;
        }

        .bill-item .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #010065;
        }

        /* Invoice right */
        .invoice-right {
            position: absolute;
            bottom: 80px;
            right: 20px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 15px;
            width: 180px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 1;
        }

        .invoice-right .title {
            font-weight: 700;
            font-size: 14px;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        /* Person illustration */
        .person-illustration {
            position: absolute;
            bottom: 0;
            left: 60px;
            width: 200px;
            z-index: 2;
        }

        .person-chair {
            width: 120px;
            height: 100px;
            background: #ffd700;
            border-radius: 10px;
            position: relative;
        }

        .person-body {
            position: absolute;
            top: -80px;
            left: 30px;
            width: 80px;
            height: 100px;
        }

        .person-head {
            width: 50px;
            height: 50px;
            background: #ffd4a3;
            border-radius: 50%;
            margin: 0 auto;
            position: relative;
        }

        .person-hair {
            position: absolute;
            top: 0;
            width: 100%;
            height: 30px;
            background: #2c3e50;
            border-radius: 50% 50% 0 0;
        }

        .person-torso {
            width: 80px;
            height: 60px;
            background: #34495e;
            border-radius: 10px;
            margin-top: 5px;
        }

        .person-arm {
            position: absolute;
            bottom: 120px;
            left: 100px;
            width: 60px;
            height: 10px;
            background: #34495e;
            border-radius: 5px;
            transform: rotate(-30deg);
        }

        .person-hand {
            position: absolute;
            right: -15px;
            bottom: -10px;
            width: 20px;
            height: 20px;
            background: #ffd4a3;
            border-radius: 50%;
        }

        .pointer {
            position: absolute;
            bottom: 140px;
            left: 155px;
            width: 40px;
            height: 3px;
            background: #2c3e50;
            transform: rotate(-30deg);
            z-index: 3;
        }

        /* Pay button */
        .pay-button {
            position: absolute;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            background: #010065;
            color: white;
            padding: 10px 30px;
            border-radius: 25px;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(126, 217, 87, 0.4);
            z-index: 3;
        }

        /* Features list */
        .features-list {
            position: relative;
            z-index: 1;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 50px;
            position: relative;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            flex-shrink: 0;
            font-size: 24px;
            background-color:#fdcd01;
        }

        .feature-icon.goals {
            color: #010065;
        }

        .feature-icon.reports {
            color: #010065;
        }

        .feature-icon.cashflow {
            color: #010065;
        }

        .feature-content h3 {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .feature-content p {
            font-size: 15px;
            color: #7f8c8d;
            line-height: 1.8;
        }

        .connector-line {
            position: absolute;
            left: 30px;
            top: 60px;
            width: 2px;
            height: 100%;
            background: repeating-linear-gradient(
                to bottom,
                #010065 0px,
                #010065 10px,
                transparent 10px,
                transparent 20px
            );
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #2c3e50;
            color: white;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            z-index: 1000;
        }

        .gift-icon {
            position: fixed;
            top: 200px;
            right: 0;
            width: 60px;
            height: 60px;
            background: #ffd700;
            border-radius: 10px 0 0 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: -5px 5px 15px rgba(0,0,0,0.2);
            z-index: 1000;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 32px;
            }
            
            .illustration-container {
                margin-bottom: 50px;
            }
        }
        
        
        .integration-section {
            background: #000;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        /* Decorative wave shapes */
        .wave-decoration {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            opacity: 0.1;
        }

        .wave-decoration::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            top: -200px;
            right: -100px;
        }

        .wave-decoration::after {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            top: -300px;
            right: -300px;
        }

        .wave-accent {
            position: absolute;
            width: 300px;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(26, 87, 112, 0.5) 50%, transparent 100%);
            top: 0;
            right: 35%;
            transform: skewX(-15deg);
        }

        .section-content {
            position: relative;
            z-index: 2;
        }

               .section-titlev2 {
            font-size: 48px;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .section-title .highlight {
            color: #fdcd01;
            border-bottom: 4px solid #fdcd01;
            padding-bottom: 2px;
            display: inline-block;
        }

        .section-description {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 35px;
            line-height: 1.7;
            max-width: 500px;
        }

        .cta-button {
            background: #010065;
            color: #0d3d4f;
            padding: 16px 35px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 5px 20px rgba(126, 217, 87, 0.3);
        }

        .cta-button:hover {
            background: #6bc93f;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(126, 217, 87, 0.4);
            color: #0d3d4f;
        }

        /* Integration Icons Grid */
        .integration-icons {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 450px;
        }

        .icon-item {
            text-align: center;
            transition: transform 0.3s ease;
        }

        .icon-item:hover {
            transform: translateY(-10px);
        }

        .icon-circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .icon-circle img {
            width: 90px;
            height: 90px;
            object-fit: contain;
        }

        /* Custom icons using CSS (fallback if images not available) */
        .icon-slack {
            background: linear-gradient(135deg, #4A154B 0%, #36C5F0 100%);
        }

        .icon-telegram {
            background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
        }

        .icon-twilio {
            background: white;
        }

        .icon-zapier {
            background: linear-gradient(135deg, #FF4A00 0%, #FF7A3D 100%);
        }

        .icon-webhook {
            background: white;
        }

        .icon-mailchimp {
            background: linear-gradient(135deg, #FFE01B 0%, #FFC800 100%);
        }

        .icon-chatgpt {
            background: white;
        }

        .icon-label {
            font-size: 15px;
            font-weight: 600;
            color: white;
            margin-top: 5px;
        }

        /* Gift icon */
        .gift-icon {
            position: fixed;
            top: 200px;
            right: 0;
            width: 65px;
            height: 65px;
            background: #ffd700;
            border-radius: 12px 0 0 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gift-icon:hover {
            transform: translateX(-5px);
        }

        /* Icon styling for Font Awesome alternatives */
       .icon-circle i {
            font-size: 35px;
        }

        .icon-facebook i { color: #1877F2; }
        .icon-linkedin i { color: #0A66C2; }
        .icon-instagram i { color: #E4405F; }
        .icon-youtube i { color: #FF0000; }
        .icon-tiktok i { color: #000000; }
        .icon-x i { color: #000000; }

        /* Responsive */
        @media (max-width: 992px) {
            .integration-icons {
                margin-top: 60px;
            }
        }


        @media (max-width: 768px) {
            .section-title {
                font-size: 36px;
            }

            .integration-icons {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                margin: 50px auto 0;
            }

            .icon-circle {
                width: 80px;
                height: 80px;
            }

            .icon-circle i {
                font-size: 35px;
            }

            .wave-accent {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .integration-icons {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        
          .blog-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-badge {
            display: inline-block;
            background: #e8f5e9;
            color: #010065;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 48px;
            font-weight: 700;
            color: #1e3a4c;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .section-title .highlight {
            color: #fdcd01;
            border-bottom: 4px solid #fdcd01;
            padding-bottom: 2px;
        }

        .section-subtitle {
            font-size: 16px;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Blog Card Styles */
        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .blog-image {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
            background: linear-gradient(135deg, #010065 0%, #6bc93f 100%);
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #010065;
            color: white;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .blog-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 13px;
            color: #95a5a6;
        }

        .blog-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .blog-meta-item i {
            color: #010065;
        }

        .blog-title {
            font-size: 22px;
            font-weight: 700;
            color: #1e3a4c;
            margin-bottom: 15px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .blog-card:hover .blog-title {
            color: #010065;
        }

        .blog-excerpt {
            font-size: 15px;
            color: #7f8c8d;
            line-height: 1.7;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .blog-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 2px solid #f0f0f0;
        }

        .blog-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #010065 0%, #6bc93f 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 14px;
        }

        .author-info {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-size: 14px;
            font-weight: 600;
            color: #1e3a4c;
        }

        .author-role {
            font-size: 12px;
            color: #95a5a6;
        }

        .read-more {
            color: #010065;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            gap: 12px;
            color: #6bc93f;
        }

        .read-more i {
            font-size: 12px;
        }

        /* View All Button */
        .view-all-wrapper {
            text-align: center;
            margin-top: 50px;
        }

        .btn-view-all {
            background: transparent;
            color: #010065;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            border: 2px solid #010065;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .btn-view-all:hover {
            background: #010065;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(126, 217, 87, 0.3);
        }

        /* Gift icon */
        .gift-icon {
            position: fixed;
            top: 200px;
            right: 0;
            width: 65px;
            height: 65px;
            background: #ffd700;
            border-radius: 12px 0 0 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gift-icon:hover {
            transform: translateX(-5px);
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: #1e3a4c;
            color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .scroll-top:hover {
            background: #2c4f68;
            transform: translateY(-3px);
        }

        /* Placeholder Image Styles */
        
        /* Featured Post */
        .blog-card.featured {
            border: 3px solid #010065;
        }

        .blog-card.featured .blog-category {
            background: #1e3a4c;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 36px;
            }

            .blog-image {
                height: 220px;
            }

            .blog-title {
                font-size: 20px;
            }
        }

.contact-hero {
            background: #000;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(126, 217, 87, 0.1);
            top: -200px;
            right: -100px;
        }

        .contact-hero::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(126, 217, 87, 0.08);
            bottom: -100px;
            left: -50px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(126, 217, 87, 0.2);
            color: #010065;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-title .highlight {
            color: #fdcd01;
        }

        .hero-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            position: relative;
            margin-top: -60px;
        }

        /* Contact Cards */
        .contact-info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .contact-info-card {
            background: white;
            border-radius: 20px;
            padding: 35px 30px;
            text-align: center;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .contact-info-card:hover {
            transform: translateY(-10px);
            border-color: #010065;
            box-shadow: 0 15px 40px rgba(126, 217, 87, 0.2);
        }

        .info-card-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #020659;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            color: white;
        }

        .info-card-title {
            font-size: 20px;
            font-weight: 700;
            color: #1e3a4c;
            margin-bottom: 10px;
        }

        .info-card-text {
            font-size: 15px;
            color: #7f8c8d;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .info-card-link {
            color: #010065;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .info-card-link:hover {
            color: #6bc93f;
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: white;
            border-radius: 25px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .form-section-title {
            font-size: 32px;
            font-weight: 700;
            color: #1e3a4c;
            margin-bottom: 15px;
        }

        .form-section-subtitle {
            font-size: 16px;
            color: #7f8c8d;
            margin-bottom: 40px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            font-size: 14px;
            font-weight: 600;
            color: #1e3a4c;
            margin-bottom: 10px;
            display: block;
        }

        .form-label .required {
            color: #e74c3c;
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .form-control:focus {
            outline: none;
            border-color: #010065;
            background: white;
            box-shadow: 0 0 0 4px rgba(126, 217, 87, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .btn-submit {
            background:#F2B705;
            color: white;
            padding: 16px 50px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(126, 217, 87, 0.3);
            width: 100%;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(126, 217, 87, 0.4);
        }

        .btn-submit i {
            margin-left: 10px;
        }

        /* Map Section */
        .map-section {
            background: white;
            border-radius: 25px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-top: 40px;
        }

        .map-title {
            font-size: 28px;
            font-weight: 700;
            color: #1e3a4c;
            margin-bottom: 30px;
            text-align: center;
        }

        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .map-placeholder {
            text-align: center;
            color: #7f8c8d;
        }

        .map-placeholder i {
            font-size: 60px;
            margin-bottom: 15px;
            color: #010065;
        }

        /* FAQ Section */
        .faq-section {
            margin-top: 60px;
        }

        .faq-title {
            font-size: 32px;
            font-weight: 700;
            color: #1e3a4c;
            margin-bottom: 40px;
            text-align: center;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            padding: 25px 30px;
            margin-bottom: 20px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
            font-weight: 600;
            color: #1e3a4c;
        }

        .faq-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: #010065;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: #7f8c8d;
            line-height: 1.7;
            padding-top: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding-top: 20px;
        }

        /* Gift icon */
        .gift-icon {
            position: fixed;
            top: 200px;
            right: 0;
            width: 65px;
            height: 65px;
            background: #ffd700;
            border-radius: 12px 0 0 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gift-icon:hover {
            transform: translateX(-5px);
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: #1e3a4c;
            color: white;
            border-radius: 8px;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .scroll-top:hover {
            background: #2c4f68;
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }

            .contact-form-wrapper {
                padding: 30px 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .map-section {
                padding: 30px 20px;
            }

            .map-container {
                height: 300px;
            }
        }
        
        
        
        
                /* Hero Section */
        .blog-hero {
            background: linear-gradient(135deg, #1e3a4c 0%, #2c5068 100%);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .blog-hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(126, 217, 87, 0.1);
            top: -200px;
            right: -100px;
        }

        
        .breadcrumb-nav {
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.7);
        }

        .breadcrumb-nav a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-nav a:hover {
            color: white;
        }

        .breadcrumb-nav span {
            margin: 0 10px;
        }

        .breadcrumb-nav .current {
            color: #010065;
        }

        .blog-category-badge {
            display: inline-block;
            background: #010065;
            color: white;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-title {
            font-size: 28px;
            font-weight: 700;
            color: #010065;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .meta-item i {
            color: #010065;
        }

        .author-meta {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, #010065 0%, #fdcd01 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
        }

        .author-info .author-name {
            font-weight: 600;
            color: white;
            display: block;
        }

        .author-info .author-role {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Main Content */
        .blog-content-section {
            padding: 80px 0;
            margin-top: -40px;
            position: relative;
        }

        /* Featured Image */
        .featured-image {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 50px;
        }

        .featured-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .featured-image-placeholder {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #010065 0%, #fdcd01 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 80px;
        }

        /* Article Content */
        .article-content {
            background: white;
            border-radius: 25px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }

        .article-content h2 {
            font-size: 32px;
            font-weight: 700;
            color: #1e3a4c;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .article-content h3 {
            font-size: 26px;
            font-weight: 700;
            color: #1e3a4c;
            margin-top: 35px;
            margin-bottom: 15px;
        }

        .article-content p {
            font-size: 17px;
            line-height: 1.9;
            color: #5a6c7d;
            margin-bottom: 25px;
        }

        .article-content ul,
        .article-content ol {
            margin-bottom: 25px;
            padding-left: 25px;
        }

        .article-content li {
            font-size: 17px;
            line-height: 1.8;
            color: #5a6c7d;
            margin-bottom: 12px;
        }

        .article-content blockquote {
            background: #f8f9fa;
            border-left: 5px solid #010065;
            padding: 25px 30px;
            margin: 30px 0;
            border-radius: 10px;
            font-size: 18px;
            font-style: italic;
            color: #2c3e50;
        }

        .article-content img {
            width: 100%;
            border-radius: 15px;
            margin: 30px 0;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(126, 217, 87, 0.1) 0%, rgba(108, 201, 63, 0.1) 100%);
            border: 2px solid #010065;
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
        }

        .highlight-box h4 {
            color: #010065;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* Tags and Share */
        .article-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 2px solid #e0e0e0;
            margin-top: 50px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .article-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .tag {
            background: #f0f0f0;
            color: #5a6c7d;
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: #010065;
            color: white;
        }

        .social-share {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .social-share span {
            font-weight: 600;
            color: #5a6c7d;
            margin-right: 10px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .social-icon:hover {
            transform: translateY(-3px);
        }

        .social-icon.facebook { background: #3b5998; }
        .social-icon.twitter { background: #1da1f2; }
        .social-icon.linkedin { background: #0077b5; }
        .social-icon.whatsapp { background: #25d366; }

        /* Author Box */
        .author-box {
            background: white;
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }

        .author-box-content {
            display: flex;
            gap: 25px;
            align-items: start;
        }

        .author-box-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: linear-gradient(135deg, #010065 0%, #fdcd01 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 36px;
            flex-shrink: 0;
        }

        .author-box-info {
            flex-grow: 1;
        }

        .author-box-name {
            font-size: 24px;
            font-weight: 700;
            color: #1e3a4c;
            margin-bottom: 5px;
        }

        .author-box-role {
            font-size: 14px;
            color: #010065;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .author-box-bio {
            font-size: 15px;
            color: #5a6c7d;
            line-height: 1.7;
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 30px;
        }

        .sidebar-widget {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }

        .widget-title {
            font-size: 22px;
            font-weight: 700;
            color: #1e3a4c;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #010065;
        }

        /* Recent Posts Widget */
        .recent-post {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e0e0e0;
        }

        .recent-post:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .recent-post-image {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            background: linear-gradient(135deg, #010065 0%, #fdcd01 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            flex-shrink: 0;
        }

        .recent-post-content {
            flex-grow: 1;
        }

        .recent-post-title {
            font-size: 15px;
            font-weight: 600;
            color: #1e3a4c;
            margin-bottom: 8px;
            line-height: 1.4;
            text-decoration: none;
            display: block;
            transition: color 0.3s ease;
        }

        .recent-post-title:hover {
            color: #010065;
        }

        .recent-post-date {
            font-size: 13px;
            color: #95a5a6;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .recent-post-date i {
            color: #010065;
        }

        /* Categories Widget */
        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .category-item {
            margin-bottom: 12px;
        }

        .category-item:last-child {
            margin-bottom: 0;
        }

        .category-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            background: #f8f9fa;
            border-radius: 10px;
            text-decoration: none;
            color: #5a6c7d;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .category-link:hover {
            background: #010065;
            color: white;
        }

        .category-count {
            background: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 13px;
        }

        /* Tags Widget */
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        /* Newsletter Widget */
        .newsletter-widget {
            background: linear-gradient(135deg, #010065 0%, #fdcd01 100%);
            color: white;
        }

        .newsletter-widget .widget-title {
            color: white;
            border-bottom-color: white;
        }

        .newsletter-text {
            font-size: 15px;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.95);
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .newsletter-input {
            padding: 14px 18px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .newsletter-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.3);
            border-color: white;
        }

        .newsletter-button {
            padding: 14px;
            background: white;
            color: #010065;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-button:hover {
            background: #1e3a4c;
            color: white;
        }

        /* Related Posts */
        .related-posts {
            background: white;
            border-radius: 25px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }

        .related-posts-title {
            font-size: 32px;
            font-weight: 700;
            color: #1e3a4c;
            margin-bottom: 40px;
            text-align: center;
        }

        .related-posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .related-post-card {
            background: #f8f9fa;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .related-post-card:hover {
            transform: translateY(-5px);
            border-color: #010065;
            box-shadow: 0 10px 30px rgba(126, 217, 87, 0.2);
        }

        .related-post-image {
            width: 100%;
            height: 180px;
            background: linear-gradient(135deg, #010065 0%, #fdcd01 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 50px;
        }

        .related-post-content {
            padding: 25px;
        }

        .related-post-category {
            display: inline-block;
            background: #010065;
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .related-post-title {
            font-size: 18px;
            font-weight: 700;
            color: #1e3a4c;
            margin-bottom: 10px;
            line-height: 1.4;
            text-decoration: none;
            display: block;
        }

        .related-post-title:hover {
            color: #010065;
        }

        .related-post-date {
            font-size: 13px;
            color: #95a5a6;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Gift icon */
        .gift-icon {
            position: fixed;
            top: 200px;
            right: 0;
            width: 65px;
            height: 65px;
            background: #ffd700;
            border-radius: 12px 0 0 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gift-icon:hover {
            transform: translateX(-5px);
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: #1e3a4c;
            color: white;
            border-radius: 8px;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .scroll-top:hover {
            background: #2c4f68;
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .blog-title {
                font-size: 32px;
            }

            .article-content,
            .author-box,
            .related-posts {
                padding: 30px 20px;
            }

            .featured-image-placeholder {
                height: 300px;
            }

            .article-content h2 {
                font-size: 26px;
            }

            .author-box-content {
                flex-direction: column;
                text-align: center;
            }

            .article-footer {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        
        
        .flip-card {
            background-color: transparent;
            width: 100%;
            height: 220px;
            perspective: 1000px;
            cursor: pointer;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front,
        .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        .flip-card-front {
            background:#020659; /* linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .flip-card-front.style-2 {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .flip-card-front.style-3 {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .flip-card-front.style-4 {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .flip-card-front.style-5 {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .flip-card-front.style-6 {
            background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
        }

        .flip-card-front h3 {
            font-size: 28px;
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color:#fff;
        }

        .flip-card-front p {
            font-size: 14px;
            opacity: 0.9;
            letter-spacing: 0.3px;
        }

        .flip-card-front-icon {
            font-size: 48px;
            margin-bottom: 15px;
            opacity: 0.95;
        }

        /* Back of card */
        .flip-card-back {
            background: white;
            color: #2c3e50;
            transform: rotateY(180deg);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .flip-card-back h4 {
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 700;
            color: #333;
        }

        .flip-card-back p {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 0;
        }

        .flip-card-back-icon {
            font-size: 36px;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Grid Layout */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .flip-card {
                height: 300px;
            }

            .flip-card-front h3 {
                font-size: 24px;
            }

            h1 {
                font-size: 28px;
                margin-bottom: 40px;
            }

            .cards-grid {
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .flip-card {
                height: 280px;
            }

            .flip-card-front h3 {
                font-size: 20px;
            }

            .flip-card-front-icon {
                font-size: 40px;
                margin-bottom: 10px;
            }

            .flip-card-front,
            .flip-card-back {
                padding: 20px;
            }
        }