/* ============================================
   Usun AI - Main Stylesheet
   ============================================ */

/* CSS Variables */
.navbar-logo{
    width:130px;
    height:auto;
    object-fit:contain;
}
/* Scroll Top Button */
.scroll-top-btn{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    background: #f87408;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    font-size: 18px;
    transition: 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-top-btn:hover{
    background: #2665a7;
    color: #fff;
    transform: translateY(-3px);
}

.scroll-top-btn.show{
    opacity: 1;
    visibility: visible;
}

/* ===================================
   Floating Social Media
=================================== */
.floating-social-media{
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);

    z-index: 9999;

    background: #ffffff;
    padding: 12px 10px;

    border-radius: 50px;

    display: flex;
    flex-direction: column;
    gap: 14px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Social Icons */
.floating-social-media a{
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 18px;

    transition: all 0.3s ease;

    color: #fff;
}

.floating-social-media a:hover{
    transform: scale(1.12);
}

/* Individual Colors */
.floating-social-media a:nth-child(1){
    background: #1877f2;
}

.floating-social-media a:nth-child(2){
    background: #25d366;
}

.floating-social-media a:nth-child(3){
    background: #ff0000;
}

.floating-social-media a:nth-child(4){
    background: linear-gradient(
        45deg,
        #f09433,
        #dc2743,
        #bc1888
    );
}

.floating-social-media a:nth-child(5){
    background: #0a66c2;
}

/* Mobile */
@media(max-width:768px){

    .floating-social-media{
        right: 10px;
        padding: 10px 8px;
    }

    .floating-social-media a{
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}








:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #0f0d0a;
    --bg-card-hover: #161310;
    --accent-primary: #f87408;
    --accent-secondary: #FFB84D;
    --accent-glow: rgba(245, 166, 35, 0.4);
    --accent-glow-soft: rgba(245, 166, 35, 0.15);
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --text-muted: #6B6B6B;
    --border-color: rgba(245, 166, 35, 0.15);
    --border-color-hover: rgba(245, 166, 35, 0.4);
    --gradient-orange: linear-gradient(135deg, #F5A623 0%, #FFB84D 100%);
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ============================================
   Base Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ============================================
   Background Effects
   ============================================ */

.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-glow::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow-soft) 0%, transparent 70%);
    filter: blur(80px);
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scale(1.1); }
}

/* ============================================
   Navbar
   ============================================ */

.main-navbar {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 12px 28px;
    position: sticky;
    top: 20px;

	
/*     transform: translateX(-50%);  */
    z-index: 1000;
    transition: all 0.4s ease;
    max-width: 92%;
	margin:0 auto !important;
}

.main-navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 8px 32px rgba(245, 166, 35, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary) !important;
}

.navbar-brand-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-brand-icon svg {
    width: 100%;
    height: 100%;
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 16px !important;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-primary) !important;
}

.contact-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 4px;
    color: var(--text-primary);
}

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

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F5A623' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   Hero Section
   ============================================ */



.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0 60px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 60%);
    filter: blur(60px);
    z-index: 0;
    animation: hero-pulse 6s ease-in-out infinite;
}

@keyframes hero-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 166, 35, 0.08);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 500;
}

.section-badge .icon {
    color: var(--accent-primary);
    font-size: 0.7rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.btn-primary-orange {
    background: var(--accent-primary);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.btn-primary-orange:hover {
    background: var(--accent-secondary);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-primary);
}

/* ============================================
   Trusted Brands
   ============================================ */

.trusted-brands {
    padding: 40px 0;
    text-align: center;
}

.trusted-text {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.brand-logos:hover {
    opacity: 0.8;
}

.brand-logo {
    height: 30px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   Section Headers
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Service Cards
   ============================================ */

.services-section {
    padding: 60px 0;
    position: relative;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(245, 166, 35, 0.1);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--accent-primary);
    color: #000;
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.read-more-link {
    color: var(--accent-primary);
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s ease;
}

.read-more-link:hover {
    color: var(--accent-secondary);
    gap: 8px;
}

.read-more-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more-link:hover::after {
    transform: translateX(3px);
}

/* ============================================
   Video/Image Showcase
   ============================================ */

.showcase-section {
    padding: 60px 0;
    position: relative;
}

.showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow-soft) 0%, transparent 70%);
    filter: blur(50px);
}

.showcase-logo {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.showcase-tagline {
    color: var(--text-secondary);
    margin-top: 12px;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   Process Section
   ============================================ */

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

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-3px);
}

