:root {
    --primary-color: #ef251f;
    --primary-dark: #E63946;
    --secondary-color: #2D3748;
    --text-dark: #1A202C;
    --text-light: #718096;
    --white: #FFFFFF;
    --light-bg: #F7FAFC;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

section {
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    /*min-height: 85vh;*/
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
}

.hero-content {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 68, 68, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 68, 68, 0.2);
}
.hero-badge h1 {
    margin-bottom: 0;
    font-weight: 800;
    font-size: 18px;
}
.hero-badge i {
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.text-primary {
    color: var(--primary-color) !important;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-dark {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.image-container img {
    border-radius: 20px;
    /* box-shadow: var(--shadow-lg); */
    width: 100%;
    height: auto;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card i {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.card-title {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.card-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    font-size: 1.2rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        /* flex-direction: column; */
        gap: 1rem;
    }

    .stat-item {
        text-align: left;
    }



    .floating-card {
        display: none;
    }

    .hero-shape {
        width: 100%;
        /*clip-path: polygon(0% 70%, 100% 50%, 100% 100%, 0% 100%);*/
                clip-path: polygon(0% 72%, 100% 72%, 100% 100%, 0% 100%);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        display: none;
        flex-direction: column;
        gap: 1rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .brand-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 16px;
    }
}

.hero-btn {
    border-radius: 50px;
    height: 56px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.2s;
}

@media (max-width: 767.98px) {
    .hero-btn {
        width: 100%;
        min-width: 0;
        height: 41px;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .image-container {
        margin-top: -40px;
    }
}

/* Client section */
.anaam-media-heading {
    font-size: 2.2rem;
}

.anaam-media-heading strong {
    color: var(--primary-dark);
}

@media screen and (max-width:576px) {
    .anaam-media-heading {
        font-size: 1.4rem;
    }
}

.trusted-clients-section {
    background: var(--primary-color);
    padding: 2.5rem 0 2rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.trusted-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.75rem;
}

.trusted-badge {
    background: #ef251f;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 20px;
    padding: 0.25rem 1rem;
    margin-right: 0.5rem;
    box-shadow: 0 2px 8px rgba(255, 23, 68, 0.15);
    letter-spacing: 1px;
}

.trusted-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.trusted-swiper-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.trusted-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 255, 255);
    border-radius: 12px;
    margin: 0 10px;
    /* height: 60px; */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.2s;
}

.trusted-swiper .swiper-slide img {
    /* max-height: 38px; */
    /* max-width: 120px; */
    width: 100%;
    border-radius: 12px;
    /* filter: grayscale(1) brightness(1.2); */
    /* opacity: 0.85; */
    transition: filter 0.3s, opacity 0.3s;
}

.trusted-swiper .swiper-slide:hover img {
    filter: none;
    opacity: 1;
}

@media (max-width: 768px) {
    .trusted-header {
        flex-direction: column;
        gap: 0.3rem;
    }

    /* .trusted-swiper .swiper-slide {
        height: 48px;
    } */

    .trusted-swiper .swiper-slide img {
        /* max-height: 28px; */
        max-width: 90px;
    }
}

/* Features css */
.feature-highlight-section {
    background: linear-gradient(135deg, #fff 60%, #fbeee6 100%);
    padding: 5rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.feature-heading {
    font-size: 2rem;
    font-weight: 900;
    color: #1A202C;
    margin-bottom: 0.5rem;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 12px rgba(239, 37, 31, 0.08);
}

.feature-main-color {
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(239, 37, 31, 0.13);
}

.feature-subheading {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.7px;
}

.feature-description {
    color: #718096;
    font-size: 1.08rem;
    margin-bottom: 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 22px;
    box-shadow: 0 8px 36px rgba(239, 37, 31, 0.10), 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 2.5rem 1.4rem 2rem 1.4rem;
    text-align: center;
    transition: transform 0.35s cubic-bezier(.4, 2, .6, 1), box-shadow 0.35s cubic-bezier(.4, 2, .6, 1);
    border: 2.5px solid #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.045) rotate(-1deg);
    box-shadow: 0 16px 48px 0 rgba(239, 37, 31, 0.18), 0 4px 16px rgba(0, 0, 0, 0.10);
    border-color: #ef251f;
    z-index: 2;
}

.glass-card {
    backdrop-filter: blur(7px);
    background: rgba(255, 255, 255, 0.92);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.3rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef251f 60%, #E63946 100%);
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(239, 37, 31, 0.18);
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s;
}

.feature-card:hover .feature-icon {
    box-shadow: 0 0 0 6px rgba(239, 37, 31, 0.10), 0 8px 32px rgba(239, 37, 31, 0.22);
}

.feature-icon img {
    width: 36px;
    height: 36px;
    /* filter: brightness(100) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.10)); */
}

/* Neon Glow Effects */
.neon-glow {
    box-shadow: 0 0 16px 2px #ef251f, 0 4px 18px rgba(239, 37, 31, 0.18);
}

.neon-glow-blue {
    /* background: linear-gradient(135deg, #3a8dde 60%, #1e90ff 100%); */
    box-shadow: 0 0 16px 2px #1e90ff, 0 4px 18px rgba(30, 144, 255, 0.18);
}

.neon-glow-green {
    /* background: linear-gradient(135deg, #43e97b 60%, #38f9d7 100%); */
    box-shadow: 0 0 16px 2px #43e97b, 0 4px 18px rgba(67, 233, 123, 0.18);
}

.neon-glow-yellow {
    /* background: linear-gradient(135deg, #f9d423 60%, #ff4e50 100%); */
    box-shadow: 0 0 16px 2px #f9d423, 0 4px 18px rgba(249, 212, 35, 0.18);
}

.feature-card-title {
    font-size: 1.22rem;
    font-weight: 800;
    color: #ef251f;
    margin-bottom: 0.6rem;
    margin-top: 0.3rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 6px rgba(239, 37, 31, 0.07);
}

.feature-card-text {
    color: #444;
    font-size: 1.01rem;
    margin-bottom: 0;
    min-height: 60px;
}

/* Accent line for card bottom */
.feature-card-accent {
    display: block;
    width: 60%;
    height: 4px;
    border-radius: 2px;
    margin: 1.2rem auto 0 auto;
    background: linear-gradient(90deg, #ef251f 0%, #E63946 100%);
    opacity: 0.18;
    transition: opacity 0.3s;
}

.feature-card:hover .feature-card-accent {
    opacity: 0.5;
}

/* Decorative floating shapes */
.feature-highlight-section::before,
.feature-highlight-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.feature-highlight-section::before {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #ef251f22 0%, #fff0 80%);
    top: -60px;
    left: -60px;
}

.feature-highlight-section::after {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #E6394622 0%, #fff0 80%);
    bottom: -80px;
    right: -80px;
}


@media (max-width: 575px) {
    .feature-highlight-section {
        padding: 2.2rem 0 1.5rem 0;
    }

    .feature-heading {
        font-size: 2.15rem;
    }

    .feature-subheading {
        font-size: 1.5rem;
    }

    .feature-card-title {
        font-size: 1rem;
    }
}

/* Why choose */
.why-choose-anaam {
    background: #fff6f6;
    position: relative;
    overflow: hidden;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.why-choose-title {
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.2rem;
    letter-spacing: -0.5px;
    text-align: center;
}

.highlight-red {
    color: #ef251f;
    font-weight: 900;
    text-shadow: none;
}

.why-choose-desc {
    color: #222;
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem 2.5rem;
    max-width: 950px;
    margin: 2.2rem auto 0 auto;
}

.why-choose-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(239, 37, 31, 0.07);
    padding: 2.1rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    border: 1.5px solid #ffeaea;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* min-height: 210px; */
    position: relative;
    transition:
        box-shadow 0.22s,
        transform 0.22s,
        background 0.22s,
        color 0.22s;
    /* Add extra top padding for icon overlap */
    padding-top: 3.8rem;
    /* margin-bottom: 25px; */
}

.g-10 {
    gap: 40px !important;
}

.why-choose-card:hover {
    box-shadow: 0 8px 32px rgba(239, 37, 31, 0.13);
    transform: translateY(-6px) scale(1.025);
    z-index: 2;
    background: #ef251f;
}

.why-choose-card:hover .why-choose-card-title,
.why-choose-card:hover .why-choose-card-text {
    color: #fff !important;
    transition: color 0.22s;
}


.why-choose-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(239, 37, 31, 0.08);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    /* Add a border for pop effect */
    border: 3px solid #fff6f6;
    transition: background 0.22s;
}

.why-choose-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    transition: none;
}

.why-choose-icon-orange {
    background: linear-gradient(135deg, #fff7e6 60%, #ffe0b2 100%);
    box-shadow: 0 2px 12px rgba(255, 152, 0, 0.13);
}

.why-choose-icon-red {
    background: linear-gradient(135deg, #fff0f0 60%, #ffeaea 100%);
    box-shadow: 0 2px 12px rgba(239, 37, 31, 0.13);
}

.why-choose-icon-green {
    background: linear-gradient(135deg, #e6fff7 60%, #b2ffe0 100%);
    box-shadow: 0 2px 12px rgba(76, 175, 80, 0.13);
}

.why-choose-icon-blue {
    background: linear-gradient(135deg, #e6f0ff 60%, #b2d6ff 100%);
    box-shadow: 0 2px 12px rgba(33, 150, 243, 0.13);
}

.why-choose-card-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #ef251f;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1px;
    transition: color 0.22s;
}

.why-choose-card-text {
    color: #222;
    font-size: 0.97rem;
    margin-bottom: 0;
    /* min-height: 54px; */
    line-height: 1.5;
    transition: color 0.22s;
}

@media (max-width: 991px) {
    .why-choose-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem 0;
    }

    .why-choose-card {
        min-height: 0;
    }
}

@media (max-width: 767px) {
    .why-choose-title {
        font-size: 1.5rem;
    }

    .why-choose-cards-wrapper {
        gap: 1.1rem 0;
    }

    .why-choose-card {
        padding: 2.1rem 0.7rem 1.1rem 0.7rem;
        padding-top: 2.7rem;
    }

    .why-choose-icon {
        width: 44px;
        height: 44px;
    }

    .why-choose-icon img {
        width: 32px;
        height: 32px;
    }

    .why-choose-card-title {
        font-size: 0.99rem;
    }

    .why-choose-card-text {
        font-size: 0.93rem;
    }
}

@media (max-width: 575px) {
    .why-choose-anaam {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }

    .why-choose-cards-wrapper {
        margin-top: 1.1rem;
    }
}

/* Indusries work-- */
.industries-work-section {
    background: linear-gradient(135deg, #ef251f 80%, #e63946 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.industries-work-section .section-heading {
    font-size: 2.2rem;
    letter-spacing: -1px;
    font-weight: 700;
}

.industries-work-section .section-heading span {
    /* background: rgba(255, 255, 255, 0.13); */
    border-radius: 8px;
    font-style: italic;
    /* padding: 0.2em 0.6em; */
    display: inline-block;
}

.industries-work-section .section-subheading {
    font-size: 1.13rem;
    color: #fff;
    opacity: 0.85;
    max-width: 420px;
}

.industries-work-section .mini-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(239, 37, 31, 0.09);
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    text-align: center;
    transition: transform 0.22s cubic-bezier(.4, 1.5, .6, 1), box-shadow 0.22s;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.industries-work-section .mini-card:hover {
    transform: translateY(-7px) scale(1.045) rotate(-1deg);
    box-shadow: 0 8px 32px 0 rgba(239, 37, 31, 0.13), 0 2px 8px rgba(0, 0, 0, 0.07);
}

.industries-work-section .mini-card-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 0.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef251f 60%, #e63946 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(239, 37, 31, 0.10);
}

.industries-work-section .mini-card-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.industries-work-section .mini-card-title {
    font-size: 1.01rem;
    font-weight: 600;
    color: #ef251f;
    margin-bottom: 0;
    letter-spacing: 0.2px;
}

.industries-work-section .mini-card-title.red {
    color: #e63946;
}

@media (max-width: 991px) {
    .industries-work-section .section-heading {
        font-size: 1.5rem;
    }

    .industries-work-section .section-subheading {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .industries-work-section .section-heading {
        font-size: 1.5rem;
    }

    .industries-work-section .section-subheading {
        font-size: 0.98rem;
    }

    .industries-work-section .mini-card {
        min-height: 90px;
        padding: 1rem 0.5rem 0.8rem 0.5rem;
    }
}

/* service section */
@media (min-width: 992px) {
    .choose-us-narrow {
        max-width: 1200px !important;
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important;
    }
}

.choose-us-section {
    background: #fff;
}

.choose-us-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ef251f;
    letter-spacing: -0.5px;
}

.choose-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(239, 37, 31, 0.08);
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
}


.choose-card::after {
    content: '';
    position: absolute;
    border-radius: 0 20px 0 0;
    border: 6px solid #ef251f;
    width: 120px;
    height: 120px;
    z-index: 1;
    transition: border-color 0.25s;
}

.choose-card::before {
    content: '';
    position: absolute;
    border-radius: 20px 0 0 0;
    border: 6px solid #ef251f;
    width: 120px;
    height: 120px;
    z-index: 1;
    transition: border-color 0.25s;
}

.choose-card::before {
    top: 0;
    left: 0;
    border-bottom: none;
    border-right: none;
}

.choose-card::after {
    bottom: 0;
    right: 0;
    border-top: none;
    border-left: none;
    border-radius: 0 0 20px 0;
}

.choose-card:hover {
    box-shadow: 0 8px 32px rgba(239, 37, 31, 0.16);
}

.choose-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef251f 60%, #e63946 100%);
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(239, 37, 31, 0.10);
    margin-bottom: 1.1rem;
}

.choose-card-icon i {
    font-size: 30px;
    display: block;
    color: #fff;
}

.choose-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ef251f;
    margin-bottom: 0.6rem;
    letter-spacing: -0.2px;
}

.choose-card-text {
    font-size: 14px;
    color: #222;
    opacity: 0.85;
    margin-bottom: 1.1rem;
}

.choose-card-link {
    color: #e63946;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s;
    font-size: 1.01rem;
}

.choose-card-link span {
    font-size: 1.1em;
    margin-left: 0.2em;
    vertical-align: middle;
}

.choose-card-link:hover {
    color: #ef251f;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .choose-us-title {
        font-size: 1.5rem;
    }

    .choose-card {
        min-height: 260px;
        padding: 1.7rem 0.8rem 1.1rem 0.8rem;
    }

    .choose-card-title {
        font-size: 1.05rem;
    }
}

@media (max-width: 767px) {
    .choose-us-title {
        font-size: 1.2rem;
    }

    .choose-card {
        min-height: 180px;
        padding: 1.1rem 0.5rem 0.8rem 0.5rem;
    }

    .choose-card-title {
        font-size: 0.99rem;
    }

    .choose-card-text {
        font-size: 0.93rem;
    }

    .choose-card-icon {
        width: 44px;
        height: 44px;
    }

    .choose-card-icon img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 575px) {
    .choose-us-section {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }

    .choose-card {
        min-height: 120px;
        padding: 20px
    }
}

/* bussines achiev goal */
.business-goals-section {
    background: #fcf9f9;
    padding: 3rem 0 2.5rem 0;
}

.business-goals-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.business-goals-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ef251f;
    margin-bottom: 0.7rem;
    letter-spacing: -0.5px;
}

.business-goals-title span {
    color: #e63946;
}

.business-goals-desc {
    font-size: 1.08rem;
    color: #333;
    margin-bottom: 1.2rem;
}

.business-goals-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ef251f 60%, #e63946 100%);
    margin: 0.7rem auto 0 auto;
    border-radius: 2px;
}

