/* 
 * Kreditailt.lt Modern Styles
 * Bootstrap 5 based design - 2025 Redesign
 */

/* General Styles & Variables */
:root {
--primary-color: #5d6dc1; /* Švelnesnė mėlyna */
--primary-light: #6c81d9; /* Šviesesnė mėlyna */
--primary-dark: #4b569c; /* Tamsesnė mėlyna */
--secondary-color: #8a8f99; /* Neutrali pilka */
--dark-color: #2f3747; /* Gili tamsi pilka */
--light-color: #f7f8fa; /* Lengva, beveik balta */
--success-color: #5bc0de; /* Švelni žydra */
--info-color: #6c81d9; /* Suderinta su primary-light */
--warning-color: #d97386; /* Švelnesnė rožinė tonas */
--danger-color: #c1474e; /* Tamsesnė raudona */
--body-bg: #dfefff; /* Šviesi fono spalva */
--bg-pos: #d4edda;
--bg-neg: #ffe8e6;
--navbar-bg: rgba(71, 57, 57, 0.95);
--navbar-light-color: #fff;
--card-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
--hover-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    --transition-default: all 0.3s ease;
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;
}

html, body {
    overflow-x: hidden;
}

* {
  /* outline: 1px solid red; */
}

body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    background-color: var(--body-bg);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
}

/* Gradient backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

/* Shadow hover effect */
.shadow-hover {
    transition: all 0.3s ease;
}

.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Icon wrapper */
.icon-wrapper {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-lg {
    width: 100px;
    height: 100px;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Header & Navigation */
.navbar {
    position: absolute;
    transition: var(--bs-transition-base); /* Bootstrap 5 transition variable */
    padding: 15px 0;
    background-color: var(--navbar-bg) !important;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    max-height: 50px;
    transition: var(--bs-transition-base);
}

.navbar.scrolled .navbar-brand img {
    max-height: 40px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--navbar-light-color); /* Use the variable */
    padding: 0.7rem 1.2rem;
    transition: var(--bs-transition-base);
    position: relative;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--navbar-light-color);
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--bs-transition-base);
    opacity: 0;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 30px;
    opacity: 1;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--navbar-light-color);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid var(--navbar-light-color);
    transition: all 300ms linear;
}

.navbar-toggler-icon:after, 
.navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: var(--navbar-light-color);
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
    background-color: var(--navbar-light-color);
    height: 1px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
    background-color: var(--navbar-light-color);
    height: 1px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

/* Hero Banner */
.hero-section {
    min-height: 70vh;
	position: relative;
    padding: 5rem 0 0rem;
    background: linear-gradient(135deg, rgba(42, 245, 152, 1) 0%, rgba(0, 158, 253, 0.9) 100%);	
	z-index: 0;
}

.hero-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;
	background: linear-gradient(to right, #ff7e5f, #feb47b);
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	z-index: 0;
}

.hero-overlap {
	position: relative; 
	z-index: 1; 
    margin-top: -100px; /* Deeper negative margin for more pronounced overlap */
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
}

.hero-tagline {
    margin: 0;
	font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    display: block;
    margin: 0 auto;
    position: relative;
    bottom: -4rem;
    z-index: 6;
}

.baloon-shape {
    position: absolute;
	z-index: 5;
}

.floating-baloon {
    top: 15%;
    left: 75%;
    animation: float 7s ease-in-out infinite;
}

.flower-shape {
    position: absolute;
	z-index: 0;
	background: url('../images/bg/06.png') no-repeat center center;
}

.floating-flower {
    bottom: 10%;
    left: 0;
	width: 220px;
	height: 420px;	
}

.floating-flower-2 {
    bottom: 10%;
    right: 0;
	width: 220px;
	height: 420px;
	transform: scaleX(-1);
}