.process-number {
    display: inline-block;
    background: rgba(245, 166, 35, 0.1);
    color: var(--accent-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.process-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.process-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ============================================
   Testimonials Section
   ============================================ */

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-3px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-info h6 {
    font-size: 0.9rem;
    margin-bottom: 2px;
    color: var(--accent-primary);
    font-weight: 600;
}

.testimonial-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

.video-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.video-thumb {
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: all 0.3s ease;
}

.video-thumb:hover {
    transform: scale(1.03);
    border-color: var(--accent-primary);
}

.video-thumb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.video-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.video-thumb:hover .play-icon {
    background: var(--accent-primary);
    transform: scale(1.1);
}

.video-thumb-1 { background: linear-gradient(135deg, #1a4a3a, #2a6a4a); }
.video-thumb-2 { background: linear-gradient(135deg, #4a2a1a, #6a4a2a); }
.video-thumb-3 { background: linear-gradient(135deg, #1a3a5a, #2a5a7a); }
.video-thumb-4 { background: linear-gradient(135deg, #5a1a3a, #7a2a5a); }

/* ============================================
   Case Studies Section
   ============================================ */

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

.case-study-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.case-study-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(245, 166, 35, 0.08);
}

.case-study-year {
    display: inline-block;
    background: rgba(245, 166, 35, 0.1);
    color: var(--accent-primary);
    padding: 4px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--accent-primary);
}

.case-study-category {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 16px;
    margin-bottom: 6px;
}

.case-study-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 16px;
}

.case-study-overview-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.case-study-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
}

.case-study-image {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--bg-secondary);
}

.case-study-image-placeholder {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-mock-insurance {
    background: linear-gradient(135deg, #1a3a4a 0%, #2a5a6a 100%);
}

.image-mock-property {
    background: linear-gradient(135deg, #2a3a4a 0%, #4a5a6a 100%);
}

.image-mock-realestate {
    background: linear-gradient(135deg, #1a2a3a 0%, #3a4a5a 100%);
}

.case-read-more {
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 500;
    float: right;
}

/* ============================================
   Benefits Section
   ============================================ */

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

.benefit-card {
    text-align: center;
    padding: 24px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #000;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-description {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ============================================
   About Section
   ============================================ */

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

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

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

.about-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 14px;
}

.about-card-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 180px;
    border-radius: 12px;
    object-fit: cover;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

/* ============================================
   Team Section
   ============================================ */

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

.team-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    aspect-ratio: 1;
    background: var(--accent-primary);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.2);
}

.team-photo {
    width: 100%;
    height: 75%;
    object-fit: cover;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.3);
    font-size: 4rem;
    font-weight: 700;
}

.team-info {
    padding: 16px;
    background: var(--bg-card);
    height: 25%;
    border-radius: 0 0 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.team-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.team-role {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.team-linkedin {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--accent-primary);
    font-size: 0.9rem;
}

/* ============================================
   Contact Form Section
   ============================================ */

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

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px;
}

.form-title {
    color: var(--accent-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-info-item {
    margin-bottom: 18px;
}

.contact-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.contact-value {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    background: transparent;
}

.social-icon:hover {
    background: var(--accent-primary);
    color: #000;
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.form-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-control {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: var(--bg-secondary);
    border-color: var(--accent-primary);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background: var(--accent-primary);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
}

.btn-submit-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit-outline:hover {
    background: var(--accent-primary);
    color: #000;
    border-color: var(--accent-primary);
}

/* ============================================
   FAQ Section
   ============================================ */

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-color-hover);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 18px 24px;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-toggle {
    color: var(--accent-primary);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 18px;
}

/* ============================================
   Blog Section
   ============================================ */

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

.blog-card {
   
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.1);
}


.blog-card-image a img{
	height:200px;
	max-width:100% !important;
}

.blog-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0,0,0,0.7);
    color: var(--accent-primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.blog-card-overlay-title {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.blog-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.blog-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
    flex: 1;
}

.blog-card-link {
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.blog-card-link:hover {
    color: var(--accent-secondary);
}

/* ============================================
   Footer
   ============================================ */

.footer-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin: 0 24px 24px;
    padding: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 12px;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-primary);
}

.footer-divider {
    border-top: 1px solid var(--border-color);
    margin: 24px 0;
}

.footer-contact-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 24px;
    text-align: center;
}

.footer-contact-box .label {
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.footer-contact-box .value {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 20px;
}

/* ============================================
   Floating Contact Button
   ============================================ */

.floating-contact {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
    animation: float 3s ease-in-out infinite;
    border: none;
    text-decoration: none;
}

.floating-contact:hover {
    transform: scale(1.1) rotate(15deg);
    background: var(--accent-secondary);
    color: #000;
}

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

/* ============================================
   Page Hero (For Other Pages)
   ============================================ */

.page-hero {
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
}

.page-hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   Animations
   ============================================ */

[data-aos] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"] {
    transform: translateX(40px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Staggered animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Voices of Success Marquee */
.voices-section {
    padding: 60px 0 80px;
    overflow: hidden;
    position: relative;
}

.voices-track {
    display: flex;
    gap: 20px;
    animation: scroll-x 30s linear infinite;
    will-change: transform;
}

@keyframes scroll-x {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.voice-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    min-width: 320px;
    flex-shrink: 0;
}

.voice-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.voice-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    flex-shrink: 0;
}

.voice-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 2px;
}

.voice-title {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.voice-text {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.6;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 991px) {
    .main-navbar {
        padding: 12px 20px;
        max-width: 92%;
		   right: -102px
		
    }
    
    .navbar-collapse {
        margin-top: 16px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 16px !important;
    }
    
    .hero-section {
        padding: 120px 0 40px;
    }
    
    .video-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .service-card,
    .case-study-card,
    .contact-form-card {
        padding: 20px;
    }
    
    .video-thumbnails {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        padding: 24px;
        margin: 0 12px 12px;
    }
    
    .brand-logos {
        gap: 24px;
    }
    
    .floating-contact {
        width: 48px;
        height: 48px;
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-primary-orange {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}

/* Utility Classes */
.text-orange { color: var(--accent-primary); }
.bg-card { background: var(--bg-card); }
.position-relative-z { position: relative; z-index: 2; }

/* ============================================
   Blog Grid Page
   ============================================ */

.blog-grid-section {
    padding: 40px 0 100px;
    position: relative;
}

.blog-card-overlay-sub {
    position: absolute;
    bottom: 60px;
    left: 16px;
    right: 16px;
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.blog-pill {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0,0,0,0.8);
    color: var(--accent-primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 166, 35, 0.3);
}

.orange-square {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 2px;
    margin-right: 4px;
    vertical-align: middle;
}

.blog-card-image {
    min-height: 220px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px;
}

.blog-card-overlay-title {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 40px;
    margin-bottom: 8px;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 700;
}

@media (max-width: 767px) {
    .blog-card-image {
        min-height: 180px;
    }
    .blog-card-overlay-title {
        font-size: 1rem;
        margin-top: 32px;
    }
    .blog-grid-section {
        padding: 20px 0 60px;
    }
}




.trusted-brands{
    padding:30px 0;
    overflow:hidden;
}

.trusted-text{
    text-align:center;
    font-size:18px;
    margin-bottom:40px;
    color:#888;
}

.brand-logo{
    height:110px;
    /*background:#fff;*/
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
    transition:.3s;
    border:1px solid rgba(255,255,255,.08);
}

.brand-logo:hover{
    transform:translateY(-5px);
}

.brand-logo img{
    max-width:100px;
    max-height:50px;
    object-fit:contain;
   filter:grayscale(10%);
    opacity:.8;
    transition:.3s; 
}

.brand-logo:hover img{
    filter:none;
    opacity:1;
}



.testimonial-card {

    padding: 20px;
    border-radius: 12px;
    height: 100%;
}

.testimonial-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}





.blog-details-section{
    gap:20px;
    align-items:center;
}

.blog-author-box img{
    border-radius:50%;
}

.author-content h4{
    color:#fff;
    margin-bottom:10px;
}

.author-content p{
    color:#cbd5e1;
    margin:0;
}

.related-posts{
    background:#020617;
}

.section-heading h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
}

.related-card{
    background:#111827;
    border-radius:24px;
    overflow:hidden;
    height:100%;
}

.related-card img{
    height:240px;
    object-fit:cover;
}

.related-card-content{
    padding:25px;
}

.related-date{
    color:#94a3b8;
    margin-bottom:12px;
}

.related-card h3{
    font-size:22px;
    line-height:1.5;
}

.related-card h3 a{
    color:#fff;
    text-decoration:none;
}

.read-more-btn{
    display:inline-block;
    margin-top:18px;
    color:#f59e0b;
    text-decoration:none;
    font-weight:600;
}

@media(max-width:767px){

    .blog-details-title{
        font-size:34px;
    }

    .blog-details-image img{
        height:260px;
    }

    .blog-author-box{
        flex-direction:column;
        text-align:center;
    }

}