.business-goals-cards {
    margin-top: 1.5rem;
}

.business-goal-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(239, 37, 31, 0.08);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 220px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.business-goal-card:hover {
    box-shadow: 0 8px 32px rgba(239, 37, 31, 0.15);
    transform: translateY(-4px) scale(1.03);
}

.business-goal-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #ef251f 60%, #e63946 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 8px rgba(239, 37, 31, 0.10);
    color: #fff;
    font-size: 2rem;
}

.business-goal-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: #ef251f;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2px;
}

.business-goal-text {
    font-size: 0.99rem;
    color: #444;
}

@media (max-width: 991px) {
    .business-goals-title {
        font-size: 1.5rem;
    }

    .business-goals-desc {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .business-goals-title {
        font-size: 1.5rem;
    }

    .business-goal-card {
        min-height: 120px;
        padding: 1.1rem 0.5rem 0.8rem 0.5rem;
    }

    .business-goal-title {
        font-size: 0.99rem;
    }

    .business-goal-text {
        font-size: 0.93rem;
    }

    .business-goal-icon {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }

    .business-goals-section {
        padding: 2.5rem 0;
    }
}

/* counter section */
.google-ads-training-section {
    background: linear-gradient(120deg, #fff 60%, #fceaea 100%);
    padding: 4.5rem 0 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.training-top-wave,
.training-bottom-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
}

.training-top-wave {
    top: 0;
}

.training-bottom-wave {
    bottom: 0;
}

.training-top-wave svg,
.training-bottom-wave svg {
    width: 100%;
    height: 90px;
    display: block;
}

.google-ads-training-section .container {
    position: relative;
    z-index: 2;
}

.google-ads-training-section .training-header {
    text-align: center;
    margin-bottom: 2.2rem;
}

.google-ads-training-section .training-title {
    font-size: 2rem;
    font-weight: 900;
    color: #ef251f;
    letter-spacing: -1px;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 12px rgba(239, 37, 31, 0.08);
}

.google-ads-training-section .training-title span {
    color: #e63946;
    background: linear-gradient(90deg, #ef251f 60%, #e63946 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.google-ads-training-section .training-subtitle {
    font-size: 1.15rem;
    color: #444;
    margin-top: 0.7rem;
    margin-bottom: 0.2rem;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.training-counters {
    margin-bottom: 2.2rem;
}

.counter-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(239, 37, 31, 0.13), 0 1.5px 0 #e63946 inset;
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 210px;
    transition: box-shadow 0.25s, transform 0.25s;
    position: relative;
    overflow: visible;
}

.counter-card-glow {
    box-shadow: 0 8px 32px rgba(239, 37, 31, 0.18), 0 1.5px 0 #e63946 inset, 0 0 0 6px rgba(239, 37, 31, 0.04);
}

.counter-card:hover,
.counter-card:focus-within {
    box-shadow: 0 16px 48px rgba(239, 37, 31, 0.22), 0 1.5px 0 #e63946 inset, 0 0 0 10px rgba(239, 37, 31, 0.07);
    transform: translateY(-8px) scale(1.045);
}

.counter-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ef251f 60%, #e63946 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    box-shadow: 0 4px 16px rgba(239, 37, 31, 0.13);
    color: #fff;
    font-size: 2.3rem;
    position: relative;
    z-index: 2;
    border: 4px solid #fff;
}

.counter-icon-gradient {
    background: linear-gradient(135deg, #ef251f 60%, #e63946 100%);
    box-shadow: 0 4px 16px rgba(239, 37, 31, 0.18);
}

.counter-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #fff;
    color: #e63946;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(239, 37, 31, 0.13);
    border: 2px solid #e63946;
    z-index: 3;
}

.counter-number {
    font-size: 2.7rem;
    font-weight: 900;
    color: #ef251f;
    margin-bottom: 0.2rem;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 12px rgba(239, 37, 31, 0.08);
}

.counter-label {
    font-size: 1.18rem;
    color: #e63946;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 0.2rem;
}

.counter-desc {
    font-size: 1.01rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.training-brochure {
    margin-top: 2.2rem;
}

.brochure-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(239, 37, 31, 0.10);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    display: inline-block;
    min-width: 320px;
    max-width: 100%;
}

.brochure-heading {
    font-size: 1.45rem;
    font-weight: 800;
    color: #ef251f;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.brochure-heading span {
    color: #e63946;
}

.brochure-icon {
    color: #e63946;
    font-size: 1.7rem;
}

.brochure-btn {
    background: linear-gradient(90deg, #ef251f 60%, #e63946 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    padding: 0.85rem 2.5rem;
    border-radius: 30px;
    border: none;
    box-shadow: 0 2px 12px rgba(239, 37, 31, 0.13);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.2rem;
    letter-spacing: 0.2px;
}

.brochure-btn:hover,
.brochure-btn:focus {
    background: linear-gradient(90deg, #e63946 60%, #ef251f 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(239, 37, 31, 0.18);
    transform: translateY(-2px) scale(1.06);
    text-decoration: none;
}

@media (max-width: 991px) {
    .google-ads-training-section .training-title {
        font-size: 1.7rem;
    }

    .counter-number {
        font-size: 1.7rem;
    }

    .counter-label {
        font-size: 1.05rem;
    }

    .brochure-heading {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .google-ads-training-section {
        padding: 2.2rem 0 1.5rem 0;
    }

    .counter-card {
        min-height: 120px;
        padding: 1.1rem 0.5rem 0.8rem 0.5rem;
    }

    .counter-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .counter-badge {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
        bottom: -6px;
        right: -6px;
    }

    .counter-number {
        font-size: 1.2rem;
    }

    .counter-label {
        font-size: 0.99rem;
    }

    .counter-desc {
        font-size: 0.93rem;
    }

    .brochure-card {
        min-width: 0;
        padding: 1.1rem 0.5rem 0.8rem 0.5rem;
    }

    .brochure-heading {
        font-size: 0.98rem;
    }

    .brochure-btn {
        font-size: 0.98rem;
        padding: 0.6rem 1.5rem;
    }
}

/* Who is anaam sec  */
.who-is-anaam-section {
    background: linear-gradient(120deg, #fff 60%, #fceaea 100%);
    padding: 3.5rem 0 2.5rem 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

.who-is-anaam-container {
    max-width: 1100px;
    margin: 0 auto;
}

.who-is-anaam-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    color: #222;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}


.anaam-highlight {
    color: #ef251f;
    font-weight: 900;
    background: linear-gradient(90deg, #ef251f 60%, #ea1919 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.anaam-trade {
    font-size: 1rem;
    color: #ef251f;
    vertical-align: super;
    margin-left: 2px;
}

.who-is-anaam-desc {
    text-align: left;
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    /* background: rgba(255, 255, 255, 0.7); */
    border-radius: 10px;
    padding: 1.1rem 1.2rem 1.1rem 0;
    /* box-shadow: 0 2px 18px rgba(239, 37, 31, 0.06); */
}

.desc-highlight {
    color: #ef251f;
    font-weight: 700;
}

.desc-cta {
    color: #ef251f;
    font-weight: 600;
    display: block;
    margin-top: 0.7em;
}

.who-is-anaam-btn {
    background: #ef251f;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.7rem 2.3rem;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 2px 18px rgba(239, 37, 31, 0.13);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    display: inline-block;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 6px rgba(239, 37, 31, 0.08);
    margin-bottom: 20px;
    text-decoration: none;
}

.who-is-anaam-btn:hover {
    color: #fff;
}

/* .who-is-anaam-btn:hover,
.who-is-anaam-btn:focus {
    background: linear-gradient(90deg, #c71c16 60%, #ef251f 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(239, 37, 31, 0.18);
    text-decoration: none;
    transform: translateY(-2px) scale(1.04);
} */

.who-is-anaam-img-col {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.anaam-img-circle-wrap {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.circle-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle at 60% 40%, #ffeaea 60%, #ef251f 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 0;
    box-shadow: 0 8px 40px 0 rgba(239, 37, 31, 0.13);
    animation: circlePulse 3.5s infinite alternate;
}

.circle-bg2 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle at 40% 60%, #fff 60%, #ffbaba 100%);
    opacity: 0.7;
    z-index: 1;
    animation-delay: 1.2s;
}

@keyframes circlePulse {
    0% {
        box-shadow: 0 8px 40px 0 rgba(239, 37, 31, 0.13);
    }

    100% {
        box-shadow: 0 16px 60px 0 rgba(239, 37, 31, 0.18);
    }
}

.who-is-anaam-img {
    max-width: 400px;
    width: 100%;
    /* border-radius: 50%;
    box-shadow: 0 6px 32px rgba(44, 44, 44, 0.13), 0 0 0 8px #fff;
    background: #fff; */
    position: relative;
    z-index: 2;
    /* border: 4px solid #ef251f; */
    transition: box-shadow 0.2s, transform 0.2s;
}



.img-glow {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #ef251f33 0%, transparent 80%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
    filter: blur(2px);
}

@media (max-width: 991px) {
    .who-is-anaam-title {
        font-size: 1.5rem;
    }

    .who-is-anaam-desc {
        font-size: 1rem;
    }

}

@media (max-width: 767px) {
    .who-is-anaam-title {
        font-size: 1.5rem;
    }


}

/* Key featres */
.key-features-section {
    background-color: #ef251f;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.key-features-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title span {
    display: block;
}

.section-subtitle {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 24px;
}

.feature-box {
    background: #fff;
    color: #111;
    padding: 16px 20px;
    border-radius: 32px;
    box-shadow: 6px 6px 0 #000;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.feature-box .icon {
    background: #ef251f;
    color: #000;
    border-radius: 50%;
    padding: 6px 12px;
    font-weight: bold;
    font-size: 16px;
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* TM css */
.training-methodology-section {
    background: #fdf6f6;
    padding: 60px 0 40px 0;
    text-align: center;
}

.training-methodology-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.tm-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
    letter-spacing: 0.01em;
}

.tm-highlight {
    color: #ef251f;
    font-weight: 900;
}

.tm-trade {
    font-size: 1rem;
    color: #ef251f;
    vertical-align: super;
    margin-left: 2px;
}

.tm-features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.tm-feature {
    background: transparent;
    flex: 1 1 260px;
    max-width: 340px;
    min-width: 220px;
    padding: 24px 18px 18px 18px;
    border-radius: 18px;
    box-shadow: none;
    transition: box-shadow 0.2s, transform 0.2s;
}


.tm-icon {
    margin-bottom: 16px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-icon img {
    height: 48px;
    width: auto;
    display: inline-block;
}

.tm-feature-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #ef251f;
    margin-bottom: 10px;
}

.tm-feature-desc {
    font-size: 0.98rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .tm-features-row {
        gap: 24px;
    }

    .tm-feature {
        max-width: 100%;
        min-width: 180px;
    }
}

@media (max-width: 767px) {
    .tm-features-row {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .tm-title {
        font-size: 1.2rem;
    }
}

/* Learning benefit */
.learning-benefits-section {
    background: rgb(251, 251, 251);
    padding: 60px 0;
    text-align: center;
}

.learning-benefits-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.learning-benefits-title {
    font-size: 2.1rem;
    color: #ef251f !important;
    font-weight: 800;
    margin-bottom: 18px;
    color: #222;
    letter-spacing: -0.5px;
}

.learning-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    justify-items: center;
    margin-top: 32px;
}

.learning-benefit-box {
    background: #fff;
    color: #111;
    padding: 20px 22px;
    border-radius: 28px;
    box-shadow: 4px 4px 0 #ef251f22;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 80px;
    max-width: 420px;
    margin: 0 auto;
    transition: box-shadow 0.2s, transform 0.2s;
}

.learning-benefit-box:hover {
    box-shadow: 0 8px 32px #ef251f33;
    transform: translateY(-4px) scale(1.03);
}

.learning-benefit-icon {
    background: #ef251f;
    color: #fff;
    border-radius: 50%;
    padding: 10px;
    font-weight: bold;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    box-shadow: 0 2px 8px #ef251f22;
}

.learning-benefit-text {
    text-align: left;
    font-size: 1.05rem;
    color: #222;
    font-weight: 500;
}

@media (max-width: 991px) {
    .learning-benefits-title {
        font-size: 1.5rem;
    }

    .learning-benefits-grid {
        gap: 18px;
    }

    .learning-benefit-box {
        padding: 16px 12px;
        font-size: 0.98rem;
    }
}

@media (max-width: 600px) {
    .learning-benefits-grid {
        grid-template-columns: 1fr;
    }

    .learning-benefit-box {
        width: 100%;
    }
}

/* career benefit */
.career-benefits-section {
    background: #ef251f;
    padding: 60px 0;
    text-align: center;
}

.career-benefits-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.career-benefits-title {
    font-size: 2.1rem;
    color: #fff !important;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.career-benefits-title .anaam-highlights {
    color: #fff;
}

.career-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-top: 32px;
}

.career-benefit-box {
    background: #fff;
    color: #ef251f;
    padding: 20px 22px;
    border-radius: 28px;
    box-shadow: 4px 4px 0 #fff2;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 80px;
    max-width: 420px;
    margin: 0 auto;
    transition: box-shadow 0.2s, transform 0.2s;
    flex: 1 1 320px;
}

.career-benefit-box:hover {
    box-shadow: 0 8px 32px #fff3;
    transform: translateY(-4px) scale(1.03);
}

.career-benefit-icon {
    background: #ef251f;
    color: #fff;
    border-radius: 50%;
    padding: 10px 18px;
    font-weight: bold;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    box-shadow: 0 2px 8px #ef251f22;
}

.career-benefit-text {
    text-align: left;
    font-size: 1.05rem;
    color: #ef251f;
    font-weight: 600;
}

@media (max-width: 991px) {
    .career-benefits-title {
        font-size: 1.4rem;
    }

    .career-benefits-grid {
        gap: 18px;
    }

    .career-benefit-box {
        padding: 16px 12px;
        font-size: 0.98rem;
        flex: 1 1 260px;
    }
}

@media (max-width: 600px) {
    .career-benefits-grid {
        flex-direction: column;
        gap: 12px;
    }

    .career-benefit-box {
        max-width: 100%;
        width: 100%;
    }
}

/* CTA  */
.enhanced-cta.cta-section {
    background: linear-gradient(135deg, #fff7f7 60%, #ffeaea 100%);
    padding: 56px 0 48px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.enhanced-cta.cta-section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #ef251f22 60%, transparent 100%);
    z-index: 0;
    animation: cta-bg-float 6s ease-in-out infinite alternate;
}

.enhanced-cta.cta-section::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, #ef251f11 60%, transparent 100%);
    z-index: 0;
    animation: cta-bg-float2 7s ease-in-out infinite alternate;
}

@keyframes cta-bg-float {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(30px) scale(1.08);
    }
}

@keyframes cta-bg-float2 {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-20px) scale(1.05);
    }
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 32px;
    box-shadow: 0 8px 32px #ef251f18;
    padding: 36px 32px 32px 32px;
}

.cta-header {
    display: flex;
    align-items: center;
    gap: 0.7em;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ef251f;
    margin-bottom: 8px;
    letter-spacing: -1px;
    text-shadow: 0 2px 12px #ef251f11;
}

.cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef251f 60%, #c71c16 100%);
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 2rem;
    box-shadow: 0 4px 18px #ef251f33;
    margin-right: 0.3em;
    border: 3px solid #fff;
    position: relative;
}

.pulse-anim {
    animation: cta-pulse 1.6s infinite alternate;
}

@keyframes cta-pulse {
    0% {
        box-shadow: 0 0 0 0 #ef251f33;
    }

    100% {
        box-shadow: 0 0 0 12px #ef251f11;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #ef251f 60%, #c71c16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-title {
    display: inline-block;
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 1.13rem;
    color: #222;
    font-weight: 500;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 0.7em 1.1em;
    box-shadow: 0 2px 8px #ef251f0a;
    text-align: left;
    width: 100%;
    max-width: 600px;
}

.cta-desc+.cta-desc {
    color: #444;
    font-weight: 400;
    margin-top: 0.2em;
}

.highlight-desc {
    background: linear-gradient(90deg, #fff 80%, #ffeaea 100%);
    border-left: 5px solid #ef251f;
    font-size: 1.18rem;
    font-weight: 600;
    color: #c71c16;
    box-shadow: 0 4px 18px #ef251f11;
}

.google-ads-highlight {
    color: #ef251f;
    font-weight: 800;
    background: #fffbe7;
    padding: 0 0.2em;
    border-radius: 6px;
}

.desc-bullet {
    color: #ef251f;
    font-size: 1.1em;
    margin: 0 0.3em 0 0;
}

.desc-emoji {
    font-size: 1.2em;
    margin-right: 0.2em;
}

.cta-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
    background: linear-gradient(90deg, #ef251f 60%, #c71c16 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.22rem;
    border-radius: 40px;
    padding: 1em 2.7em;
    box-shadow: 0 4px 18px #ef251f33;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-top: 18px;
    position: relative;
    overflow: hidden;
}

.cta-call-btn:active {
    transform: scale(0.98);
}

.cta-call-btn:hover,
.cta-call-btn:focus {
    background: linear-gradient(90deg, #c71c16 60%, #ef251f 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px #ef251f44;
}

.shine-anim {
    position: relative;
    overflow: hidden;
}

.shine-anim::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.0) 100%);
    transform: skewX(-20deg);
    animation: shine 2.2s infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    60% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

.cta-call-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #ef251f;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px #ef251f22;
    border: 2px solid #ef251f33;
}

.cta-call-number {
    font-size: 1.22rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.cta-trust-badges {
    display: flex;
    gap: 18px;
    margin-top: 18px;
    justify-content: center;
    align-items: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px #ef251f22;
    padding: 7px;
    border: 2px solid #ffeaea;
    transition: transform 0.18s;
}

.trust-badge img {
    width: 32px;
    height: 32px;
    display: block;
}

.trust-badge:hover {
    transform: scale(1.12) rotate(-4deg);
    box-shadow: 0 4px 18px #ef251f33;
}

@media (max-width: 700px) {
    .cta-container {
        padding: 18px 8px 18px 8px;
    }

    .cta-header {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 1.2rem;
    }

    .cta-desc {
        font-size: 1.01rem;
        padding: 0.6em 0.7em;
    }

    .highlight-desc {
        font-size: 1.05rem;
    }

    .cta-call-btn {
        font-size: 1.05rem;
        padding: 0.7em 1.3em;
    }

    .cta-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .cta-call-icon {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .trust-badge img {
        width: 24px;
        height: 24px;
    }
}

/* Custom hero sec */
.custom-hero-section {
    background: #fff;
    padding: 48px 0 32px 0;
    width: 100%;
}

.custom-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

.custom-hero-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.custom-hero-img-col {
    flex: 0 0 320px;
    max-width: 340px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-hero-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
}

.custom-hero-content-col {
    flex: 1 1 420px;
    min-width: 260px;
    max-width: 700px;
}

.custom-hero-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.custom-hero-title .highlight-traffic {
    color: #ef251f;
    font-weight: 900;
}

.custom-hero-title .highlight-leads {
    color: #ef251f;
    font-weight: 900;
}

.custom-hero-title .highlight-boost {
    color: #ef251f;
    font-weight: 900;
}

.custom-hero-subtitle {
    font-size: 1.08rem;
    color: #222;
    font-weight: 600;
    margin-bottom: 8px;
}

.custom-hero-desc {
    font-size: 0.99rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

@media (max-width: 900px) {
    .custom-hero-row {
        flex-direction: column;
        gap: 18px;
    }

    .custom-hero-img-col,
    .custom-hero-content-col {
        max-width: 100%;
    }

    .custom-hero-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .custom-hero-section {
        padding: 28px 0 18px 0;
    }

    .custom-hero-title {
        font-size: 1.1rem;
    }

    .custom-hero-img {
        max-width: 180px;
    }
}

/* Exp ad sec */
.expert-ads-section {
    background: #f6f5f5b5;
    padding: 48px 0 32px 0;
    width: 100%;
}

.expert-ads-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

.expert-ads-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.expert-ads-content {
    flex: 1 1 420px;
    min-width: 260px;
    max-width: 700px;
}

.expert-ads-title {
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.expert-ads-title .highlight-main {
    color: #ef251f;
    font-weight: 900;
    display: block;
}

.expert-ads-title .highlight-secondary {
    color: #222;
    font-weight: 800;
    display: block;
}

.expert-ads-subtitle {
    font-size: 1.08rem;
    color: #000000;
    font-weight: 800;

}

.expert-ads-desc {
    font-size: 0.99rem;
    color: #090909;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.expert-ads-img-col {
    flex: 0 0 340px;
    max-width: 380px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-ads-img {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .expert-ads-row {
        flex-direction: column;
        gap: 18px;
    }

    .expert-ads-img-col,
    .expert-ads-content {
        max-width: 100%;
    }

    .expert-ads-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .expert-ads-section {
        padding: 28px 0 18px 0;
    }

    .expert-ads-title {
        font-size: 1.5rem;
    }

    .expert-ads-img {
        max-width: 180px;
    }

    .expert-ads-desc {
        font-size: 14px;
    }

    .expert-ads-subtitle {
        font-size: 14px;
    }

    .expert-ads-content {
        flex: 1 1 360px;
    }

    .expert-ads-img-col {
        flex: 0 0 200px;
    }
}

/* Location css */
.location-section {
    position: relative;
    background: linear-gradient(135deg, #fff7f7 60%, #ffeaea 100%);
    padding: 56px 0 48px 0;
    margin-top: 0;
    overflow: hidden;
    z-index: 1;
}

.location-bg-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 320px;
    background: radial-gradient(circle, #ef251f22 60%, transparent 100%);
    z-index: 0;
    pointer-events: none;
    animation: location-bg-float 7s ease-in-out infinite alternate;
}

@keyframes location-bg-float {
    0% {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    100% {
        transform: translateX(-50%) translateY(30px) scale(1.08);
    }
}

.location-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 18px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.location-heading {
    font-size: 2.1rem;
    font-weight: 900;
    color: #222;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.location-heading-icon img {
    filter: drop-shadow(0 2px 8px #ef251f33);
    border-radius: 50%;
    background: #fff;
    padding: 4px;
}

.location-india-gradient {
    background: linear-gradient(90deg, #ef251f 30%, #ff7e5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 900;
}

.location-subtitle {
    font-size: 1.08rem;
    color: #ef251f;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.location-marker {
    color: #ef251f;
    font-size: 1.2em;
    margin-right: 2px;
}

/* --- REWRITE STARTS HERE --- */
.location-links {
    font-size: 1.08rem;
    color: #444;
    /* max-width: 1000px; */
    margin: 0 auto 18px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px 16px;
    position: relative;
    z-index: 2;
    justify-items: stretch;
    align-items: stretch;
}

.location-link {
    color: #ef251f;
    text-decoration: none;
    font-weight: 700;
    background: #fff;
    border-radius: 18px;
    padding: 12px 0;
    box-shadow: 0 2px 8px #ef251f11;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1.5px solid #ef251f22;
    min-width: 0;
    min-height: 44px;
    text-align: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-size: 1.05rem;
}

.location-link:hover {
    background: #ef251f;
    color: #fff;
    box-shadow: 0 4px 18px #ef251f33;
    transform: translateY(-2px) scale(1.07);
    text-decoration: none;
}

/* Remove dots for new grid design */
.location-dot {
    display: none !important;
}

.location-cta {
    margin-top: 28px;
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.location-cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #ef251f 60%, #ff7e5f 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    padding: 12px 32px;
    border-radius: 32px;
    box-shadow: 0 4px 18px #ef251f33;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.location-cta-btn:hover {
    background: linear-gradient(90deg, #ff7e5f 60%, #ef251f 100%);
    box-shadow: 0 8px 28px #ef251f44;
    transform: translateY(-2px) scale(1.04);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 900px) {
    .location-heading {
        font-size: 1.4rem;
        display: block;
    }

    .location-links {
        font-size: 0.98rem;
        max-width: 100%;
        gap: 8px 8px;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .location-link {
        padding: 10px 0;
        font-size: 0.98rem;
        min-height: 38px;
    }

    .location-cta-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 600px) {
    .location-section {
        padding: 28px 0 18px 0;
    }

    .location-heading {
        font-size: 1.4rem;
    }

    .location-links {
        font-size: 0.93rem;
        gap: 6px 6px;
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    }

    .location-link {
        padding: 7px 0;
        font-size: 12px;
        min-height: 32px;
    }

    .location-cta-btn {
        font-size: 0.98rem;
        padding: 8px 14px;
    }
}

/* Testimonial sect */
.testimonial-section {
    background-color: #f8f9fa;
    padding: 20px 0;
}

.section-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
    text-align: center;

    line-height: 1.4;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    /* background: linear-gradient(135deg, var(--primary-color), #c82333); */
    background: var(--primary-color);
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.card-header h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.profile-img {
    display: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    position: absolute;
    top: 15px;
    right: 25px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 40px 30px 30px;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 3px;
}

.stars i.empty {
    color: #e9ecef;
}

.testimonial-text {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .profile-img {
        width: 60px;
        height: 60px;
        top: 20px;
        right: 20px;
    }

    .card-header {
        padding: 20px 25px;
    }

    .card-body {
        padding: 30px 25px 0px;
    }
}

/* revenu */
.revenue-engine-section {
    background: linear-gradient(90deg, #fff 60%, #fceaea 100%);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.revenue-engine-title {
    font-weight: 800;
    color: #ef251f;
}

.revenue-engine-title .revenue-engine-highlight {
    color: #2D3748;
}

.revenue-engine-lead {
    font-size: 1.18rem;
    color: #333;
}

.revenue-engine-lead .revenue-engine-lead-icon {
    font-size: 1.5rem;
    vertical-align: middle;
    margin-right: 0.3em;
    color: #ef251f;
}

.revenue-engine-btns .btn {
    font-weight: 600;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.revenue-engine-btns {
    gap: 1rem;
}

.revenue-engine-alert {
    max-width: 500px;
    font-size: 1.08rem;
}

.revenue-engine-alert .revenue-engine-alert-icon {
    font-size: 1.3rem;
    vertical-align: middle;
    margin-right: 0.3em;
    color: #ef251f;
}
@media screen and (max-width:576px){
    .revenue-engine-btns .btn {
        justify-content: center;
        width: 100%;
    }
}
/* Performance table */
.proof-performance-section {
    background: linear-gradient(135deg, #fff 60%, #fbeee6 100%);
    padding: 4rem 0 3rem 0;
}

.proof-performance-section .section-title {
    color: #ef251f;
    font-size: 2.2rem;
    margin-bottom: 0.5em;
    font-weight: 800;
    letter-spacing: -1px;
}

.proof-performance-section .section-title span {
    color: #222;
}

.proof-performance-section .section-subtitle {
    color: #444;
    font-size: 1.15rem;
    margin-bottom: 0.5em;
}

.proof-performance-table {
    width: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px #ef251f13;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
}

.proof-performance-table thead tr {
    background: #ef251f;
    color: #fff;
    font-size: 1.1rem;
}

.proof-performance-table th,
.proof-performance-table td {
    padding: 1.1em 0.7em;
    border: none;
    text-align: center;
}

.proof-performance-table tbody tr {
    font-size: 1.08rem;
    transition: background 0.2s;
}

.proof-performance-table tbody tr:hover {
    background: #fbeee6;
}

.proof-performance-table .fw-bold {
    font-weight: 700;
}

.proof-performance-table .badge {
    background: #43a047;
    color: #fff;
    border-radius: 12px;
    padding: 0.4em 1em;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.proof-performance-section .fa-trophy {
    color: #ef251f;
    margin-right: 0.4em;
}

.proof-performance-section .fa-check-circle {
    color: #ef251f;
}

.proof-performance-section .data-note {
    color: #ef251f;
    font-weight: 600;
    font-size: 1.1rem;
}

.proof-performance-section .data-note span {
    color: #222;
    font-weight: 500;
}

@media (max-width: 768px) {
    .proof-performance-section {
        padding: 2.2rem 0 1.5rem 0;
    }

    .proof-performance-section .section-title {
        font-size: 1.4rem;
    }

    .proof-performance-table th,
    .proof-performance-table td {
        padding: 0.7em 0.3em;
        font-size: 0.98rem;
    }
}

@media (max-width: 576px) {
    .proof-performance-section {
        padding: 1.2rem 0 0.5rem 0;
    }

    .proof-performance-table {
        font-size: 14px;
    }

    .proof-performance-section .section-title {
        font-size: 1.5rem;
    }
}

/* make differnrt comparision  */
.comparison-section {
    background-color: #f8f9fa;
    padding: 4rem 1rem;
}

.comparison-title {
    font-size: 2rem;
    font-weight: 800;
    color: #212529;
}

.comparison-title span {
    color: var(--primary-color);
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.comparison-row {
    display: flex;
    border-top: 1px solid #dee2e6;
}

.comparison-row:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-cell {
    flex: 0 0 33.3333%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-left: 1px solid #dee2e6;
    text-align: center;
}

.comparison-cell:first-child {
    justify-content: flex-start;
    border-left: none;
}

.comparison-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.comparison-check,
.comparison-cross {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.comparison-check {
    background-color: #f8d7da;
    color: var(--primary-color);
}

.comparison-cross {
    background-color: #f1f3f5;
    color: #adb5bd;
}

/* Responsive: On mobile, first column is wider, last two are smaller */
@media (max-width: 576px) {
    .comparison-row {
        flex-wrap: nowrap;
    }

    .comparison-cell {
        /* First column: 60%, others: 20% each */
        flex: 0 0 20%;
        padding: 1rem 0.3rem;
        font-size: 0.98rem;
    }

    .comparison-cell:first-child {
        flex: 0 0 60%;
        justify-content: flex-start;
        text-align: left;
        padding-left: 1rem;
    }

    .comparison-feature {
        gap: 0.4rem;
        font-size: 0.98rem;
    }

    .comparison-check,
    .comparison-cross {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .comparison-section {
        padding-bottom: 25px;
    }
}

/* responsive */
@media screen and (max-width:576px) {
    h2 {
        font-size: 1.5rem;
    }

    .comparison-title {
        font-size: 1.5rem;
    }



}