/* RESET & GLOBAL VARIABLES */
:root {
    --primary: #030712;
    --primary-light: #0b1528;
    --secondary: #2563eb;
    --secondary-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --accent: #60a5fa;
    --gold: #f59e0b;
    --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --text-dark: #111827;
    --text-light: #4b5563;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --font-family: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(37, 99, 235, 0.1);
    --shadow-lg: 0 20px 50px -12px rgba(37, 99, 235, 0.15);
    --radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* HOVER INTERACTION OVERRIDES */
.interaction-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.interaction-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg) !important;
}

/* TYPOGRAPHY COMPONENTS */
h1, h2, h3, h4 {
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.6rem; }

.sub-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    background: rgba(37, 99, 235, 0.08);
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 16px;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold) !important; }
.text-blue { color: var(--secondary) !important; }

/* RE-ENGINEERED BUTTONS WITH GLOW */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary { background: var(--secondary-gradient); color: var(--bg-white); }
.btn-glow:hover { box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4); transform: translateY(-2px); }
.btn-secondary { background-color: #eff6ff; color: var(--secondary); }
.btn-secondary:hover { background-color: #dbeafe; transform: translateY(-2px); }
.btn-gold { background: var(--gold-gradient); color: var(--primary); }
.btn-gold.btn-glow:hover { box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4); }

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    color: var(--bg-white);
}
.btn-outline-white:hover { background-color: var(--bg-white); color: var(--primary); }

/* STICKY NAVBAR */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(243, 244, 246, 0.6);
    padding: 14px 0;
    transition: all 0.3s ease;
}

.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); letter-spacing: -0.03em; }
.logo-icon { color: var(--secondary); animation: pulseGlow 3s infinite; }

.nav-links { display: flex; gap: 36px; font-weight: 600; font-size: 0.95rem; }
.nav-links a { color: var(--text-light); position: relative; padding: 6px 0; }
.nav-links a:hover, .nav-links a.active { color: var(--secondary); }
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background-color: var(--secondary); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 28px; }
.nav-phone { font-weight: 700; color: var(--primary); font-size: 0.95rem; }

/* HERO SECTIONS WITH GLOW SPHREES */
.hero-section { padding: 100px 0 120px 0; position: relative; background: #ffffff; }
.hero-bg-blur-1 { position: absolute; top: -10%; right: 5%; width: 400px; height: 400px; background: rgba(96, 165, 250, 0.15); filter: blur(100px); border-radius: 50%; z-index: 0; }
.hero-bg-blur-2 { position: absolute; bottom: 10%; left: -5%; width: 300px; height: 300px; background: rgba(245, 158, 11, 0.08); filter: blur(90px); border-radius: 50%; z-index: 0; }
.hero-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; z-index: 1; }

.badge { background-color: #eff6ff; border: 1px solid #dbeafe; color: var(--secondary); padding: 8px 18px; border-radius: 30px; display: inline-flex; font-weight: 700; font-size: 0.85rem; margin-bottom: 24px; }
.hero-content h1 span { background: linear-gradient(120deg, #1d4ed8, #3b82f6); color: transparent; -webkit-background-clip: text; background-clip: text;}
.hero-content p { color: var(--text-light); font-size: 1.2rem; margin-bottom: 36px;  }
.hero-buttons { display: flex; gap: 18px; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 28px; color: var(--text-light); font-size: 0.9rem; font-weight: 600; }

.hero-image-container { position: relative; }
.hero-img-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.08); border: 1px solid rgba(226, 232, 240, 0.8); }
.hero-main-img { width: 100%; display: block; }

.hero-card-floating { position: absolute; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 18px 24px; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.6); box-shadow: 0 20px 40px rgba(0,0,0,0.06); display: flex; align-items: center; gap: 14px; z-index: 2; }
.top-float { top: -24px; left: -30px; }
.bottom-float { bottom: 24px; right: -20px; font-weight: 700; font-size: 0.95rem; }
.float-icon { background: var(--secondary-gradient); color: white; padding: 12px; border-radius: 12px; font-size: 1.2rem; }

