/* =========================
   ROOT VARIABLES
========================= */
:root {
    --primary: #e60000;
    --dark: #0f172a;
    --text: #334155;
    --bg: #f8fafc;
    --white: #ffffff;
    --radius: 14px;
}

/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}



/* CONTROLS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* DOT INDICATORS (MODERN) */
.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
}

/* =========================
   NAVBAR
========================= */
.navbar-brand{

font-size:1.5rem;
font-weight:800;

}

.navbar.scrolled {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   NAV LINKS
========================= */
.nav-link {
    font-weight: 500;
    position: relative;
}

.nav-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--primary);
    transition: 0.3s;
}

.nav-link:hover:after {
    width: 100%;
}

/* =========================
   BUTTONS
========================= */
.btn {
    border-radius: 10px;
    font-weight: 500;
    padding: 10px 18px;
}

.btn-danger {
    background: var(--primary);
    border: none;
}

.btn-danger:hover {
    background: #b80000;
    transform: translateY(-2px);
}

/* =========================
   CARDS
========================= */
.card {
    border: none;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* =========================
   SECTIONS
========================= */
section {
    padding: 80px 0;
}

/* =========================
   HEADINGS
========================= */
h1, h2, h3, h4 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* =========================
   IMAGES
========================= */
img {
    max-width: 100%;
    transition: transform 0.4s ease;
}

img:hover {
    transform: none;
}


/* =========================
   MODERN OVERLAY (GRADIENT)
========================= */

/* =========================
   HERO MODERN MOBILE SAFE
========================= */

.hero-slider,
.carousel-item,
.hero-slide {
    position: relative;
}

/* IMAGE RESPONSIVE */
.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 6s ease;
}

/* OVERLAY (MODERN DARK GRADIENT) */
.hero-overlay {
    position: absolute;
    inset: 0;
    
}

/* CONTENT */
.hero-content {
    position: absolute;
    bottom: 12%;
    left: 5%;
    right: 5%;
    z-index: 2;
    color: #fff;
    max-width: 600px;
    animation: fadeUp 1s ease;
}

/* TITLES */
.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

/* BUTTON */
.hero-btn {
    border-radius: 30px;
    padding: 10px 22px;
}

/* DESKTOP HEIGHT */
@media (min-width: 992px) {

    .hero-slider,
    .carousel-item,
    .hero-slide {
        height: 80vh;
        overflow: hidden;
    }

    .hero-img {
        height: 100%;
        object-fit: cover;
        transform: scale(1.05);
    }

    /* subtle zoom animation */
    .carousel-item.active .hero-img {
        
    }

    .hero-title {
        font-size: 3rem;
    }
}

