/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* Custom Homepage Variables */
:root {
    --vt-primary: #0F62FE;
    --vt-primary-hover: #0a4dcc;
    --vt-dark: #050b14;
    --vt-dark-lighter: #09111f;
    --vt-gradient: linear-gradient(135deg, #0F62FE 0%, #00D4FF 100%);
    --vt-glass: rgba(255, 255, 255, 0.05);
    --vt-glass-border: rgba(255, 255, 255, 0.1);
}

html, body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img.d-none.d-md-block.animation-float.rounded-circle {
    position: absolute;
    top: -24px;
    left: -170px;
    width: 16%;
    overflow: visible !important;
}

.display-3 {
    font-size: 3.2rem !important;
}

.aos-animate p.fst-italic.text-muted.mb-4.position-relative.z-1.small {
    margin-left: 64px;
}

/* Utilities */
.text-gradient {
    background: var(--vt-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-premium {
    background: var(--vt-gradient);
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(15, 98, 254, 0.3);
    transition: all 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 98, 254, 0.5);
}

.transition-all { transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
.transition-transform { transition: transform 0.5s ease; }
.duration-500 { transition-duration: 0.5s; }
.hover-lift:hover { transform: translateY(-5px); }
.hover-scale:hover { transform: scale(1.05); }
.min-h-350 { min-height: 300px; }
.letter-spacing-1 { letter-spacing: 1px; }

/* Group Hover Utilities */
.group:hover .group-hover-scale { transform: scale(1.08); }
.group:hover .group-hover-opacity-100 { opacity: 1 !important; }
.group:hover .group-hover-text-primary { color: var(--vt-primary) !important; }

/* Hero Section */
.hero-section {
    background-color: #00051a;
    min-height: 100vh;
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.4;
}

.glow-1 {
    top: -10%; left: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(15,98,254,0.3) 0%, rgba(5,11,20,0) 70%);
}

.glow-2 {
    bottom: -20%; right: -10%;
    width: 40vw; height: 40vw;
    background: radial-gradient(circle, rgba(0,212,255,0.2) 0%, rgba(5,11,20,0) 70%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-glass {
    background: rgba(9, 17, 31, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating Elements Positions */
.google-rating { top: 10%; right: 5%; animation: float 6s ease-in-out infinite; }
.roi-card { top: 15%; left: 10%; animation: float 7s ease-in-out infinite reverse; }
.leads-card { bottom: 15%; left: -5%; animation: float 8s ease-in-out infinite 1s; }

/* Stats Row overlap */
.stats-section {
    margin-top: -60px; /* Pulls the section up over the hero */
}

/* Brands Section */
.brands-wrapper img {
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
}
.brands-wrapper img:hover {
    filter: grayscale(0%);
}

/* CTA Gradient */
.cta-gradient-overlay {
    background: linear-gradient(90deg, #0f62fe 0%, #000417 100%);
    opacity: 1;
}

.animation-float { animation: float 4s ease-in-out infinite; }

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}


/* ============================
   Premium Case Study Cards
============================ */

.case-card{
    height:350px;
    border-radius:22px;
    overflow:hidden;
    background:#111827;
    transition:.45s ease;
    cursor:pointer;
}

.case-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:all .6s ease;
    opacity:.95;
    filter:
        brightness(.92)
        contrast(1.08)
        saturate(1.15);
}

/* Premium Overlay */
.case-card .overlay{
    background:linear-gradient(
        to top,
        rgba(6,10,18,.78) 0%,
        rgba(6,10,18,.45) 38%,
        rgba(6,10,18,.10) 100%
    );
    transition:.4s ease;
}

/* Hover Effect */
.case-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 25px 60px rgba(15,98,254,.22),
        0 10px 30px rgba(0,0,0,.35);
}

.case-card:hover img{
    transform:scale(1.08);
    filter:
        brightness(1.05)
        contrast(1.12)
        saturate(1.3);
}

.case-card:hover .overlay{
    background:linear-gradient(
        to top,
        rgba(6,10,18,.60) 0%,
        rgba(6,10,18,.28) 45%,
        rgba(6,10,18,0) 100%
    );
}

/* Glass Border */
.case-card{
    border:1px solid rgba(255,255,255,.08);
}

.case-card:hover{
    border-color:rgba(15,98,254,.55);
}

/* Text */
.case-card h6{
    color:#fff;
    opacity:1;
    font-weight:700;
    font-size:20px;
}

.case-card .small{
    color:rgba(255,255,255,.88)!important;
}

.case-card .text-success{
    color:#19d17b!important;
    text-shadow:0 0 15px rgba(25,209,123,.25);
}

/* Button */
.case-card .icon-circle{
    width:46px!important;
    height:46px!important;
    background:linear-gradient(135deg,#0F62FE,#00D4FF)!important;
    transition:.35s;
    box-shadow:0 10px 25px rgba(15,98,254,.35);
}

.case-card:hover .icon-circle{
    transform:translateX(4px);
    box-shadow:0 15px 35px rgba(15,98,254,.55);
}

/* =====================================================
   RESPONSIVE CSS
======================================================*/

/************* Large Laptop *************/
@media (max-width:1400px){

.display-3{
    font-size:3rem!important;
}

.hero-section{
    min-height:900px;
}

.google-rating{
    right:2%;
}

.roi-card{
    left:2%;
}

}


/************* Laptop *************/
@media (max-width:1200px){

.display-3{
    font-size:2.7rem!important;
}

.hero-section{
    min-height:850px;
}

.hero-bullets .col-sm-6{
    font-size:15px;
}

.case-card{
    height:320px;
}

.min-h-350{
    min-height:270px;
}

.process-step{
    width:65px!important;
    height:65px!important;
}

}


/************* Tablet *************/
@media (max-width:991px){

.hero-section{
    min-height:auto;
    padding:110px 0 70px;
    text-align:center;
}

.display-3{
    font-size:2.45rem!important;
    line-height:1.25!important;
}

.hero-section p.fs-5{
    font-size:17px!important;
    padding-right:0!important;
}

.hero-bullets{
    text-align:left;
    max-width:500px;
    margin:auto;
}

.hero-bullets .col-sm-6{
    margin-bottom:12px;
}

.hero-section .d-flex.flex-wrap{
    justify-content:center;
}

.hero-visuals{
    display:none!important;
}

.stats-section{
    margin-top:10;
}

.stats-row{
    transform:none!important;
}

.stats-row>div{
    border-right:none!important;
    border-bottom:1px solid #eee;
}

.stats-row>div:nth-last-child(-n+2){
    border-bottom:none;
}

.case-card{
    height:340px;
}

.case-studies-section .display-6{
    font-size:2rem;
}

.case-studies-section .d-flex{
    flex-direction:column;
    align-items:flex-start!important;
    gap:20px;
}

.process-line{
    display:none!important;
}

.process-step{
    width:70px!important;
    height:70px!important;
}

.reviews-contact-section .row>div{
    margin-bottom:25px;
}

.blog-section .row>div{
    margin-bottom:35px;
}

.cta-section{
    text-align:center;
}

.cta-section .row{
    gap:30px;
}

.cta-section .justify-content-lg-end{
    justify-content:center!important;
}

img.d-none.d-md-block.animation-float.rounded-circle{
    display:none!important;
}

}


/************* Mobile *************/
@media (max-width:767px){

.display-3{
    font-size:3rem!important;
    text-align: left;
}

.display-6{
    font-size:1.8rem!important;
}

.hero-section{
    padding-top:30px;
}

.hero-section p.fs-5{
    font-size:16px!important;
}

.hero-bullets{
    margin-top:20px;
}

.hero-bullets .col-sm-6{
    width:100%;
    text-align:left;
}

.hero-section .btn{
    width:100%;
    margin-bottom:12px;
}

.hero-section .d-flex.flex-wrap{
    display:block!important;
}

.stats-row{
    padding:20px!important;
}

.stats-row h3{
    font-size:26px;
}

.stats-row p{
    font-size:13px;
}

.service-card{
    padding:35px 25px!important;
}

.case-card{
    height:300px;
}

.case-card h6{
    font-size:18px;
}

.case-card .text-success{
    font-size:32px!important;
}

.case-card .content{
    padding:25px!important;
}

.process-step{
    width:65px!important;
    height:65px!important;
}

.process-step i{
    font-size:22px!important;
}

.process-section h6{
    font-size:15px;
}

.process-section small{
    font-size:12px!important;
}

.blog-card img{
    height:220px!important;
}

.blog-card h6{
    font-size:18px;
}

.cta-section h3{
    font-size:28px;
}

.cta-section .btn{
    width:100%;
    justify-content:center;
}

footer .row{
    text-align:center;
}

footer .col-lg-3,
footer .col-lg-2{
    margin-bottom:35px;
}

}


/************* Small Mobile *************/
@media (max-width:575px){

.container{
    padding-left:18px;
    padding-right:18px;
}

.display-3{
    font-size:1.75rem!important;
}

.display-6{
    font-size:1.6rem!important;
}

.hero-section p.fs-5{
    font-size:15px!important;
}

.icon-wrapper{
    width:65px!important;
    height:65px!important;
}

.icon-wrapper i{
    font-size:28px!important;
}

.service-card h5{
    font-size:20px;
}

.service-card p{
    font-size:14px;
}

.case-card{
    height:280px;
}

.case-card .content{
    padding:20px!important;
}

.case-card .icon-circle{
    width:42px!important;
    height:42px!important;
}

.reviews-contact-section img{
    width:55px;
    height:55px;
}

.blog-card img{
    height:200px!important;
}

.cta-section h3{
    font-size:24px;
}

.cta-section p{
    font-size:14px;
}

.cta-section .btn{
    font-size:14px;
}

}


/************* Ultra Small *************/
@media (max-width:380px){

.display-3{
    font-size:1.55rem!important;
}

.hero-section .btn{
    padding:14px 20px!important;
    font-size:15px;
}

.stats-row h3{
    font-size:22px;
}

.case-card{
    height:260px;
}

.case-card h6{
    font-size:17px;
}

.case-card .text-success{
    font-size:28px!important;
}

}