/* PREMIUM STATS BAR */
.stats-bar { padding: 50px 0; background-color: #0b1329; color: white; position: relative; z-index: 2; }
.stats-container { display: flex; justify-content: space-between; align-items: center; }
.stat-item h3 { font-size: 2.8rem; background: linear-gradient(120deg, #60a5fa, #93c5fd); color: transparent; -webkit-background-clip: text; background-clip: text; margin-bottom: 6px; }
.stat-item p { color: #94a3b8; font-weight: 600; font-size: 0.95rem; }
.stat-divider { width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.15), rgba(255,255,255,0)); }

/* INTERACTIVE SERVICES GRID */
.services-section { padding: 120px 0; background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); }
.section-header h2 { font-size: 2.6rem; margin-bottom: 18px; margin-top: 10px; }
.section-header p { color: var(--text-light); font-size: 1.1rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }

.service-card { background-color: var(--bg-white); border: 1px solid #f1f5f9; padding: 48px 36px; border-radius: var(--radius); box-shadow: var(--shadow-sm); position: relative; }
.service-card:hover { border-color: #93c5fd; }
.service-icon-box { width: 60px; height: 60px; background: #eff6ff; color: var(--secondary); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 28px; transition: all 0.3s ease; }
.service-card:hover .service-icon-box { background: var(--secondary-gradient); color: white; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.service-card p { color: var(--text-light); margin-bottom: 28px; font-size: 1.1rem; }
.service-link { color: var(--secondary); font-weight: 700; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px; }

/* STRATEGY & CREATIVITY */
.strategy-section { padding: 120px 0; background-color: #ffffff; }
.strategy-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.strategy-left { position: relative; }
.image-overlay-glow { position: absolute; inset: -20px; background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%); z-index: 0; }
.strategy-img { border-radius: var(--radius); position: relative; z-index: 1; width: 100%; display: block; }
.floating-badge-team { position: absolute; bottom: 24px; right: 24px; z-index: 2; padding: 14px 28px; font-weight: 700; font-size: 0.95rem; }

.strategy-right h2 { margin-bottom: 24px; }
.strategy-right > p { color: var(--text-light); margin-bottom: 48px; font-size: 1.04rem; }
.strategy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mini-icon { font-size: 1.4rem; color: var(--secondary); margin-bottom: 14px; }
.strategy-card h4 { margin-bottom: 8px; font-size: 1.1rem; }
.strategy-card p { color: var(--text-light); font-size: 0.9rem; }

/* HIRE THE BEST SECTION */
.hire-section { padding: 120px 0; background-color: #f8fafc; }
.hire-container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.hire-left h2 { margin-bottom: 24px; font-size: 2.5rem; }
.hire-left p { color: var(--text-light); margin-bottom: 36px; font-size: 1rem; font-weight: 500; }
.hire-list li { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; font-weight: 600; list-style: none; }
.hire-list li i { color: #10b981; font-size: 1.1rem; }

.gradient-blue-box { background: linear-gradient(135deg, #1e40af 0%, #031b4e 100%); border-radius: 24px; padding: 60px; position: relative; overflow: hidden; }
.box-glow-effect { position: absolute; top: -50px; left: -50px; width: 200px; height: 200px; background: rgba(96, 165, 250, 0.3); filter: blur(60px); border-radius: 50%; }
.upward-arrow-graphic { position: absolute; bottom: 20px; left: 20px; font-size: 6rem; color: rgba(255,255,255,0.04); pointer-events: none; }
.mockup-laptop img { border-radius: 12px; box-shadow: 0 25px 60px rgba(0,0,0,0.3); width: 100%; display: block; }

/* TESTIMONIALS (GLASSMORPHISM) */
.testimonials-section { padding: 120px 0; background-color: #030712; position: relative; }
.testimonials-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.glass-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.07); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: var(--radius); }

.testimonial-card { padding: 48px 40px; }
.stars { color: var(--gold); margin-bottom: 24px; font-size: 0.9rem; display: flex; gap: 4px; }
.testimonial-card p { font-size: 1.05rem; color: #cbd5e1; margin-bottom: 36px; line-height: 1.7; }
.client-info { display: flex; align-items: center; gap: 16px; }
.client-avatar { width: 52px; height: 52px; background: var(--secondary-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: white; font-size: 1.05rem; }
.client-info h4 { color: white; font-size: 1.1rem; margin-bottom: 2px; }
.client-info p { color: #64748b; font-size: 0.85rem; margin-bottom: 0; }

/* RESOURCE HUB (BLOG) */
.blog-section { padding: 120px 0; }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.blog-card { background-color: #ffffff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid #f1f5f9; }
.blog-img-box { overflow: hidden; }
.blog-img-box img { width: 100%; height: 230px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.blog-card:hover .blog-img-box img { transform: scale(1.06); }
.blog-content { padding: 32px; }
.blog-tag { background-color: #eff6ff; color: var(--secondary); padding: 4px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 18px; display: inline-block; }
.blog-content h3 { font-size: 1.2rem; margin-bottom: 14px; line-height: 1.4; }
.blog-content p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 24px; }
.blog-link { color: var(--primary); font-weight: 800; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 6px; }

/* REFINED PREMIUM METRIC CTA BANNER */
.cta-section { padding: 40px 0 120px 0; background-color: var(--bg-white); }
.cta-box { border-radius: 32px; padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
.animated-gradient-bg { background: linear-gradient(135deg, #020617 0%, #0b1e43 50%, #030712 100%); }
.cta-glow { position: absolute; bottom: -120px; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 70%); pointer-events: none; }
.cta-box h2 { color: white; font-size: 3rem; margin-bottom: 20px; }
.cta-box p { color: #94a3b8; max-width: 650px; margin: 0 auto 40px auto; font-size: 1.1rem; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; }

/* NEWSLETTER STRIP */
.newsletter-section { padding: 60px 0; background-color: #040a18; color: white; border-bottom: 1px solid rgba(255,255,255,0.04); }
.newsletter-container { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.newsletter-left h3 { color: white; font-size: 1.5rem; margin-bottom: 8px; }
.newsletter-left p { color: #94a3b8; font-size: 0.95rem; }
.newsletter-right { width: 100%; max-width: 450px; }
.newsletter-form { display: flex; background: rgba(255,255,255,0.05); padding: 6px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.1); }
.newsletter-form input { flex: 1; background: transparent; border: none; padding: 0 20px; color: white; font-family: var(--font-family); font-size: 0.95rem; }
.newsletter-form input:focus { outline: none; }

/* TECH FOOTER BLOCK */
.footer { background-color: #020617; color: #94a3b8; padding: 100px 0 0 0; font-size: 0.95rem; }
.footer-container { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 64px; margin-bottom: 80px; }
.light-logo { color: white; margin-bottom: 24px; font-size: 1.5rem; }
.footer-col-main p { margin-bottom: 24px; line-height: 1.7; font-size: 0.9rem; }

.social-icons { display: flex; gap: 12px; }
.social-icons a { width: 40px; height: 40px; background-color: rgba(255,255,255,0.03); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; border: 1px solid rgba(255,255,255,0.05); }
.social-icons a:hover { background: var(--secondary-gradient); border-color: transparent; }

.footer-col h4 { color: white; margin-bottom: 24px; font-size: 1.05rem; font-weight: 700; }
.footer-col a { display: block; margin-bottom: 12px; color: #94a3b8; font-size: 0.9rem; }
.footer-col a:hover { color: white; transform: translateX(3px); }
.footer-col p { margin-bottom: 14px; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 32px 0; }
.footer-bottom-container { display: flex; justify-content: space-between; font-size: 0.85rem; color: #64748b; }
.footer-bottom-links a { margin-left: 24px; }
.footer-bottom-links a:hover { color: white; }

/* KEYFRAME PULSE */
@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

/* RESPONSIVE LAYOUT MEDIA QUERIES */
@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    .hero-container, .strategy-container, .hire-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .hero-content p { margin: 20px auto 30px auto; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .services-grid, .testimonials-slider, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
    .newsletter-container { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .services-grid, .testimonials-slider, .blog-grid, .footer-container { grid-template-columns: 1fr; }
    .nav-links, .nav-phone { display: none; }
    .stats-container { flex-direction: column; gap: 32px; text-align: center; }
    .stat-divider { display: none; }
    .hero-buttons, .cta-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
}


.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-weight:500;
}

/* Dropdown */
.dropdown{
    position:relative;
}

.dropdown > a{
    display:flex;
    align-items:center;
    gap:6px;
}

.dropdown-menu{
    position:absolute;
    top:120%;
    left:0;
    min-width:220px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    padding:10px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s ease;
    z-index:999;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu a{
    display:block;
    padding:12px 20px;
    color:#333;
    transition:.3s;
    white-space:nowrap;
}

.dropdown-menu a:hover{
    background:#f5f5f5;
    color:#0d6efd;
    padding-left:28px;
}

.dropdown:hover .fa-chevron-down{
    transform:rotate(180deg);
    transition:.3s;
}






/*=========================
 HERO IMAGE SECTION
==========================*/

.hero-image-container{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.dashboard-wrapper{
    position:relative;
    width:620px;
    animation:floatDashboard 6s ease-in-out infinite;
}

.dashboard-img{
    width:100%;
    border-radius:35px;
    display:block;
    box-shadow:
    0 25px 70px rgba(0,0,0,.28),
    0 0 50px rgba(59,130,246,.20);
    transition:.45s;
}

.dashboard-img:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:
    0 40px 80px rgba(0,0,0,.35),
    0 0 60px rgba(59,130,246,.30);
}

/*=========================
 GLASS CARD
==========================*/

.glass-card{

    position:absolute;

    width:160px;

    background:rgba(255,255,255,.78);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.35);

    border-radius:24px;

    padding:12px;

    display:flex;

    align-items:center;

    gap:15px;

    transition:.4s;

    box-shadow:

    0 18px 40px rgba(0,0,0,.15);

}

.glass-card:hover{

    transform:translateY(-12px) scale(1.05);

    box-shadow:

    0 35px 70px rgba(0,0,0,.20);

}

/*=========================
 ICONS
==========================*/

.icon-box{

    width:40px;

    height:40px;

    border-radius:12px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:16px;

    flex-shrink:0;

}

.blue{

    background:#2563eb;

}

.green{

    background:#16a34a;

}

.orange{

    background:#ea580c;

}

.purple{

    background:#7c3aed;

}

/*=========================
 CARD TEXT
==========================*/

.card-text h4{

    margin:0;

    font-size:12px;

    color:#666;

    font-weight:600;

}

.card-text span{

    display:block;

    margin-top:6px;

    font-size:20px;

    color:#0f172a;

    font-weight:800;

}

/*=========================
 CARD POSITION
==========================*/

.card-one{

    top:-35px;

    left:-70px;

}

.card-two{

    top:160px;

    right:-70px;

}

.card-three{

    bottom:40px;

    left:-90px;

}

.card-four{

    bottom:-45px;

    right:-55px;

}

/*=========================
 FLOAT
==========================*/

@keyframes floatDashboard{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}




/*=====================================
 PREMIUM FLOATING ANIMATION
======================================*/

.card-one{
    animation: floatOne 4s ease-in-out infinite;
}

.card-two{
    animation: floatTwo 5s ease-in-out infinite;
}

.card-three{
    animation: floatThree 4.8s ease-in-out infinite;
}

.card-four{
    animation: floatFour 5.5s ease-in-out infinite;
}

@keyframes floatOne{
    0%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0);}
}

@keyframes floatTwo{
    0%{transform:translateY(0);}
    50%{transform:translateY(18px);}
    100%{transform:translateY(0);}
}

@keyframes floatThree{
    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}

@keyframes floatFour{
    0%{transform:translateY(0);}
    50%{transform:translateY(15px);}
    100%{transform:translateY(0);}
}

/*=====================================
 HOVER EFFECT
======================================*/

.glass-card{
    overflow:hidden;
    cursor:pointer;
}

.glass-card::before{
    content:"";
    position:absolute;
    top:-100%;
    left:-60%;
    width:60%;
    height:250%;
    background:rgba(255,255,255,.35);
    transform:rotate(25deg);
    transition:.8s;
}

.glass-card:hover::before{
    left:140%;
}

.glass-card:hover{

    transform:translateY(-18px) scale(1.06);

    box-shadow:
    0 30px 60px rgba(0,0,0,.20),
    0 0 35px rgba(37,99,235,.35);

}

/*=====================================
 IMAGE GLOW
======================================*/

.dashboard-wrapper::before{

content:"";

position:absolute;

left:50%;

top:50%;

width:85%;

height:85%;

transform:translate(-50%,-50%);

background:radial-gradient(circle,
rgba(59,130,246,.35),
transparent 70%);

filter:blur(45px);

z-index:-1;

}

/*=====================================
 IMAGE HOVER
======================================*/

.dashboard-img{

transition:.5s ease;

}

.dashboard-wrapper:hover .dashboard-img{

transform:scale(1.02);

}

/*=====================================
 ICON HOVER
======================================*/

.icon-box{

transition:.4s;

}

.glass-card:hover .icon-box{

transform:rotate(10deg) scale(1.12);

}

/*=====================================
 TEXT EFFECT
======================================*/

.card-text span{

transition:.3s;

}

.glass-card:hover .card-text span{

color:#2563eb;

}

/*=====================================
 RESPONSIVE
======================================*/

@media(max-width:992px){

.dashboard-wrapper{

width:100%;

max-width:520px;

}

.glass-card{

width:180px;

padding:15px;

}

.card-text span{

font-size:24px;

}

}

@media(max-width:768px){

.card-one{

left:-15px;

top:-20px;

}

.card-two{

right:-15px;

}

.card-three{

left:-15px;

}

.card-four{

right:-15px;

bottom:-25px;

}

.glass-card{

width:150px;

padding:12px;

}

.card-text h4{

font-size:13px;

}

.card-text span{

font-size:20px;

}

.icon-box{

width:45px;

height:45px;

font-size:18px;

}

}

@media(max-width:576px){

.glass-card{

display:none;

}

.dashboard-wrapper{

width:100%;

}

}














.card-one{
    top:-20px;
    left:-40px;
}

.card-two{
    top:130px;
    right:-35px;
}

.card-three{
    bottom:20px;
    left:-45px;
}

.card-four{
    bottom:-20px;
    right:-35px;
}








.stats-section{
    padding:50px 0;
    background:#fff;      /* Page ka background */
}

.stats-bar{
    max-width:1200px;     /* Apne container ke equal */
    margin:0 auto;
    background:#0b1329;
    border-radius:20px;
    padding:50px 40px;
}

.stats-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}



/* ==========================================================================
   New Testimonial Section Custom Styling 
   ========================================================================== */

.testimonials-section {
    background-color: #0b1936; /* Dark Blue matching your theme */
    padding: 80px 0;
    width: 100%;
}

.testimonials-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Individual Card Styling */
.custom-testimonial-card {
    background-color: #122247; /* Lighter container box fill */
    border: 1px solid #1c315e;
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.custom-testimonial-card:hover {
    transform: translateY(-5px);
}

/* Quote Icon Element */
.custom-quote-icon {
    font-size: 45px;
    line-height: 1;
    color: #fad945; /* Matches your landing page yellow (#fad945) */
    font-family: serif;
    font-weight: 900;
    transform: rotate(180deg);
    display: inline-block;
    margin-bottom: 10px;
}

/* Stars design */
.custom-stars {
    color: #fad945;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* Card Feedback Text */
.custom-feedback {
    font-size: 15px;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 30px;
    font-weight: 400;
}

/* User Identity Section */
.custom-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

/* User Circular Character Icon */
.custom-avatar {
    width: 45px;
    height: 45px;
    background-color: #e5ad43;
    color: #0b1936;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
}

.custom-details h4 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.custom-details span {
    font-size: 12px;
    color: #8a99ad;
}

/* Responsive Handling */
@media (max-width: 768px) {
    .testimonials-cards-container {
        flex-direction: column;
        align-items: center;
    }
    .custom-testimonial-card {
        width: 100%;
    }
}