/* Hero Banner Zoom Effect */
.hero-banner-container {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 1.4s ease-out forwards;
}

@keyframes zoomIn {
    from { transform: scale(1.2); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Floating Animation for Money Icon */
.floating-money {
    position: absolute;
    bottom: 20px;
    right: 50px;
    width: 150px;
    animation: float 3s infinite ease-in-out;
    z-index: 10;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Text Animations */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Mega Menu Styling */
.mega-dropdown:hover .dropdown-menu {
    display: block;
    top: 100%;
}
/* Heading Line */
.heading-line {
    width: 80px;
    height: 4px;
    background-color: #007bff;
    border-radius: 10px;
}

/* Feature Card Styling */
.feature-card {
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.feature-card h5:hover {
    color: #007bff;
}

/* Icon Box Background */
.icon-box {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 70px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

/* Floating Image Animation */
.floating-img {
    position: absolute;
    top: 50px;
    left: 80px;
    width: 100px;
    opacity: 0.7;
    animation: bounce 4s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
/* Floating Planes Animation */
.floating-plane {
    position: absolute;
    width: 100px;
    opacity: 0.4;
    z-index: 1;
}
.plane-right { top: 10%; right: 5%; animation: floatY 4s infinite ease-in-out; }
.plane-left { bottom: 10%; left: 5%; animation: floatY 5s infinite ease-in-out reverse; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Subject Card */
.subject-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    perspective: 1000px;
    cursor: pointer;
}

.subject-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    transition: transform 0.6s ease;
}

.subject-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3) !important;
}

.subject-card:hover .subject-bg-overlay {
    transform: scale(1.2);
}

/* Icon Bounce Effect */
.icon-wrapper {
    transition: all 0.4s ease;
}

.subject-card:hover .icon-wrapper {
    transform: scale(1.2) rotate(5deg);
}

.subject-icon {
    width: 65px;
    height: 65px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

.subject-content {
    position: relative;
    z-index: 2;
}
/* Custom Colors */
.bg-light-blue { background-color: #F0F8FF; }
.text-blue { color: #305CDE; }
.bg-soft-blue { background-color: #EBF8FF; }
.btn-light-soft { background-color: #f8f9fa; color: #305CDE; transition: 0.3s; }
.btn-light-soft:hover { background-color: #305CDE; color: white; }

/* Shadow Effect */
.shadow-blue { box-shadow: 0 10px 20px rgba(48, 92, 222, 0.2); }

/* Floating Animation for Badge */
.badge-float {
    animation: floatBadge 2s infinite ease-in-out;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Card Transitions */
.transition-card {
    transition: all 0.3s ease;
}

.transition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Offers Card Specific */
.offer-card { border-top: 4px solid transparent; }
.offer-card:hover { border-top-color: #305CDE; }

/* Review Card Specific */
.review-card { border: 1px solid #e0efff; }
/* Trust Section Styling */
.trust-section {
    min-height: 400px;
}

/* Stat Item Hover (Lifting Effect) */
.stat-item {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover {
    transform: translateY(-10px);
}

/* 3D Icon Box Spin Effect */
.stat-icon-box {
    transition: all 0.8s ease-in-out;
    perspective: 1000px; /* Essential for 3D look */
    transform-style: preserve-3d;
    cursor: pointer;
}

/* Jab pure item par hover ho toh icon spin kare */
.stat-item:hover .stat-icon-box {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.2) !important;
}

/* Counter Text Shadow */
.stat-item h3 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
/* Pricing Specific Styles */
.badge-rose {
    background-color: #ffe4e6;
    color: #e11d48;
    display: inline-block;
}

.border-bottom-faded {
    border-bottom: 1px solid #f1f5f9;
}

/* 3D Pricing Card Hover */
.pricing-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #e2e8f0 !important;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px -12px rgba(48, 92, 222, 0.2) !important;
    border-color: #305CDE !important;
}

/* Hover Scale Effect for Buttons */
.hover-scale {
    transition: transform 0.2s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
}

/* Pointer none for status buttons */
.pointer-none {
    pointer-events: none;
}

/* Shared utility for Blue Shadow */
.shadow-blue {
    box-shadow: 0 10px 15px -3px rgba(48, 92, 222, 0.3);
}
/* Step Number Styling */
.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 2px solid #305CDE;
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    z-index: 15;
    transition: all 0.3s ease;
}

/* Icon Wrapper Hover */
.step-icon-wrapper {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-container:hover .step-icon-wrapper {
    transform: translateY(-10px) scale(1.05);
}

.step-container:hover .step-number {
    background-color: #EBF8FF;
    transform: translateX(-50%) scale(1.2);
}

.step-img {
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

/* Arrow Positioning */
.step-arrow {
    position: absolute;
    right: -20%;
    top: 40%;
    width: 60px;
    z-index: 1;
}

/* Staggered Animation Effect */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Fix for small devices */
@media (max-width: 768px) {
    .step-container {
        margin-bottom: 50px;
    }
}
/* Footer Specific Styles */
.footer-wrapper {
    background-color: #305CDE;
}

.bg-blue-700 { background-color: #1e40af; }
.text-blue-100 { color: #dbeafe; }
.text-blue-200 { color: #bfdbfe; }
.border-white-10 { border-color: rgba(255, 255, 255, 0.1) !important; }

/* CTA Section */
.footer-cta {
    background-color: #305CDE;
}

.cta-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: brightness(0.5);
}

.btn-white {
    background-color: white;
    color: #305CDE;
    border: none;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    background-color: #f8f9fa;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Social Icons */
.social-icon {
    width: 38px;
    height: 38px;
    background-color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #2563eb;
    transform: translateY(-5px);
    color: white;
}

/* Links Hover Animation */
.footer-links li a {
    text-decoration: none;
    color: #dbeafe;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-list a:hover {
    color: #bfdbfe !important;
}

.z-index-10 { z-index: 10; }
.pointer { cursor: pointer; }


/* abouts */

/* About Hero Floating Image */
.float-anim {
    animation: floatAbout 6s infinite ease-in-out;
}

@keyframes floatAbout {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

/* Management Team Cards */
.member-card {
    margin-top: 60px; /* Space for the floating image */
    border: 1px solid #f1f5f9;
}

.member-img-wrapper {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    border: 5px solid white;
    border-radius: 50%;
    overflow: hidden;
    background: #e2e8f0;
}

.member-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transition-card {
    transition: all 0.4s ease;
}

.transition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
}

/* Typography Utility */
.tracking-wider { letter-spacing: 0.1em; }
/* Pricing Page Specific */
.pricing-page-wrapper {
    min-height: 100vh;
}

/* Vertical Divider Positioning */
.vertical-divider {
    position: absolute;
    left: 50%;
    top: 150px;
    bottom: 150px;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.6;
}

.vertical-divider img {
    height: 100%;
    object-fit: cover;
}

/* Floating Image Animation */
.pricing-float-img {
    max-width: 400px;
    transition: all 0.4s ease;
    animation: pricingFloat 4s infinite ease-in-out;
}

@keyframes pricingFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.pricing-float-img:hover {
    transform: scale(1.05) rotate(2deg) !important;
}

/* 3D Card Lift */
.pricing-table-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 5;
}

.pricing-table-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(48, 92, 222, 0.2) !important;
}

/* Badge and Utilities */
.badge-rose {
    background-color: #ffe4e6;
    color: #e11d48;
}

.no-pointer { pointer-events: none; }

/* Side Slide Animations */
.animate-side-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-side-right {
    animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}
/* Contact Page Styling */
.text-navy { color: #0E1D3E; }
.fw-extrabold { font-weight: 800; }

/* Icon Circle Styling */
.icon-circle {
    background: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.contact-hover-item:hover {
    transform: translateX(10px);
    transition: 0.3s ease;
}

.contact-hover-item:hover .icon-circle {
    transform: scale(1.1);
    background-color: #f0f7ff;
}

/* Custom Input Styling (React Focus effect) */
.custom-input {
    border: 1px solid #e2e8f0;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(48, 92, 222, 0.2);
    border-color: #305CDE;
}

/* Contact Form Card Float */
.contact-form-card {
    transition: all 0.4s ease;
}

/* .float-effect animation already defined in earlier steps will work here */

/* Uppercase tracking */
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.2em; }


/* testinomial */

/* 1. Testimonial Entry Animation (3D Effect) */
.perspective-1000 {
    perspective: 1000px;
}

.animate-3d-entry {
    opacity: 0;
    transform: translateY(100px) rotateX(-45deg) scale(0.5);
    animation: entry3D 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes entry3D {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0) scale(1);
    }
}

/* 2. Card Hover Effects */
.transition-3d-hover {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255,255,255,0.5) !important;
}

.transition-3d-hover:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
    z-index: 10;
}

/* 3. PREMIUM ROTATING BORDER RING */
.profile-container {
    position: relative;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rotating-border-ring {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #2563eb, #06b6d4, #fbbf24, #8b5cf6, #2563eb);
    animation: rotateRing 3s linear infinite;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
}

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

.profile-img-holder {
    position: relative;
    z-index: 2;
    background: white;
    padding: 3px;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    overflow: hidden;
}

.profile-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* 4. Quote Mark Style */
.font-serif {
    font-family: Georgia, 'Times New Roman', serif;
}

.text-blue-200 {
    color: #bfdbfe;
}


/* management */
/* Management Page Specific */
.bg-gray-50 { background-color: #f9fafb; }
.fw-extrabold { font-weight: 800; }

/* Avatar Container Styling */
.member-avatar-container {
    position: absolute;
    top: -80px; /* Floating on the top edge */
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    z-index: 10;
}

.member-avatar-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid white;
    overflow: hidden;
    background-color: #e5e7eb;
    transition: transform 0.4s ease;
}

.member-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* LinkedIn Badge */
.linkedin-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #0077b5;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0; /* Hidden by default */
    transition: all 0.3s ease;
}

/* Card Hover Effects */
.management-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 40px; /* Extra space for the avatar */
}

.management-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2) !important;
}

.management-card:hover .member-avatar-circle {
    transform: scale(1.08) rotate(2deg);
}

.management-card:hover .linkedin-badge {
    opacity: 1;
    transform: scale(1.1) rotate(10deg);
}

.management-card:hover .member-name {
    color: #305CDE;
}

/* Text Justify utility */
.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

/* blog */

/* Blog Card Image/Media Container */
.blog-media-container {
    height: 220px;
    background-color: #f1f5f9;
}

.blog-img, .blog-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover Effects */
.blog-card:hover .blog-img {
    transform: scale(1.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
}

.blog-title {
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #305CDE;
}

/* Video Overlay UI */
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.7;
    pointer-events: none;
    transition: opacity 0.3s;
}

.blog-card:hover .video-overlay {
    opacity: 0;
}

/* Custom rounded corners */
.rounded-4 { border-radius: 1.25rem !important; }

/* Transition Utility */
.transition-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* adminbanner */
/* Custom Inputs matching the screenshot */
.custom-input {
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 15px 20px;
    background-color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #305CDE;
    box-shadow: 0 0 0 4px rgba(48, 92, 222, 0.1);
}

/* Dashbed Upload Box Logic */
.upload-box {
    border: 2px dashed #305CDE;
    border-radius: 15px;
    padding: 20px;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fcfdff;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-box:hover {
    background: #f0f7ff;
    border-style: solid;
}

.icon-circle-blue {
    width: 60px;
    height: 60px;
    background: #ebf2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Professional Blue Button */
.btn-primary {
    background-color: #305CDE !important;
    border: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #1e40af !important;
    transform: translateY(-2px);
}

.shadow-blue {
    box-shadow: 0 10px 20px rgba(48, 92, 222, 0.2) !important;
}

/* Preview Image styling */
.img-preview {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: contain;
    background: white;
    padding: 10px;
    z-index: 5;
}

/* Breadcrumb styling */
.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
}

/* Blog Detail Specific Styles */
.max-w-1000 {
    max-width: 1000px;
    margin: 0 auto;
}

/* Glassmorphism Effect */
.bg-white-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* 3D Fade-in Animation */
.animate-fade-up {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: fadeUpDetail 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeUpDetail {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Back Button Styling */
.btn-back {
    color: #305CDE;
    transition: all 0.3s ease;
}

.btn-back:hover {
    transform: translateX(-5px);
    color: #1e40af;
}

/* Media Hover Zoom */
.media-container {
    cursor: pointer;
}

.detail-img {
    transition: transform 0.7s ease;
    object-fit: cover;
}

.media-container:hover .detail-img {
    transform: scale(1.05);
}

/* Rich Text Content Styling (Important for CKEditor) */
.blog-rich-text {
    line-height: 1.8;
}

.blog-rich-text p {
    margin-bottom: 1.5rem;
}

.blog-rich-text img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Heading Typography */
.fw-extrabold {
    font-weight: 800;
}


/* story */
/* Custom Light Blue Background */
.bg-light-blue { background-color: #F0F8FF; }

/* React-style Premium Cards */
.rounded-5 { border-radius: 2rem !important; }

.shadow-md {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05) !important;
}

/* Hover Lift Effect (Framer Motion replacement) */
.transition-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.transition-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(48, 92, 222, 0.15) !important;
}

/* Entry Animation */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Floating Badge Animation */
.badge-float {
    animation: floatBadge 3s infinite ease-in-out;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Utility */
.object-fit-cover { object-fit: cover; }
.shadow-blue { box-shadow: 0 10px 20px rgba(48, 92, 222, 0.2); }

/* footer */
/* Custom Blue Colors */
.bg-primary-custom { background-color: #305CDE; }
.text-blue-light { color: #dbeafe; font-size: 14px; }
.border-white-10 { border-color: rgba(255,255,255,0.1) !important; }

/* CTA Overlay */
.footer-cta-container { position: relative; min-height: 350px; display: flex; align-items: center; }
.cta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); }

/* Buttons */
.btn-white { background: white; color: #305CDE; border: none; transition: 0.3s; }
.btn-white:hover { background: #f8fafc; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

/* Main Footer List */
.footer-link-list li { margin-bottom: 12px; }
.footer-link-list li a { color: white; text-decoration: none; opacity: 0.8; transition: 0.3s; font-size: 15px; }
.footer-link-list li a:hover { opacity: 1; padding-left: 5px; }

/* Social Circles */
.social-circle {
    width: 35px; height: 35px; background: rgba(255,255,255,0.2); 
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; color: white; text-decoration: none; transition: 0.3s;
}
.social-circle:hover { background: white; color: #305CDE; transform: scale(1.1); }

/* FLOATING BUTTONS */
.floating-controls { position: fixed; bottom: 30px; right: 20px; z-index: 999; display: flex; flex-direction: column; gap: 15px; }
.wa-float { width: 55px; height: 55px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; text-decoration: none; }
.top-float { width: 45px; height: 45px; background: #305CDE; color: white; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; }

/* Utilities */
.z-index-10 { z-index: 10; }
.max-w-800 { max-width: 800px; }

/* Custom Blue Theme */
.bg-primary-custom { background-color: #305CDE; }
.text-blue-100 { color: #dbeafe; }
.border-bottom-faded { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.border-white-10 { border-color: rgba(255, 255, 255, 0.1) !important; }

/* Buttons */
.btn-white { background-color: white; color: #305CDE; border: none; transition: 0.3s; }
.btn-white:hover { transform: translateY(-3px); background-color: #f8fafc; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

/* Main Footer Lists */
.footer-list li { margin-bottom: 12px; }
.footer-list li a { color: white; text-decoration: none; opacity: 0.8; transition: 0.3s; font-size: 15px; display: inline-block; }
.footer-list li a:hover { opacity: 1; transform: translateX(5px); }

/* Social Icons */
.social-circle {
    width: 36px; height: 36px; background: rgba(255,255,255,0.1); 
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; color: white; text-decoration: none; transition: 0.3s;
}
.social-circle:hover { background: white; color: #305CDE; transform: scale(1.1); }

/* FLOATING BUTTONS (Exactly as screenshot) */
.fab-wrapper {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.fab-whatsapp {
    width: 55px; height: 55px; background: #25d366; 
    color: white; border-radius: 50%; display: flex; 
    align-items: center; justify-content: center; 
    font-size: 30px; text-decoration: none; transition: 0.3s;
}
.fab-top {
    width: 45px; height: 45px; background: #305CDE; 
    color: white; border: none; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 18px; cursor: pointer; transition: 0.3s;
}
.fab-whatsapp:hover, .fab-top:hover { transform: scale(1.1); }

/* Utility */
.z-index-10 { z-index: 10; }
.max-w-800 { max-width: 800px; }