/* Hero Section  */

/* Headline styles */
.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
}

.highlight {
    background: #fff;
    color: #8D278A;
    padding: 2px 10px;
    border-radius: 6px;
}

.alt-highlight {
    color: #FFCB03;
    font-style: italic;
}

/* Button styles */
.hero-btn {
    background: #fff;
    color: #8D278A;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.hero-btn:hover {
    background: #FFCB03;
    color: #000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Image hover */
.hero-img {
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.hero-img:hover {
    transform: scale(1.08) rotate(-1.5deg);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}

/* Glow circle behind image */
.glow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 203, 3, 0.6), rgba(141, 39, 138, 0.2));
    z-index: -1;
    animation: pulse 6s infinite alternate;
}

/* Floating shapes */
.floating-shape {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    background: #fff;
    top: 10%;
    left: 5%;
    animation: float 7s ease-in-out infinite;
}

.shape-2 {
    background: #000;
    bottom: 10%;
    right: 8%;
    animation: float 9s ease-in-out infinite reverse;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

/* Responsive tweak */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* Hero fixed height for desktop */
.hero-fixed {
    min-height: 724px;
    display: flex;
    align-items: center;
    /* vertically center content */
}

/* Mobile & tablet responsiveness */
@media (max-width: 991px) {
    .hero-fixed {
        min-height: auto;
        /* auto height on smaller screens */
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* ======= our services page CSS ======== */

.services-section {
    padding: 70px 15px;
    /* left-right padding added */
    max-width: 1200px;
    margin: 0 auto;
}

.sec-title {
    text-align: center;
    margin-bottom: 50px;
}

.sec-title h3 {
    font-size: 34px;
    font-weight: 700;
    color: #222;
}

.sec-title span {
    color: #8D2693;
}

.sec-title p {
    font-size: 16px;
    color: #666;
    margin-top: 8px;
}

/* Grid for Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Card Style */
.service-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 5px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid #FFCA0A;
}

.service-card img {
    width: 100%;
    height: 190px;
    object-fit: inherit;
    border-radius: 14px;
    margin-bottom: 18px;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.07);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin: 8px 0;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.5;
}

.service-card a {
    margin-bottom: 20px;
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #8D2693, #6a1d70);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(141, 38, 147, 0.3);
}

.service-card a:hover {
    background: linear-gradient(135deg, #6a1d70, #8D2693);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(141, 38, 147, 0.4);
}

/* Hover Image */
.hover-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    opacity: 0;
    transform: scale(0.9);
    z-index: 9999;
    padding: 6px;
}

/* Mobile Premium Fix */
@media(max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        /* single column */
        gap: 35px;
        justify-items: center;
        /* center align cards */
    }

    .service-card {
        max-width: 90%;
        margin: 0 auto;
    }
}


/* ======= web design page CSS ========  */


.text-accent {
    color: #8D2693;
}

.feature-card {
    background: #fff;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(141, 38, 147, 0.15);
}

.feature-card h5 {
    color: #8D2693;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.feature-card h5::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    left: 0;
    bottom: -6px;
    background: #8D2693;
    border-radius: 2px;
}

@media(max-width:768px) {
    .feature-card {
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
    }
}

/* Custom CSS  */

.service-card-small {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #6a1d70;
}

.service-card-small:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.text-gradient {
    background: linear-gradient(90deg, #8D2693, #6a1d70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media(max-width: 768px) {
    .service-card-small p {
        font-size: 0.85rem;
    }
}

/* Portfolio Section */
.modern-portfolio .text-gradient {
    background: linear-gradient(90deg, #8D2693, #6a1d70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-card {
    height: 350px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    padding-bottom: 20px;
}

.portfolio-overlay h5 {
    margin-bottom: 5px;
}

.portfolio-overlay p {
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive */
@media(max-width:992px) {
    .portfolio-card {
        height: 300px;
    }
}

@media(max-width:576px) {
    .portfolio-card {
        height: 250px;
    }
}


/* ======= web development page CSS ========   */


.under-card {
    background: #ffffff;
    border: 1px solid #eee;
    transition: all 0.35s ease;
    position: relative;
}

.under-card:hover {
    background: linear-gradient(135deg, #fff 0%, #f4e6f7 100%);
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(138, 40, 143, 0.25);
}

.under-card:hover h4 {
    color: #5a1861;
}


/* Road map  */

.step-card {
    background: #fff;
    border: 1px solid #eee;
    position: relative;
    transition: all 0.35s ease;
}

.step-card:hover {
    background: linear-gradient(135deg, #fff 0%, #FFCA0A 100%);
    transform: translateY(-6px);
    box-shadow: 0 10px 25px #FFCA0A;

 
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #8A288F;
    color: #fff;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(138, 40, 143, 0.25);
}


/* ======= google add page ======== */

.text-gradient {
    background: linear-gradient(45deg, #8A288F, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.plan-card ul li {
    margin-bottom: 10px;
    font-size: 15px;
}


.text-gradient {
    background: linear-gradient(45deg, #8A288F, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gradient {
    background: linear-gradient(45deg, #8A288F, #FF6B6B);
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.btn-gradient:hover {
    background: linear-gradient(45deg, #FF6B6B, #8A288F);
    color: #fff;
}

.feature-box {
    transition: 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.icon-wrap {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}