.dots-shape {
    position: absolute;
	z-index: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.8'%3E%3Cpath d='M36 2 L42 8 L36 14 L30 8 Z M6 2 L12 8 L6 14 L0 8 Z M18 32 L24 38 L18 44 L12 38 Z M48 32 L54 38 L48 44 L42 38 Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.floating-dots-horizontal {
    top: 40%;
    right: 0;
	height: 75px;
	width: 220px;
}

.floating-dots-vertical {
	top: 0;
    right: 20%;
	width: 220px;
	height: 120px;
	transform: rotate(90deg);
}

.floating-shape {
    position: absolute;
    background-color: rgba(138, 120, 120, 0.28);
    border-radius: 50%;
    z-index: 0;
}

.floating-shape-1 {
    width: 100px;
    height: 100px;
    top: 35%;
    left: 15%;
    animation: float 6s ease-in-out infinite;
}

.floating-shape-4 {
	background: rgba(255, 255, 255, 0);
    border: 20px solid rgba(255, 255, 255, 0.2);
    width: 400px;
    height: 400px;
    top: 50%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

.floating-shape-5 {
	background: rgba(255, 255, 255, 0);
    border: 46px solid #38ffa4;
    width: 400px;
    height: 400px;
    top: 2%;
    right: 85%;
    animation: float 5s ease-in-out infinite;
}

.floating-shape-6 {
	background: rgba(255, 255, 255, 0);
    border: 46px solid #2af598;
    width: 400px;
    height: 400px;
    top: 20%;
    left: 85%;
    animation: float 5s ease-in-out infinite;	
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Offer */
.offer-banner {
    padding: 7rem 0 5rem;
    position: relative;
	overflow: hidden;
    background: rgba(42, 245, 152, 1);
    background: linear-gradient(135deg, rgba(42, 245, 152, 1) 0%, rgba(0, 158, 253, 0.9) 100%);	
}

.offer-banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;
	background: linear-gradient(to right, #ff7e5f, #feb47b);
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff9900' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	z-index: 0;
}

.offer-content {
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.offer-bg {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 5px;
    border-radius: 10px;
}

.btn-offer-bg {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

/* BACKGROUND */
.bg-pos{
	background-color: var(--bg-pos);
}

.bg-neg {
	background-color: var(--bg-neg);
}

/* Cards & Features */
.card {
    border: none;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--card-shadow);
    transition: var(--transition-default);
    /* background: #fff; */
    /* height: 100%; */
}

.feature-card {
    padding: 2rem;
    text-align: center;
}

.feature-card .icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-default);
}

.feature-card:hover .icon-box {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.feature-card .icon-box i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition-default);
}

.feature-card:hover .icon-box i {
    color: white;
}

.feature-card h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.hover-effect {
    transition: var(--transition-default);
}

.hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

/* Content Sections */
.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title:after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.loan-card {
    position: relative;
}

.loan-card .card-header {
    background: white;
    border: none;
    padding: 1.5rem;
}

.loan-card .card-body {
    padding: 1.5rem;
}

.loan-card img {
    transition: var(--transition-default);
    max-height: 80px;
    width: auto;
}

.loan-card:hover img {
    transform: scale(1.05);
}

.loan-card .loan-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.benefit-item i {
    color: var(--success-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

/* Testimonials */
.testimonial-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.testimonial-card {
    border-radius: var(--border-radius-md);
	overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-default);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card .card-body {
    padding: 2rem;
}

.testimonial-card .testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

.testimonial-card .testimonial-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-card .testimonial-position {
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-card p {
    font-style: italic;
    opacity: 0.9;
    position: relative;
}

.testimonial-card p:before {
    content: '"';
    font-size: 4rem;
    font-family: Georgia, serif;
    position: absolute;
    top: -25px;
    left: -20px;
    opacity: 0.3;
}

/* Button Styles */
.btn {
    border-radius: var(--border-radius-sm);
    transition: var(--transition-default);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover, 
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

/* Content Box */
.content-box {
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
    padding: 3rem;
    margin-bottom: 2rem;
}

.content-box h2 {
    margin-bottom: 1.5rem;
}

.content-box p {
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 2rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-default);
}

.footer a:hover {
    color: white;
}

.footer-logo {
    max-width: 140px;
    margin-bottom: 1.5rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-nav li {
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

/**
 * Steps Process Component - Additional CSS
 * 
 */

/* Base styles for the steps section */
.steps-process {
    position: relative;
    padding: 5rem 0;
}

/* Container for all steps */
.steps-container {
    position: relative;
    padding: 20px 0;
    margin-bottom: 2rem;
}

/* Individual step item */
.step-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

/* Step number container */
.step-number-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 2.5rem;
    z-index: 2;
}

/* Styling for the number circle */
.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 2.2rem;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(93, 109, 193, 0.2);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

/* Step connector line */
.step-connector {
    position: absolute;
    top: 70px;
    width: 4px;
    height: calc(100% + 4rem);
    background: linear-gradient(to bottom, var(--primary-color) 0%, rgba(93, 109, 193, 0.2) 100%);
    z-index: 1;
}

/* Last step should not have an extending connector */
.step-item:last-child .step-connector {
    height: 0;
}

/* Step content container */
.step-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-content-inner {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effects */
.step-item:hover .step-number {
    transform: scale(1.05);
}

.step-item:hover .step-content-inner {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Button styling */
.step-content-inner .btn {
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.step-content-inner .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
}

/* Loan Calculator Improved Styles */
.loan-calc-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    position: relative;
}

.loan-calc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.loan-calc-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.loan-calc-title:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.form-range::-webkit-slider-thumb {
    background: var(--primary-color);
}

.form-range::-moz-range-thumb {
    background: var(--primary-color);
}

.form-range::-ms-thumb {
    background: var(--primary-color);
}

.range-value {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.range-min, .range-max {
    color: var(--secondary-color);
}


.min-height {
    min-height: 120px;
}

/* TOP Ribbon Styles */
.top-ribbon {
    position: absolute;
    top: -5px;
    right: 15px;
    background-color: #ffcc00;
    color: #000;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
    z-index: 10;
    animation: pulseTOP 2s infinite;
}

.highlight-card {
    border: 2px solid #ffcc00; /* Frame remains visible */
    box-shadow: 
        0 0 10px rgba(255, 204, 0, 0.1), /* Minimum glow */
        0 0 20px rgba(255, 204, 0, 0.05),
        0 0 30px rgba(255, 204, 0, 0.02);
    transform: translateY(-5px);
    z-index: 5;
    animation: pulse-glow 2.5s infinite alternate; /* Smooth transition between min and max glow */
}

/* Pulsing glow animation */
@keyframes pulse-glow {
    0% {
        box-shadow: 
            0 0 10px rgba(255, 204, 0, 0.1), /* Starting from minimum glow */
            0 0 20px rgba(255, 204, 0, 0.05),
            0 0 30px rgba(255, 204, 0, 0.02);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(255, 204, 0, 0.8), /* Maximum bright glow */
            0 0 25px rgba(255, 204, 0, 0.9),
            0 0 40px rgba(255, 204, 0, 1);
    }
    100% {
        box-shadow: 
            0 0 10px rgba(255, 204, 0, 0.1), /* Back to minimum glow */
            0 0 20px rgba(255, 204, 0, 0.05),
            0 0 30px rgba(255, 204, 0, 0.02);
    }
}

/* Custom range slider */
.custom-range {
    height: 10px;
    border-radius: 5px;
    background: #e9ecef;
}

.custom-range::-webkit-slider-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.custom-range::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Range display */
.range-display {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

/* Comparison cards */
.comparison-card {
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: scale(1.02);
}

/* Info cards */
.info-card {
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

/* Accordion customization */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:not(.collapsed) i {
    color: white !important;
}

/**************************/
/* Responsive Adjustments */
@media (min-width: 1024px) {
	.hero-content {
		padding-top: 1.5rem;
	}
    .steps-process {
        padding: 4rem 0;
    }
    
    .step-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 3rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .step-number-wrapper {
        margin-right: 0;
        margin-bottom: 1.5rem;
        align-items: flex-start;
        margin-left: 1rem;
    }
    
    /* Force connector to display in mobile view */
    .step-connector {
        left: 30px !important;
        top: 60px !important;
        height: 50px !important; 
        display: block !important;
        width: 4px !important;
        background: var(--primary-color) !important;
    }
    
    .step-content {
        width: 100%;
    }
    
    .step-content-inner {
        padding: 2rem;
    }
	.floating-shape-4 {
		display: none;
	}	
	
}

@media (min-width: 992px) and (max-width: 1440px) {
    .navbar-nav {
        padding-top: 15px;
    }
    
    .navbar-nav .nav-link {
        text-align: center;
        padding: 12px;
    }
    .hero-image {
		right: 33%;
    }	
	.floating-baloon {
        left: 70%; 
    }	
    .content-box {
        padding: 2rem;
    }
	
}

@media (max-width: 768px) {
    .sense-container.ad-large {
        min-height: 100px;
    }
    
    .hero-section {
        padding: 6rem 0 0rem;
    }
    .hero-image {
		right: 10%;
    }    
    .hero-title {
        font-size: 2.5rem;
    }

	.floating-shape-5 {
		border: 30px solid #38ffa4;
		width: 250px;
		height: 250px;
		top: 5%;
		right: 85%;
	}

	.floating-shape-6 {
		border: 35px solid #2af598;
		width: 250px;
		height: 250px;
		top: 45%;
		left: 85%;		
	}	
	
	.floating-baloon {
        left: 55%; 
		top: 10%;
    }
	
    .content-box {
        padding: 1.5rem;
    }	
	
    .table-responsive table {
        border: 0;
    }
    
    .table-responsive table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
            padding: 0;
        position: absolute;
        width: 1px;
    }
    
    .table-responsive table tr {
        display: block;
        margin-bottom: 1.5rem;
        border-bottom: 3px solid #dee2e6;
    }
    
    .table-responsive table td {
        display: block;
        position: relative;
        border-bottom: 1px solid #dee2e6;
    }
    
    .table-responsive table th[scope="row"] {
        display: block;
        font-weight: bold;
        background-color: rgba(0,0,0,.03);
    }
    
    .table-responsive table td::before {
        content: attr(data-label);
        position: absolute;
        font-weight: bold;
    }	
	
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-image {
		right: 1%;
    }     
    .feature-card {
        padding: 1.5rem;
    }
    
    .testimonial-card .card-body {
        padding: 1.5rem;
    }
	
    .steps-process {
        padding: 3rem 0;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-connector {
        left: 25px !important;
        top: 50px !important;
    }
    
    .step-content-inner {
        padding: 1.5rem;
    }	
	
	.floating-baloon {
        display: none;
    }	

	.floating-shape-1 {
		top: 12%;
		left: 5%;
		}
	
	.floating-shape-5 {
		border: 25px solid #3ad78f;
		top: 25%;
		right: 75%;
	}
	
	.floating-shape-6 {
		border: 25px solid #2af598;
		top: 55%;
		left: 65%;		
	}	
	
	
	
}


/* ========================================
   MODERN GOOGLE ADSENSE INTEGRATION STYLES
   Updated for 2024+ Responsive Ad Units
   ======================================== */

/* Base Content Container Styles (renamed from ad-container) */
.sense-container {
    position: relative;
    margin: 2rem auto !important;
    text-align: center;
    overflow: hidden;
    z-index: 10;
    transition: var(--transition-default);
    display: block;
    max-width: 100%;
}

/* Display Content Formats */
.sense-container.sense-display {
    width: 100%;
    min-height: 100px;
}

/* Article Content */
.sense-container.sense-article {
    max-width: 100%;
    margin: 2rem auto;
    padding: 1rem 0;
}

/* Feed Content */
.sense-container.sense-feed {
    max-width: 100%;
    margin: 1.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
}

/* Multiplex Content Units */
.sense-container.sense-multiplex {
    max-width: 100%;
    margin: 3rem auto;
    background: var(--light-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
}

/* Search Content */
.sense-container.sense-search {
    max-width: 100%;
    margin: 1rem auto;
}

/* Content Placeholder Styles - Development Mode */
.content-placeholder {
    position: relative;
    background: linear-gradient(135deg, rgba(93, 109, 193, 0.03) 0%, rgba(93, 109, 193, 0.08) 100%);
    border: 2px dashed rgba(93, 109, 193, 0.2);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin: 2rem auto;
    transition: var(--transition-default);
    backdrop-filter: blur(5px);
    width: 100%;
}

.content-placeholder:hover {
    border-color: rgba(93, 109, 193, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(93, 109, 193, 0.1);
    background: linear-gradient(135deg, rgba(93, 109, 193, 0.05) 0%, rgba(93, 109, 193, 0.12) 100%);
}

.placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
}

.placeholder-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(93, 109, 193, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.placeholder-inner i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.placeholder-text {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    opacity: 0.8;
}

.placeholder-type {
    font-size: 0.85rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Format-specific placeholder dimensions */
.content-placeholder-display.content-format-square {
    max-width: 336px;
    min-height: 280px;
}

.content-placeholder-display.content-format-horizontal {
    width: 100%;
    min-height: 90px;
}

.content-placeholder-display.content-format-vertical {
    max-width: 300px;
    min-height: 600px;
}

.content-placeholder-display.content-format-auto {
    width: 100%;
    min-height: 100px;
}

.content-placeholder-in-article {
    width: 100%;
    min-height: 200px;
}

.content-placeholder-in-feed {
    width: 100%;
    min-height: 150px;
}

.content-placeholder-multiplex {
    width: 100%;
    min-height: 300px;
}

/* AdSense Loading States */
.adsbygoogle {
    display: block;
    min-height: inherit;
}

.adsbygoogle[data-ad-status="unfilled"] {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(93, 109, 193, 0.02);
    border-radius: var(--border-radius-sm);
}

.adsbygoogle[data-ad-status="unfilled"]::before {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid rgba(93, 109, 193, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Sense Section - Content Container Background */
.sense-section {
    position: relative;
    padding: 2rem 0;
    /* background-color: var(--light-color); */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sense-section .sense-container {
    width: 100%;
    max-width: 728px; /* Standard leaderboard max width */
}

.sense-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(93, 109, 193, 0.2), transparent);
}

.sense-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(93, 109, 193, 0.2), transparent);
}

/* Integration with Content Sections */
.hero-section .sense-container {
    margin-top: 3rem;
    position: relative;
    z-index: 20;
}

.offer-banner .sense-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Remove any manual advertisement labels - AdSense adds them automatically */
.sense-container::before {
    display: none !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sense-container {
        margin: 1.5rem auto;
    }
    
    .placeholder-inner {
        padding: 2rem 1rem;
    }
    
    .placeholder-inner i {
        font-size: 2.5rem;
    }
    
    .placeholder-text {
        font-size: 1rem;
    }
    
    /* Adjust minimum heights for mobile */
    .sense-container.sense-display {
        min-height: 60px;
    }
    
    .content-placeholder-display.content-format-square {
        width: 100%;
        height: 250px;
    }
    
    .content-placeholder-display.content-format-vertical {
        max-width: 100%;
        min-height: 400px;
    }
    
    .sense-section {
        padding: 1.5rem 0;
    }
    
    /* In-feed content stack better on mobile */
    .sense-container.sense-feed {
        margin: 1rem 0;
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .placeholder-inner {
        padding: 1.5rem 0.5rem;
    }
    
    .placeholder-inner i {
        font-size: 2rem;
    }
    
    .placeholder-text {
        font-size: 0.9rem;
    }
    
    .placeholder-type {
        font-size: 0.75rem;
    }
    
    /* Multiplex content need less padding on mobile */
    .sense-container.sense-multiplex {
        padding: 1rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .content-placeholder {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .content-placeholder:hover {
        border-color: rgba(255, 255, 255, 0.2);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.08) 100%);
    }
    
    .placeholder-inner {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .placeholder-text {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .sense-section {
        background-color: rgba(0, 0, 0, 0.2);
    }
    
    .sense-container.sense-feed {
        background: rgba(0, 0, 0, 0.3);
    }
}

/* Prevent Layout Shift */
.sense-container {
    min-height: 90px; /* Default minimum to prevent shift */
}

.sense-container.sense-display[data-format="square"] {
    min-height: 280px;
}

.sense-container.sense-display[data-format="vertical"] {
    min-height: 400px;
}

.sense-container.sense-article {
    min-height: 150px;
}

.sense-container.sense-multiplex {
    min-height: 250px;
}

/* Auto Ads Overlay Types (if enabled) */
body[data-auto-ads-enabled] {
    /* Add padding to prevent content overlap with anchor ads */
    padding-top: 90px;
    padding-bottom: 90px;
}

/* Smooth transitions for auto-placed ads */
.google-auto-placed {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}