/* MOBILE TWEAK */
@media (max-width: 576px) {

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-content {
        bottom: 8%;
    }
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.section-badge{
display:inline-block;
background:rgba(230,0,0,.1);
color:#e60000;
padding:8px 18px;
border-radius:50px;
font-weight:600;
margin-bottom:15px;
}

.service-card{
background:#fff;
border-radius:20px;
overflow:hidden;
height:100%;
border:1px solid #eef2f7;
box-shadow:0 10px 35px rgba(0,0,0,.05);
transition:.4s;
}

.service-card:hover{
transform:translateY(-12px);
box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.service-img-wrap{
height:auto;
object-fit:cover;
}

.service-img-wrap img{
width:100%;
height:100%;
object-fit:cover;
transition:.6s;
}

.service-card:hover .service-img-wrap img{
transform:scale(1.08);
}

.service-content{
padding:30px;
text-align:left;
}

.service-icon{
width:70px;
height:70px;
background:#fff;
border-radius:18px;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:#e60000;
margin-top:-65px;
margin-bottom:20px;
position:relative;
z-index:2;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-content h4{
font-size:22px;
font-weight:700;
margin-bottom:15px;
color:#0f172a;
}

.service-content p{
color:#64748b;
margin-bottom:20px;
}

.service-btn{
display:inline-flex;
align-items:center;
font-weight:600;
text-decoration:none;
color:#e60000;
}

.service-btn:hover

@media(max-width:768px){

.service-img-wrap{
height:220px;
}

.service-content{
padding:25px;
}

}


.top-bar {
    background: #111;
    color: #fff;
    font-size: 14px;
}

/* LINKS */
.top-bar a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    transition: 0.3s;
}

.top-bar a:hover {
    opacity: 1;
    color: #e60000;
}

/* RIGHT ICONS */
.top-right a {
    margin-left: 10px;
    font-size: 15px;
}

/* =========================
   MOBILE FIX (IMPORTANT)
========================= */
@media (max-width: 576px) {

    .top-bar .row {
        flex-direction: column;
        text-align: center;
    }

    .top-left,
    .top-right {
        width: 100%;
        margin-bottom: 6px;
    }

    .top-left a {
        display: block;   /* phone + email separate lines */
        margin: 3px 0;
    }

    .top-right a {
        margin: 0 6px;
        display: inline-block;
    }
}

.whatsapp-float{

position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:#fff;
z-index:99999;
box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.footer-modern{
background:#0f172a;
color:#fff;
padding:70px 0 20px;
}

.footer-title{
font-size:28px;
font-weight:800;
margin-bottom:15px;
}

.footer-heading{
margin-bottom:20px;
font-weight:700;
}

.footer-text{
color:#cbd5e1;
}

.footer-links{
list-style:none;
padding:0;
margin:0;
}

.footer-links li{
margin-bottom:10px;
}

.footer-links a,
.footer-modern p a{
color:#cbd5e1;
text-decoration:none;
}

.footer-links a:hover,
.footer-modern p a:hover{
color:#fff;
}

.social-item{
margin-bottom:12px;
}

.social-item a{
color:#cbd5e1;
text-decoration:none;
display:flex;
align-items:center;
gap:10px;
}

.social-item a:hover{
color:#fff;
}

.social-item i{
width:38px;
height:38px;
display:flex;
align-items:center;
justify-content:center;
background:#1e293b;
border-radius:50%;
}

.social-item a:hover i{
background:#e60000;
}

.footer-divider{
border-color:rgba(255,255,255,.1);
margin:30px 0 20px;
}

.footer-bottom{
text-align:center;
color:#94a3b8;
}

.feature-box{
background:#fff;
padding:30px;
border-radius:18px;
height:100%;
box-shadow:0 10px 30px rgba(0,0,0,.05);
text-align:center;
}

.feature-box i{
font-size:34px;
color:#e60000;
margin-bottom:15px;
}



.testimonial-stars{
color:#ffc107;
margin-bottom:10px;
}

.cta-section{
padding:100px 0;
background:linear-gradient(135deg,#e60000,#ff3d3d);
color:#fff;
}

.cta-section h2{
font-size:48px;
font-weight:800;
}


.page-banner{
background:linear-gradient(135deg,#0f172a,#111827,#1e293b);
padding:140px 0;
color:#fff;
text-align:center;
position:relative;
overflow:hidden;
}

.page-banner:before{
content:'';
position:absolute;
width:400px;
height:400px;
background:rgba(230,0,0,.15);
border-radius:50%;
top:-150px;
right:-120px;
}

.page-banner h1{
font-size:60px;
font-weight:800;
margin-bottom:15px;
}

.page-banner p{
font-size:18px;
opacity:.9;
}

.about-image{
border-radius:24px;
overflow:hidden;
box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.about-image img{
width:100%;
height:100%;
object-fit:cover;
}

.stat-card{
background:#fff;
padding:35px;
border-radius:22px;
text-align:center;
box-shadow:0 10px 40px rgba(0,0,0,.06);
transition:.35s;
height:100%;
}

.stat-card:hover{
transform:translateY(-10px);
}

.stat-card h2{
font-size:50px;
font-weight:800;
color:#e60000;
}

.why-card{
background:#fff;
padding:35px;
border-radius:22px;
height:100%;
box-shadow:0 10px 40px rgba(0,0,0,.05);
transition:.35s;
border:1px solid #eef2f7;
}

.why-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 60px rgba(0,0,0,.1);
}

.why-icon{
width:75px;
height:75px;
border-radius:20px;
background:#e60000;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:30px;
margin-bottom:20px;
}

.about-highlight{
display:flex;
gap:20px;
margin-top:30px;
flex-wrap:wrap;
}

.about-badge{
background:#fff;
padding:12px 18px;
border-radius:50px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
font-weight:600;
}

.cta-section{
padding:100px 0;
background:linear-gradient(135deg,#e60000,#ff3b3b);
color:#fff;
}

.cta-section h2{
font-size:48px;
font-weight:800;
}

@media(max-width:768px){

.page-banner{
padding:100px 0;
}

.page-banner h1{
font-size:38px;
}

.cta-section h2{
font-size:32px;
}

}


/* =========================
   SERVICES PAGE
========================= */

.services-hero{
background:linear-gradient(135deg,#0f172a,#111827,#1e293b);
padding:140px 0;
text-align:center;
color:#fff;
position:relative;
overflow:hidden;
}

.services-hero:before{
content:'';
position:absolute;
width:450px;
height:450px;
background:rgba(230,0,0,.12);
border-radius:50%;
top:-180px;
right:-120px;
}

.services-hero h1{
font-size:60px;
font-weight:800;
margin-bottom:15px;
}

.services-hero p{
font-size:18px;
opacity:.9;
max-width:700px;
margin:auto;
}

.services-grid{
padding:100px 0;
background:#f8fafc;
}

/* SERVICE CARD */

.service-card-modern{
background:#fff;
border-radius:24px;
overflow:hidden;
height:100%;
border:1px solid #eef2f7;
box-shadow:0 10px 40px rgba(0,0,0,.05);
transition:.4s;
}

.service-card-modern:hover{
transform:translateY(-12px);
box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.service-card-modern img{
width:100%;
height:auto;
object-fit:cover;
}

.service-card-body{
padding:30px;
}

.service-card-icon{
width:75px;
height:75px;
background:#fff;
border-radius:20px;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:#e60000;
margin-top:-65px;
margin-bottom:20px;
position:relative;
z-index:2;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-card-body h4{
font-weight:700;
margin-bottom:15px;
color:#0f172a;
}

.service-card-body p{
color:#64748b;
margin-bottom:20px;
}

.service-link{
display:inline-flex;
align-items:center;
gap:8px;
font-weight:600;
color:#e60000;
text-decoration:none;
transition:.3s;
}

.service-link:hover{
color:#b80000;
}

/* WHY CHOOSE US */

.services-choose-section{
padding:100px 0;
}

.services-choose-section .why-card{
height:100%;
}

/* CTA */

.services-cta{
padding:100px 0;
background:linear-gradient(135deg,#e60000,#ff3b3b);
color:#fff;
}

.services-cta h2{
font-size:48px;
font-weight:800;
}

/* MOBILE */

@media(max-width:768px){

.services-hero{
padding:100px 0;
}

.services-hero h1{
font-size:38px;
}

.services-hero p{
font-size:16px;
}

.service-card-modern img{
height:220px;
}

.service-card-body{
padding:25px;
}

.services-cta{
padding:70px 0;
}

.services-cta h2{
font-size:32px;
}

}

.contact-form-card,
.contact-info-card{
background:#fff;
padding:40px;
border-radius:24px;
box-shadow:0 15px 50px rgba(0,0,0,.06);
border:1px solid #eef2f7;
height:100%;
}

.modern-input{
height:58px;
border-radius:14px;
border:1px solid #e2e8f0;
padding:15px 20px;
}

textarea.modern-input{
height:auto;
}

.modern-input:focus{
border-color:#e60000;
box-shadow:0 0 0 0.2rem rgba(230,0,0,.15);
}

.contact-item{
display:flex;
align-items:flex-start;
gap:15px;
margin-bottom:25px;
}

.contact-item i{
width:50px;
height:50px;
background:#e60000;
color:#fff;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
}

.social-contact-btn{
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
background:#fff;
border:1px solid #e2e8f0;
border-radius:14px;
color:#e60000;
font-size:20px;
text-decoration:none;
transition:.35s;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.social-contact-btn:hover{
background:#e60000;
color:#fff;
transform:translateY(-5px);
}
@media(max-width:768px){

.service-content{
    padding:15px;
}

.service-content h4{
    font-size:16px;
    margin-bottom:10px;
}

.service-content p{
    font-size:13px;
    line-height:1.5;
    margin-bottom:12px;
}

.service-icon{
    width:50px;
    height:50px;
    font-size:20px;
    margin-top:-40px;
}

.service-img-wrap{
    height:140px;
}

.service-btn{
    font-size:13px;
}

}

.project-card {
    transition: 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.project-img img {
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}



.testimonial-card {
    transition: 0.3s ease;
    border-radius: 12px;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.testimonial-card .text-warning {
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.blog-card {
    transition: 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.blog-img img {
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}


/*=========================
    CLIENT SECTION
=========================*/

/*=========================
    PREMIUM CLIENT SECTION
=========================*/

.client-logo{
    width:170px;
    height:170px;
    margin:auto;
    position:relative;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:#fff;
    padding:20px;
    cursor:pointer;

    animation:floatLogo 4s ease-in-out infinite;
    transition:.5s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08),
        0 0 0 rgba(230,0,0,.2);
}

/* Rotating Border */
.client-logo::before{
    content:"";
    position:absolute;
    inset:-6px;
    border-radius:50%;

    background:conic-gradient(
        #e60000,
        #ff3b3b,
        #ffffff,
        #ff5c5c,
        #e60000
    );

    animation:rotateBorder 4s linear infinite;
}

/* White Circle */
.client-logo::after{
    content:"";
    position:absolute;
    inset:6px;
    background:#fff;
    border-radius:50%;
    z-index:1;
}

/* Shine Effect */
.client-logo span{
    position:absolute;
    width:45px;
    height:230%;
    background:rgba(255,255,255,.45);
    transform:rotate(25deg) translateX(-250px);
    animation:shine 5s linear infinite;
    z-index:3;
}

/* Logo */

.client-img{
    position:relative;
    z-index:5;

    max-width:80%;
    max-height:80%;

    width:auto;
    height:auto;

    object-fit:contain;

    filter:grayscale(100%);
    transition:.5s ease;
}

/* Hover */

.client-logo:hover{

    transform:
        perspective(700px)
        rotateX(8deg)
        rotateY(-8deg)
        scale(1.08);

    box-shadow:
        0 25px 55px rgba(230,0,0,.35),
        0 0 30px rgba(230,0,0,.35);

}

.client-logo:hover .client-img{

    filter:none;
    transform:scale(1.12) rotate(5deg);

}

/* Floating */

@keyframes floatLogo{

0%,100%{
    transform:translateY(0);
}

50%{
    transform:translateY(-8px);
}

}

/* Border Rotation */

@keyframes rotateBorder{

from{
    transform:rotate(0deg);
}

to{
    transform:rotate(360deg);
}

}

/* Shine */

@keyframes shine{

0%{
    transform:translateX(-250px) rotate(25deg);
}

100%{
    transform:translateX(250px) rotate(25deg);
}

}

/* Mobile */

@media(max-width:768px){

.client-logo{

    width:130px;
    height:130px;
    padding:15px;

}

}

.pricing-section{
    padding:100px 0;
    background:#f8fafc;
}

.pricing-card{
    position:relative;
    background:#fff;
    border-radius:20px;
    padding:45px 35px;
    height:100%;
    border:1px solid #ececec;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    overflow:hidden;
}

.pricing-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(230,0,0,.18);
}

.popular-package{

    background:linear-gradient(135deg,#e60000,#b80000);
    color:#fff;
    transform:scale(1.04);

}

.popular-package h3,
.popular-package p,
.popular-package li,
.popular-package .package-price{

    color:#fff;

}

.package-badge{

    position:absolute;
    top:18px;
    right:18px;

    background:#fff;
    color:#e60000;

    font-size:12px;
    font-weight:700;

    padding:8px 18px;

    border-radius:30px;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

}

.package-price{

    font-size:52px;
    font-weight:800;
    color:#e60000;
    margin:25px 0;

}

.package-features{

    list-style:none;
    padding:0;
    margin:30px 0;

}

.package-features li{

    padding:12px 0;
    border-bottom:1px solid rgba(0,0,0,.06);

}

.package-features li:last-child{

    border-bottom:none;

}

.package-features i{

    color:#28a745;
    margin-right:10px;

}

.popular-package .package-features i{

    color:#fff;

}

.pricing-card .btn{

    border-radius:40px;
    padding:14px;
    font-weight:700;

}

.popular-package .btn{

    background:#fff;
    color:#e60000;
    border:none;

}

.popular-package .btn:hover{

    background:#f5f5f5;

}

.stats-section{
    background:#f8f9fa;
    padding:90px 0;
}

.stats-card{
    background:#fff;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    border:1px solid #eee;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.stats-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(230,0,0,.15);
    border-color:#e60000;
}

.stats-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,#e60000,#b30000);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.stats-card h2{
    font-size:42px;
    font-weight:800;
    color:#e60000;
    margin-bottom:10px;
}

.stats-card p{
    margin:0;
    color:#666;
    font-size:16px;
    font-weight:500;
}

@media(max-width:768px){

.stats-card{
    padding:25px 15px;
}

.stats-card h2{
    font-size:32px;
}

.stats-icon{
    width:60px;
    height:60px;
    font-size:24px;
}

}