/* ==========================================================================
   Header & Navigation Styles
   ========================================================================== */

/* Country Selector & Call Badge Bar */
.country-call-bar {
    background: var(--gradient-secondary);
    padding: 6px 0;
}

.country-call-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.country-selector {
    position: relative;
}

.country-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.country-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.country-btn i {
    font-size: 0.9rem;
}

.country-btn .fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.country-btn.active .fa-chevron-down {
    transform: rotate(180deg);
}

.country-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.country-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--dark-color);
    transition: var(--transition);
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
}

.country-item:last-child {
    border-bottom: none;
}

.country-item:hover {
    background: #f9fafb;
    color: var(--primary-color);
}

.country-item .flag {
    font-size: 1.5rem;
}

.country-item .phone {
    margin-left: auto;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
}

.call-badge-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.call-badge-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background: var(--white);
}

.call-badge-btn i {
    font-size: 1.5rem;
    color: var(--theme-cyan);
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.call-badge-text {
    display: flex;
    flex-direction: column;
}

.call-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.call-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--theme-cyan);
}

/* Services Navigation Menu */
.services-navigation {
    background: linear-gradient(135deg, #06B6D4 0%, #1E3A5F 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.15);
    width: 100%;
}

.services-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.services-menu .menu-item {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
}

.services-menu .menu-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 15px 20px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    justify-content: center;
}

.services-menu .menu-item:last-child > a {
    border-right: none;
}

.services-menu .menu-item > a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.services-menu .menu-item > a i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.services-menu .menu-item.active > a i,
.services-menu .menu-item:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown Submenu */
.dropdown-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.services-menu .menu-item:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-submenu li {
    margin: 0;
    padding: 0;
}

.dropdown-submenu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--dark-color) !important;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-submenu li a i {
    width: 18px;
    text-align: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.dropdown-submenu li a:hover {
    background: #f9fafb;
    border-left-color: var(--primary-color);
    padding-left: 25px;
    color: var(--primary-color);
}

.dropdown-submenu li a:hover i {
    transform: scale(1.1);
}

.top-bar {
    background: #324755;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links-top {
    display: flex;
    gap: 8px;
}

.social-links-top a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    font-size: 0.75rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-links-top a:nth-child(1) {
    background: transparent;
}

.social-links-top a:nth-child(2) {
    background: transparent;
}

.social-links-top a:nth-child(3) {
    background: transparent;
}

.social-links-top a:nth-child(4) {
    background: transparent;
}

.social-links-top a:hover {
    background: #06B6D4;
    border-color: #06B6D4;
    transform: scale(1.1);
    color: #ffffff;
}

.top-contact-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
}

.top-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    transition: var(--transition);
    text-decoration: none;
}

.top-link:hover {
    color: #06B6D4;
}

.top-link i {
    color: #ffffff;
    font-size: 0.875rem;
}

.top-link:hover i {
    color: #06B6D4;
}

.top-link i.fa-whatsapp {
    color: #ffffff;
    font-size: 1.1rem;
}

.top-link:hover i.fa-whatsapp {
    color: #06B6D4;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    margin: 0 5px;
}

.btn-consultation {
    padding: 6px 20px;
    background: var(--gradient-warm);
    color: var(--dark-color);
    border-radius: 5px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.btn-consultation:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-cyan);
}

.main-navigation {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1000;
    transition: var(--transition);
}

.main-navigation.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    gap: 30px;
}

.site-branding a {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
}

.site-branding img,
.custom-logo-link img,
.custom-logo {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
}

.site-logo-text {
    display: inline-flex;
    align-items: center;
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
}

.logo-v4 {
    color: #06b6d4;
    font-weight: 800;
    font-size: 2rem;
}

.logo-education {
    color: #1a1a2e;
    font-weight: 600;
    font-size: 1.5rem;
    margin-left: 2px;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    gap: 0;
    margin: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
    padding: 0 18px;
    border-right: 1px solid #d1d5db;
}

.nav-menu li:last-child {
    border-right: none;
}

.nav-menu a {
    font-weight: 500;
    color: #1a1a2e;
    padding: 6px 0;
    display: block;
    position: relative;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Header CTA But0;
    flex-shrink: 0*/
.header-cta {
    margin-left: 20px;
}

.call-us-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #1BA8BC;
}

.call-us-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.call-us-badge i {
    font-size: 1.5rem;
    color: #1BA8BC;
    animation: ring 2s ease-in-out infinite;
}

.call-badge-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.call-badge-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.call-badge-number {
    font-size: 1rem;
    font-weight: 700;
    color: #1BA8BC;
}

.btn-book-call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-cyan);
    background: var(--gradient-primary);
}

.btn-book-call i {
    font-size: 0.9rem;
}

/* Services Menu Bar */
.services-menu-bar {
    background: var(--theme-navy);
    padding: 0;
    box-shadow: var(--shadow-md);
}

.services-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-menu-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.service-menu-item:last-child {
    border-right: none;
}

.service-menu-item a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    color: var(--white);
    transition: var(--transition);
    gap: 8px;
}

.service-menu-item a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.service-menu-item i {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.service-menu-item span {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.service-menu-item {
    position: relative;
}

.service-menu-item .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    max-width: 220px;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    width: max-content;
}

.service-menu-item:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-menu-item .sub-menu li {
    position: relative;
}

.service-menu-item .sub-menu a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: var(--dark-color) !important;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
    gap: 8px;
    flex-direction: row;
    justify-content: flex-start;
    white-space: nowrap;
}

.service-menu-item .sub-menu a:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.service-menu-item .sub-menu i {
    font-size: 1rem;
}

.service-menu-item .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    border-radius: 8px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10000;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

body.menu-open {
    overflow: hidden;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

/* Fix for WordPress admin bar overlap */
.admin-bar .mobile-menu {
    top: 46px;
    height: calc(100vh - 46px);
}

@media screen and (max-width: 782px) {
    .admin-bar .mobile-menu {
        top: 46px;
        height: calc(100vh - 46px);
    }
}

@media screen and (min-width: 783px) {
    .admin-bar .mobile-menu {
        top: 32px;
        height: calc(100vh - 32px);
    }
}

.mobile-menu-content {
    padding: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #06B6D4;
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: var(--transition);
    border-radius: 6px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 0.5);
}

.mobile-menu-close i {
    font-weight: 900;
}

.mobile-main-nav,
.mobile-services-nav {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-nav-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #6b7280;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.mobile-nav-menu,
.mobile-services-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li,
.mobile-services-menu > li {
    margin-bottom: 5px;
}

.mobile-nav-menu a,
.mobile-services-menu > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--dark-color);
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    background: transparent;
}

.mobile-nav-menu a:hover,
.mobile-services-menu > li > a:hover {
    background: #f3f4f6;
    color: #06B6D4;
}

.mobile-nav-menu a i,
.mobile-services-menu a i:first-child {
    width: 20px;
    color: #06B6D4;
    font-size: 1rem;
}

.submenu-toggle {
    justify-content: space-between;
    position: relative;
}

.toggle-icon {
    margin-left: auto;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.has-submenu.active .toggle-icon {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    margin: 5px 0 0 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.has-submenu.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu li {
    margin-bottom: 2px;
}

.mobile-submenu a {
    padding: 10px 15px 10px 45px;
    font-size: 0.9rem;
    background: #f9fafb;
}

.mobile-submenu a:hover {
    background: #e5e7eb;
}

.mobile-menu-cta {
    padding: 15px 20px 20px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.mobile-cta {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    background: #06B6D4;
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.2);
}

.mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
    background: #0891b2;
}

.mobile-cta i {
    font-size: 1rem;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */

.hero-slider-section {
    position: relative;
    min-height: 450px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: var(--gradient-subtle);
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-section {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.hero-bg-image {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    width: 100%;
    padding: 60px 0;
}

.hero-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    opacity: 1;
    z-index: 0;
    transition: background 0.3s ease, opacity 0.3s ease;
}

/* Hero Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(3, 105, 161, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    pointer-events: all;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
    border-color: transparent;
}

.hero-slider-prev i,
.hero-slider-next i {
    font-size: 1.2rem;
    color: var(--dark-color);
}

.hero-slider-prev:hover i,
.hero-slider-next:hover i {
    color: var(--white);
}

/* Hero Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-dot.active {
    background: var(--white);
    border-color: var(--primary-color);
    width: 14px;
    height: 14px;
}

.hero-bg-image .container {
    position: relative;
    z-index: 1;
}

.hero-content-wrapper {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.hero-main-title {
    font-size: 36px;
    color: #1e3a5f;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1rem !important;
    color: #0c4a6e !important;
    margin-bottom: 2rem !important;
    font-weight: 500 !important;
    line-height: 1.8 !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 1) !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 999 !important;
    background: rgba(255, 255, 255, 0.85) !important;
    padding: 12px 25px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Recognition Section */
.recognition-section {
    margin-bottom: 1.5rem;
}

.recognition-label {
    display: inline-block;
    background: transparent;
    color: #0891b2;
    padding: 10px 35px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid #0891b2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.recognition-badges {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 12px;
    box-shadow: var(--shadow-sm) !important;
    border: 1px solid rgba(3, 105, 161, 0.08) !important;
    transition: var(--transition-smooth);
    min-width: 180px;
    flex: 1;
    max-width: 220px;
    height: 120px;
    backdrop-filter: blur(5px);
}

.badge-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary-color) !important;
    background: var(--white) !important;
}

.badge-item .badge-logo {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.badge-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.badge-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
}

/* Hero Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 1rem;
}

.stat-box-hero {
    background: var(--white);
    padding: 22px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.stat-box-hero:nth-child(1) {
    background: linear-gradient(135deg, #ECFEFF 0%, #CFFAFE 100%);
    border-left-color: var(--theme-cyan);
}

.stat-box-hero:nth-child(2) {
    background: linear-gradient(135deg, #E6ECF2 0%, #D1D9E5 100%);
    border-left-color: var(--theme-navy);
}

.stat-box-hero:nth-child(3) {
    background: linear-gradient(135deg, #CFFAFE 0%, #A5F3FC 100%);
    border-left-color: var(--theme-cyan-dark);
}

.stat-box-hero:nth-child(4) {
    background: linear-gradient(135deg, #F0F4F8 0%, #E6ECF2 100%);
    border-left-color: var(--theme-navy-light);
}

.stat-box-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.stat-box-hero:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--primary-color);
}

.stat-box-hero:hover::before {
    opacity: 0.03;
}

.stat-box-hero > * {
    position: relative;
    z-index: 1;
}

.stat-icon-hero {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.stat-icon-hero i {
    font-size: 1.3rem;
    color: var(--white);
}

.stat-content-hero {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.stat-label-hero {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 600;
}

.stat-value-hero {
    font-size: 1.6rem;
    color: var(--dark-color);
    font-weight: 800;
}

/* Old hero slide styles - keep for other slides */

/* Old hero slide styles - keep for other slides */
.hero-slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-slide-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--dark-color);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-slide-text p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    background: var(--secondary-color);
}

.hero-slide-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-image svg {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   About Digital Marketing Section
   ========================================================================== */

.about-dm-section {
    background: var(--theme-navy-subtle);
    padding: 80px 0;
    position: relative;
}

.about-dm-section .container {
    padding: 0 60px !important;
}

@media (max-width: 768px) {
    .about-dm-section .container {
        padding: 0 30px !important;
    }
}

.about-dm-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.about-dm-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.about-dm-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: justify;
}

.about-dm-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-dm-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.about-dm-bottom {
    max-width: 100%;
}

.about-dm-bottom p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: justify;
}

@media (max-width: 968px) {
    .about-dm-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-dm-content h2 {
        font-size: 1.6rem;
    }
    
    .about-dm-image {
        order: -1;
    }
}

/* ==========================================================================
   Free Proposal CTA Section
   ========================================================================== */

.free-proposal-cta-section {
    background: var(--gradient-hero);
    padding: 50px 0;
    text-align: center;
}

.proposal-cta-content h2 {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.proposal-cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-bottom: 35px;
    font-weight: 500;
    line-height: 1.8;
}

.proposal-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-input-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.proposal-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.proposal-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .proposal-cta-content h2 {
        font-size: 1.6rem;
    }
    
    .form-input-wrapper {
        flex-direction: column;
        width: 100%;
    }
    
    .proposal-input,
    .btn-proposal {
        width: 100%;
    }
}

/* ==========================================================================
   Trusted Partners Section
   ========================================================================== */

.trusted-partners-section {
    background: var(--gradient-subtle);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.trusted-partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(3, 105, 161, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.trusted-partners-section .section-title h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.trusted-partners-section .section-subtitle {
    max-width: 100%;
    margin: 0 auto 50px;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.partner-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    min-height: 130px;
    border: 1px solid rgba(3, 105, 161, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-smooth);
    border-radius: 12px;
    z-index: 0;
}

.partner-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.partner-item:hover::before {
    opacity: 0.04;
}

.partner-item > * {
    position: relative;
    z-index: 1;
}

.partner-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 1199px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .trusted-partners-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partner-item {
        min-height: 100px;
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ==========================================================================
   Awards & Testimonials Combined Section
   ========================================================================== */

.awards-testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.awards-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230ea5e9" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center bottom;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

.awards-testimonials-section .container {
    position: relative;
    z-index: 1;
}

.awards-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.awards-column,
.testimonials-column {
    position: relative;
}

.awards-column .section-title,
.testimonials-column .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.awards-column .section-title h2,
.testimonials-column .section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.awards-column .section-title h2::after,
.testimonials-column .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.awards-column .section-subtitle,
.testimonials-column .section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* Awards Carousel Styles (within combined section) */
.awards-column .awards-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

.awards-column .awards-carousel {
    overflow: hidden;
    padding: 20px 0;
}

.awards-column .awards-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
}

/* Responsive Grid */
@media (max-width: 1199px) {
    .awards-testimonials-grid {
        gap: 40px;
    }
    
    .awards-column .section-title h2,
    .testimonials-column .section-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 991px) {
    .awards-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .awards-column .section-title h2,
    .testimonials-column .section-title h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .awards-testimonials-section {
        padding: 60px 0;
    }
    
    .awards-testimonials-grid {
        gap: 50px;
    }
    
    .awards-column .section-title h2,
    .testimonials-column .section-title h2 {
        font-size: 1.6rem;
    }
}

/* Keep existing award item styles */
.awards-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f0f0f0" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,133.3C672,117,768,107,864,122.7C960,139,1056,181,1152,186.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
}

.awards-section .container {
    position: relative;
    z-index: 1;
}

.awards-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.awards-section .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.awards-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.awards-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.awards-carousel {
    overflow: hidden;
    padding: 20px 0;
}

.awards-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
}

.award-item {
    flex: 0 0 auto;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    gap: 15px;
}

.award-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.2);
    border-color: var(--primary-color);
}

.award-logo {
    width: 100%;
    max-width: 150px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.award-item:hover .award-logo {
    filter: grayscale(0%);
}

.award-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
}

.awards-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.awards-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.awards-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.awards-prev {
    left: 0;
}

.awards-next {
    right: 0;
}

.awards-nav i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .award-item {
        width: 200px;
        padding: 20px;
    }
    
    .award-logo {
        max-width: 130px;
        max-height: 110px;
    }
    
    .awards-track {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .awards-section .section-title h2 {
        font-size: 2rem;
    }
    
    .awards-carousel-wrapper {
        padding: 0 50px;
    }
    
    .award-item {
        width: 180px;
        padding: 18px;
    }
    
    .award-logo {
        max-width: 120px;
        max-height: 100px;
    }
    
    .award-name {
        font-size: 0.85rem;
    }
    
    .awards-track {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .awards-section {
        padding: 60px 0;
    }
    
    .awards-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .awards-carousel-wrapper {
        padding: 0 40px;
    }
    
    .award-item {
        width: 160px;
        padding: 15px;
    }
    
    .award-logo {
        max-width: 110px;
        max-height: 90px;
    }
    
    .award-name {
        font-size: 0.8rem;
    }
    
    .awards-nav {
        width: 40px;
        height: 40px;
    }
    
    .awards-nav i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .awards-section .section-title h2 {
        font-size: 1.5rem;
    }
    
    .awards-carousel-wrapper {
        padding: 0 35px;
    }
    
    .award-item {
        width: 120px;
        height: 85px;
        padding: 12px;
    }
    
    .awards-track {
        gap: 20px;
    }
    
    .awards-nav {
        width: 35px;
        height: 35px;
    }
}

/* ==========================================================================
   Case Studies Track Record Section
   ========================================================================== */

.case-studies-track-record {
    background: var(--white);
    padding: 60px 0;
    overflow: hidden;
}

.case-studies-track-record .section-title h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.case-studies-track-record .section-subtitle {
    max-width: 100%;
    margin: 0 auto 50px;
    color: var(--text-color);
    line-height: 1.7;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    grid-auto-flow: row;
    gap: 30px;
    margin-top: 50px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.case-study-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    background: var(--gradient-subtle);
    min-height: 240px;
    height: auto;
    max-width: 100%;
    border: 1px solid rgba(3, 105, 161, 0.05);
    cursor: pointer;
    position: relative;
}

.case-study-card.clickable-card::after {
    content: "Click to view details";
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(34, 211, 238, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
}

.case-study-card.clickable-card:hover::after {
    opacity: 1;
}

.case-study-card.expanded {
    box-shadow: 0 8px 30px rgba(34, 211, 238, 0.3);
    border-color: #22d3ee;
}

.case-card-main {
    display: flex;
    width: 100%;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(3, 105, 161, 0.1);
}

.case-study-image {
    width: 38%;
    flex-shrink: 0;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-info {
    width: 62%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #22d3ee 0%, #22d3ee 100%);
    padding: 25px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.case-study-industry {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.2;
}

.case-study-tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.case-study-tags .tag {
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 11px;
    border-radius: 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e293b;
}

.case-study-results {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.result-item {
    flex: 1;
}

.result-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.result-value {
    font-size: 1.85rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 3px;
    line-height: 1;
}

.result-desc {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(30, 41, 59, 0.8);
    line-height: 1.1;
}

@media (max-width: 1199px) {
    .case-studies-grid {
        max-width: 950px;
        gap: 22px;
    }
}

@media (max-width: 991px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 600px;
    }
    
    .case-study-card {
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    .case-study-card {
        min-height: auto;
    }
    
    .case-card-main {
        flex-direction: column;
    }
    
    .case-study-image {
        width: 100%;
        height: 200px;
    }
    
    .case-study-image img {
        min-height: 200px;
    }
    
    .case-study-info {
        width: 100%;
    }
    
    .case-study-card.clickable-card::after {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    .case-studies-track-record .section-title h2 {
        font-size: 1.8rem;
    }
    
    .result-value {
        font-size: 1.6rem;
    }
}

/* Case Study Details Section */
.case-study-card {
    position: relative;
}

.case-card-main {
    display: flex;
    width: 100%;
}

.case-study-details {
    padding: 30px;
    background: #f8fafc;
    border-top: 3px solid #22d3ee;
    width: 100%;
    display: none;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

.company-logos {
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.company-logo-placeholder {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.company-logo-placeholder span {
    font-weight: 600;
    color: #1e293b;
}

.rankings-section {
    margin-bottom: 25px;
}

.rankings-section h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.rankings-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 20px;
}

.rankings-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.rankings-table thead {
    background: linear-gradient(135deg, #22d3ee, #0891b2);
}

.rankings-table th {
    padding: 12px 20px;
    text-align: left;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.rankings-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
}

.rankings-table tbody tr:last-child {
    border-bottom: none;
}

.rankings-table td {
    padding: 12px 20px;
    color: #475569;
}

.rankings-table td:last-child {
    text-align: center;
    font-weight: 600;
    color: #22d3ee;
    font-size: 1.1rem;
}

.overall-ranking {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.overall-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.overall-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #22d3ee;
    margin-bottom: 5px;
}

.overall-desc {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.case-document {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.document-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-icon i {
    font-size: 40px;
    color: white;
}

.case-document h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-download:hover {
    background: linear-gradient(135deg, #0891b2, #22d3ee);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.3);
}

.case-study-details .rankings-table th,
.case-study-details .rankings-table td {
    padding: 10px 12px;
    font-size: 0.85rem;
}

.case-study-details .overall-value {
    font-size: 2rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
    background: var(--white);
    padding: 50px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.service-card {
    background: var(--primary-light);
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 2px solid rgba(3, 105, 161, 0.15);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    transition: all 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 16px;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-md);
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    background: transparent;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.service-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   How We Work Section
   ========================================================================== */

.how-we-work-section {
    background: var(--gray-50);
    overflow: hidden;
    padding: 60px 0;
}

.how-we-work-section .section-subtitle {
    max-width: 100%;
    text-align: center;
}

.how-we-work-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 3rem;
}

.work-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-illustration {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.animated-illustration svg {
    width: 100%;
    height: auto;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.pulse-circle {
    animation: pulse 3s ease-in-out infinite;
}

/* Rotate Animation */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rotate-gear {
    animation: rotate 4s linear infinite;
    transform-origin: center;
}

/* Float Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.float-icon {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Notification */
@keyframes pulseNotification {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
}

.pulse-notification {
    animation: pulseNotification 1.5s ease-in-out infinite;
}

/* Bounce Dots */
@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.bounce-dot {
    animation: bounce 1s ease-in-out infinite;
}

.bounce-dot:nth-child(8) { animation-delay: 0.1s; }
.bounce-dot:nth-child(9) { animation-delay: 0.2s; }
.bounce-dot:nth-child(10) { animation-delay: 0.3s; }
.bounce-dot:nth-child(11) { animation-delay: 0.4s; }
.bounce-dot:nth-child(12) { animation-delay: 0.5s; }

/* Draw Line Animation */
@keyframes drawLine {
    0% { stroke-dasharray: 0, 500; }
    100% { stroke-dasharray: 500, 0; }
}

.draw-line {
    stroke-dasharray: 500;
    animation: drawLine 2s ease-in-out infinite;
}

.illustration-circle {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.illustration-circle svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.work-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.work-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px 25px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    transition: var(--transition-smooth);
    border-left: 4px solid rgba(3, 105, 161, 0.3);
    box-shadow: var(--shadow-sm);
}

.work-step:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border-left-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
    opacity: 0.8;
}

.step-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-weight: 700;
}

.step-content p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   Case Studies Section
   ========================================================================== */

.case-studies-section {
    background: var(--white);
}

.case-studies-section .section-subtitle {
    max-width: 100%;
}

.case-studies-content {
    margin-top: 3rem;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    max-width: 100%;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.clickable-company-card {
    cursor: pointer;
    position: relative;
}

.clickable-company-card::after {
    content: "Click to view";
    position: absolute;
    top: -5px;
    right: -10px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

.clickable-company-card:hover::after {
    opacity: 1;
}

.clickable-company-card.active .logo-circle {
    border-color: #06b6d4;
    border-width: 3px;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
    background: linear-gradient(135deg, #ecfeff 0%, #ffffff 100%);
}

.clickable-company-card.active .logo-circle i {
    color: #06b6d4 !important;
}

.clickable-company-card.active span {
    color: #06b6d4;
    font-weight: 700;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.logo-circle i {
    font-size: 3rem;
    color: #ffffff !important;
}

.logo-circle img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.client-logo:hover .logo-circle {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.client-logo span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
}

.case-study-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.rankings-section {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.rankings-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.rankings-date {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.rankings-table {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.table-header .table-cell {
    padding: 12px 15px;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    border-bottom: 1px solid #e5e7eb;
    transition: var(--transition);
}

.table-row:hover {
    background: #f8fafc;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 12px 15px;
    font-size: 0.9rem;
}

.table-row .table-cell:first-child {
    color: var(--dark-color);
}

.table-row .table-cell:last-child {
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
}

.case-study-preview {
    background: var(--light-color);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    box-shadow: var(--shadow-md);
}

.case-study-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.case-study-link:hover {
    transform: translateY(-5px);
}

.case-study-link .preview-placeholder {
    transition: var(--transition);
}

.case-study-link:hover .preview-placeholder i {
    transform: scale(1.1);
    opacity: 0.5;
}

.preview-placeholder {
    text-align: center;
    color: var(--text-color);
}

.preview-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.preview-placeholder p {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.preview-placeholder .download-hint {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.preview-placeholder .download-hint i {
    font-size: 0.9rem;
    margin-right: 5px;
}

/* ==========================================================================
   How Can We Help You Grow Section
   ========================================================================== */

.help-you-grow-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.help-you-grow-section .section-subtitle {
    max-width: 100%;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 3rem;
}

.help-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.help-item:nth-child(1) {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.help-item:nth-child(2) {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.help-item:nth-child(3) {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.help-item:nth-child(4) {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.help-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.help-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.help-icon svg {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.help-item:hover .help-icon svg {
    transform: scale(1.1);
}

.help-item h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin: 0;
    font-weight: 700;
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.feature-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.feature-item:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-color);
}

/* ==========================================================================
   Stats Section
   ========================================================================== */

.stats-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 5px;
}

.stat-box i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    margin-bottom: 0.3rem;
}

.stat-box .stat-text {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
    background: var(--gradient-subtle);
    padding: 60px 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(3, 105, 161, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.author-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-color);
    margin: 0;
}

/* ==========================================================================
/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    color: var(--dark-color);
    text-align: center;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content h2 {
    color: var(--primary-dark);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    opacity: 0.9;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    align-items: center;
}

.cta-buttons .btn-ghost-light {
    border: 2px solid #ffffff;
    background: rgba(255, 255, 255, 0.9);
    color: #0ea5e9;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-ghost-light:hover {
    background: #ffffff;
    border-color: #0ea5e9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.cta-divider {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    opacity: 0.7;
}

.cta-section .btn-primary {
    background: var(--gradient-warm);
    color: var(--theme-navy);
    padding: 15px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-cyan);
    border: 2px solid transparent;
}

.cta-section .btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    background: var(--accent-dark);
    color: var(--white);
}

.cta-section .btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 15px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: var(--transition-smooth);
    background: transparent;
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--theme-navy);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Blog Section
   ========================================================================== */

.blog-section {
    background: var(--gray-50);
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-placeholder {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder i {
    font-size: 3rem;
    color: var(--white);
    opacity: 0.5;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-color);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.blog-content h3 a {
    color: var(--dark-color);
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 12px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 3rem;
    align-items: start;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-details p,
.contact-details a {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 45px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    max-width: 100%;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: #ffffff;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
    cursor: pointer;
}

.contact-form select::-ms-expand {
    display: none;
}

.contact-form select option {
    padding: 10px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Contact Form 7 Specific Styles */
.wpcf7 {
    width: 100%;
}

.wpcf7 form {
    width: 100%;
}

.wpcf7 .form-row {
    margin-bottom: 20px;
}

.wpcf7 p {
    margin-bottom: 20px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100% !important;
    padding: 15px 20px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    font-family: inherit !important;
    transition: all 0.3s ease !important;
    background-color: #ffffff !important;
    color: #1e293b !important;
    box-sizing: border-box !important;
}

.wpcf7 select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e293b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 20px !important;
    padding-right: 45px !important;
    cursor: pointer !important;
}

.wpcf7 select::-ms-expand {
    display: none;
}

.wpcf7 select option {
    padding: 10px;
    background: #ffffff;
    color: #1e293b;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none !important;
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1) !important;
}

.wpcf7 textarea {
    resize: vertical !important;
    min-height: 120px !important;
    font-family: inherit !important;
}

.wpcf7-submit {
    width: 100% !important;
    padding: 15px 30px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%) !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.wpcf7-submit:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0891b2 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3) !important;
}

.wpcf7-submit:active {
    transform: translateY(0) !important;
}

.wpcf7-spinner {
    margin-left: 10px;
    display: none;
}

.wpcf7 form.submitting .wpcf7-spinner {
    display: inline-block;
}

.wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 15px 20px !important;
    border-radius: 10px !important;
    border: 2px solid !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

.wpcf7-mail-sent-ok {
    border-color: #10b981 !important;
    background-color: #d1fae5 !important;
    color: #065f46 !important;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    border-color: #ef4444 !important;
    background-color: #fee2e2 !important;
    color: #991b1b !important;
}

.wpcf7-not-valid-tip {
    color: #ef4444 !important;
    font-size: 0.875rem !important;
    margin-top: 5px !important;
    display: block !important;
    font-weight: 500 !important;
}

.wpcf7 .ajax-loader {
    display: none;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ef4444 !important;
    background-color: #fee2e2 !important;
    color: #991b1b !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #10b981 !important;
    background-color: #d1fae5 !important;
    color: #065f46 !important;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #f59e0b !important;
    background-color: #fef3c7 !important;
    color: #92400e !important;
}

/* Placeholder styling */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #94a3b8 !important;
    opacity: 1 !important;
}

.wpcf7 input::-ms-input-placeholder,
.wpcf7 textarea::-ms-input-placeholder {
    color: #94a3b8;
}

/* Remove default Contact Form 7 styles that might conflict */
.wpcf7 form .wpcf7-form-control-wrap {
    display: block;
}

.wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    cursor: pointer;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

.site-footer {
    background: var(--dark-color);
    color: var(--white);
}

.footer-main {
    padding: 60px 0 30px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    display: block;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-bottom: 15px;
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding-top: 10px;
    padding-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-widget-column .widget-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-menu,
.footer-contact {
    list-style: none;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-menu a i {
    font-size: 0.75rem;
    color: var(--primary-color);
}

.footer-menu a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.separator {
    color: rgba(255, 255, 255, 0.4);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .recognition-badges {
        gap: 20px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    /* Services Menu Tablet */
    .services-menu {
        flex-wrap: wrap;
    }
    
    .service-menu-item {
        flex: 0 0 25%;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .service-menu-item:nth-child(4n) {
        border-right: none;
    }
    
    /* How We Work Tablet */
    .how-we-work-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .work-illustration {
        order: -1;
    }
    
    /* Case Studies Tablet */
    .case-study-showcase {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        gap: 25px;
    }
    
    /* Help Grid Tablet */
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Hero Tablet */
    .hero-main-title {
        font-size: 2rem;
    }
    
    .recognition-badges {
        gap: 15px;
    }
    
    .badge-item {
        min-width: 100px;
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    /* Top Bar Mobile - Single Horizontal Row */
    .top-bar {
        padding: 6px 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .top-bar-left {
        width: 100%;
        justify-content: center;
    }
    
    .top-bar-right {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }
    
    /* Contact details in single horizontal row */
    .top-contact-links {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        font-size: 0.7rem;
        justify-content: center;
        width: 100%;
        padding: 0 10px;
    }
    
    .top-link {
        font-size: 0.7rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .top-link span {
        display: inline;
    }
    
    .separator {
        display: inline-block;
        margin: 0 3px;
    }
    
    /* Free Website Audit Button - Centered */
    .btn-consultation {
        padding: 8px 20px;
        font-size: 0.8rem;
        display: inline-block;
        width: auto;
        margin: 0 auto;
    }
    
    .social-links-top {
        display: none;
    }
    
    /* Main Navigation Mobile - Toggle Left, Logo Center, Call Right */
    .nav-wrapper {
        display: grid;
        grid-template-columns: 50px 1fr 140px;
        align-items: center;
        padding: 8px 0;
        gap: 10px;
    }
    
    /* Mobile Menu Toggle - Left */
    .mobile-menu-toggle {
        display: flex;
        order: 1;
        grid-column: 1;
        justify-self: start;
    }
    
    /* Logo - Center */
    .site-branding {
        order: 2;
        grid-column: 2;
        justify-self: center;
        text-align: center;
    }
    
    .site-branding img,
    .custom-logo-link img,
    .custom-logo {
        max-height: 45px;
    }
    
    /* Call Us Now Button - Right - Compact */
    .header-cta {
        order: 3;
        grid-column: 3;
        justify-self: end;
        margin-left: 0;
    }
    
    .call-us-badge {
        padding: 6px 10px;
        gap: 6px;
        border: 1px solid var(--primary-color);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }
    
    .call-us-badge i {
        font-size: 1.1rem;
    }
    
    .call-badge-info {
        gap: 2px;
    }
    
    .call-badge-label {
        font-size: 0.65rem;
        line-height: 1;
    }
    
    .call-badge-number {
        font-size: 0.75rem;
        line-height: 1;
    }
    
    /* Hide desktop nav menu */
    .nav-menu-wrapper {
        display: none;
    }
    
    .nav-menu {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .btn-book-call {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* Services Menu Mobile */
    .services-navigation {
        display: none !important;
    }
    
    .services-menu-bar {
        padding: 10px 0;
    }
    
    .services-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .services-menu .menu-item {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .services-menu .menu-item:last-child {
        border-bottom: none;
    }
    
    .services-menu .menu-item > a {
        padding: 14px 15px;
        justify-content: flex-start;
        border-right: none;
    }
    
    .services-menu .menu-item > a i:first-child {
        font-size: 1.2rem;
    }
    
    .services-menu .menu-item > a i.fa-chevron-down {
        margin-left: auto;
    }
    
    .dropdown-submenu {
        position: static;
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        display: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .services-menu .menu-item:hover .dropdown-submenu {
        display: none;
    }
    
    .services-menu .menu-item.active .dropdown-submenu {
        display: block;
    }
    
    .dropdown-submenu li a {
        padding: 10px 15px 10px 40px;
        font-size: 0.85rem;
    }
    
    /* Hero Mobile */
    .hero-section {
        min-height: auto;
        padding: 30px 0;
    }
    
    .hero-bg-image {
        padding: 30px 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-main-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero-cta {
        margin-bottom: 30px;
    }
    
    .btn-cta-hero {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    /* Recognition Badges Mobile */
    .recognition-badges-container {
        margin: 30px 0;
    }
    
    .recognition-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .badge-item {
        min-width: 90px;
        max-width: 110px;
        height: 90px;
    }
    
    .badge-logo {
        width: 100%;
        height: 100%;
    }
    
    /* Hero Stats Mobile */
    .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .stat-box-hero {
        padding: 12px 10px;
    }
    
    .stat-icon-hero {
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
    }
    
    .stat-icon-hero i {
        font-size: 1rem;
    }
    
    .stat-value-hero {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
    
    .stat-label-hero {
        font-size: 0.75rem;
    }
    
    /* Section Spacing Mobile */
    .section {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 20px;
    }
    
    /* Why Choose Us Mobile */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Case Studies Mobile */
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-study-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .case-study-image {
        width: 100%;
        height: 180px;
    }
    
    .case-study-info {
        width: 100%;
        padding: 20px;
    }
    
    /* Stats Section Mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-box i {
        font-size: 2.5rem;
    }
    
    .stat-box .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-box .stat-text {
        font-size: 0.95rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Blogs & FAQ Mobile */
    .blogs-faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-grid,
    .features-grid,
    .portfolio-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .work-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .client-logos {
        gap: 30px;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .logo-circle i {
        font-size: 2.5rem;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-box .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    /* Header extra compact */
    .nav-wrapper {
        grid-template-columns: 45px 1fr 120px;
        gap: 8px;
    }
    
    .site-branding img,
    .custom-logo-link img,
    .custom-logo {
        max-height: 40px;
    }
    
    .call-us-badge {
        padding: 5px 8px;
        gap: 4px;
    }
    
    .call-badge-label {
        font-size: 0.6rem;
    }
    
    .call-badge-number {
        font-size: 0.7rem;
    }
    
    .call-us-badge i {
        font-size: 1rem;
    }
    
    .top-contact-links {
        font-size: 0.65rem;
        gap: 6px;
    }
    
    .top-link {
        font-size: 0.65rem;
    }
    
    .btn-consultation {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    /* Tablet specific styles */
    .nav-wrapper {
        gap: 20px;
    }
    
    .nav-menu li {
        padding: 0 12px;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .services-menu .menu-item > a {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Case Studies Section
   ========================================================================== */

.case-studies-section {
    background: #f8fafc;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.case-study-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.case-study-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.industry-tag {
    background: var(--white);
    color: var(--dark-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.case-study-content {
    padding: 25px;
}

.case-study-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.case-study-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.case-study-tags span {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.case-study-results {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.result-item {
    flex: 1;
    text-align: center;
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.result-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.why-choose-section {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(207, 250, 254, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(207, 250, 254, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}

.why-choose-section .section-title h2 {
    color: #ffffff;
}

.why-choose-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-choose-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid rgba(3, 105, 161, 0.12);
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.why-choose-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.why-choose-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.why-choose-card:hover::after {
    width: 80%;
}

.why-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.why-choose-card:hover .why-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.why-choose-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.why-choose-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    color: #22d3ee;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-rating i {
    margin-right: 3px;
}

.testimonial-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
}

.author-info h4 {
    margin-bottom: 3px;
    font-size: 1rem;
    color: var(--dark-color);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Blogs & FAQ Section
   ========================================================================== */

.blogs-faq-section {
    background: var(--white);
    padding: 60px 0;
}

.blogs-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.blogs-column,
.faqs-column {
    background: var(--white);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.column-header {
    background: transparent;
    color: #1e293b;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e5e7eb;
}

.column-header h2,
.column-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: #1e3a5f;
}

.more-link {
    color: #1e293b;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.more-link:hover {
    color: #0c4a6e;
}

/* Blogs Styles */
.blog-list {
    padding: 30px;
}

.blog-item {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 2px solid #e5e7eb;
}

.blog-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.blog-excerpt {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.btn-read-more {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #22d3ee 0%, #22d3ee 100%);
    color: #1e293b;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-read-more:hover {
    background: linear-gradient(135deg, #22d3ee 0%, #22d3ee 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

/* FAQs Styles */
.faq-list {
    padding: 30px;
}

.faq-item-compact {
    margin-bottom: 12px;
}

.faq-item-compact:last-child {
    margin-bottom: 0;
}

.faq-question-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    background: linear-gradient(135deg, #22d3ee 0%, #22d3ee 100%);
    padding: 18px 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.faq-question-compact:hover {
    background: linear-gradient(135deg, #22d3ee 0%, #22d3ee 100%);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.faq-question-compact span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    flex: 1;
}

.faq-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1e293b;
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-toggle:hover {
    background: #0c4a6e;
    transform: scale(1.1);
}

.faq-toggle i {
    font-size: 1.2rem;
}

.faq-item-compact.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer-compact {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item-compact.active .faq-answer-compact {
    max-height: 300px;
    padding-top: 15px;
    padding-bottom: 5px;
}

.faq-answer-compact p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 991px) {
    .blogs-faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .column-header {
        padding: 20px 20px;
    }
    
    .column-header h2 {
        font-size: 1.5rem;
    }
    
    .blog-list,
    .faq-list {
        padding: 20px;
    }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    background: linear-gradient(135deg, #0e7490 0%, #06b6d4 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-divider {
    font-weight: 600;
    color: var(--white);
    font-size: 1.1rem;
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* ==========================================================================
   Responsive Styles for New Sections
   ========================================================================== */

@media (max-width: 768px) {
    .case-studies-grid,
    .why-choose-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-divider {
        display: none;
    }
}

/* ==========================================================================
   Featured Testimonials Section - TechMagnate Style
   ========================================================================== */

.featured-testimonials-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    width: 100%;
}

.featured-testimonials-section .section-title h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 50px;
    text-align: center;
}

.featured-testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.featured-testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.featured-testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    width: 100%;
}

.featured-testimonial-card {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 50px 55px;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 35px;
    align-items: center;
    color: #fff;
    box-sizing: border-box;
    overflow: hidden;
    max-width: 100%;
}

/* When no photo, make content full width */
.featured-testimonial-card:not(:has(.featured-testimonial-photo)) {
    grid-template-columns: minmax(0, 1fr);
    padding: 50px 80px;
}

.featured-testimonial-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.featured-testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.featured-testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-testimonial-content {
    text-align: left;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.featured-testimonial-rating {
    margin-bottom: 20px;
}

.featured-testimonial-rating i {
    color: #22d3ee;
    font-size: 1.2rem;
    margin-right: 3px;
}

.featured-testimonial-rating i.empty-star {
    color: rgba(255, 255, 255, 0.3);
}

.featured-testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    white-space: normal;
    width: 100%;
    max-width: 100%;
    display: block;
}

.testimonial-links {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.featured-testimonial-content .read-more,
.featured-testimonial-content .project-link {
    color: #fff;
    text-decoration: underline;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.featured-testimonial-content .read-more:hover,
.featured-testimonial-content .project-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.featured-testimonial-content .project-link i {
    font-size: 0.75rem;
    margin-left: 5px;
}

.featured-client-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    word-wrap: break-word;
    white-space: normal;
}

.featured-client-position {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    word-wrap: break-word;
    white-space: normal;
}

.featured-testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 123, 184, 0.9);
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.8rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.featured-testimonial-nav:hover {
    background: rgba(30, 123, 184, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.featured-testimonial-nav.prev {
    left: 20px;
}

.featured-testimonial-nav.next {
    right: 20px;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(30, 123, 184, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #22d3ee;
    width: 14px;
    height: 14px;
}

.testimonial-dot:hover {
    background: rgba(30, 123, 184, 0.6);
}

.view-all-testimonials-wrapper {
    text-align: center;
}

.btn-view-all-testimonials {
    display: inline-block;
    background: #06b6d4;
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all-testimonials:hover {
    background: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    color: #fff;
}

/* Responsive Featured Testimonials */
@media (max-width: 768px) {
    .featured-testimonials-carousel {
        overflow: hidden;
    }
    
    .featured-testimonial-nav.prev {
        left: 10px;
    }
    
    .featured-testimonial-nav.next {
        right: 10px;
    }
    
    .featured-testimonial-nav {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    
    .featured-testimonial-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 35px 25px;
        gap: 20px;
    }
    
    .featured-testimonial-card:not(:has(.featured-testimonial-photo)) {
        padding: 35px 25px;
    }
    
    .testimonial-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .featured-testimonial-photo {
        margin: 0 auto;
    }
    
    .featured-testimonial-content {
        text-align: center;
    }
    
    .featured-testimonials-section .section-title h2 {
        font-size: 1.75rem;
    }
}



/* ==========================================================================
   Case Studies Section
   ========================================================================== */

.case-studies-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.case-studies-section .case-studies-carousel {
    position: relative;
    margin-top: 50px;
}

.case-studies-section .case-studies-track-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.case-studies-section .case-studies-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.case-studies-section .case-study-card {
    width: calc((100% - 60px) / 3);
    min-width: calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    flex-shrink: 0;
    flex-grow: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 480px;
}

.case-studies-section .case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #06b6d4;
}

.case-studies-section .case-study-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f3f4f6;
    flex-shrink: 0;
}

.case-studies-section .case-study-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.case-studies-section .case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.case-studies-section .case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-studies-section .case-study-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.case-studies-section .case-study-category {
    display: inline-block;
    width: fit-content;
    padding: 6px 16px;
    background: #06B6D4;
    color: #ffffff;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.case-studies-section .case-study-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case-studies-section .case-study-title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.3s ease;
}

.case-studies-section .case-study-title a:hover {
    color: #06b6d4;
}

.case-studies-section .case-study-excerpt {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case-studies-section .case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #06b6d4;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    padding: 10px 20px;
    border: 2px solid #06b6d4;
    border-radius: 6px;
    width: fit-content;
}

.case-studies-section .case-study-link:hover {
    background: #06b6d4;
    color: white;
    gap: 12px;
}

.case-studies-section .case-study-link i {
    font-size: 14px;
}

.case-studies-section .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e5e7eb;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.case-studies-section .carousel-nav:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.case-studies-section .carousel-prev {
    left: -20px;
}

.case-studies-section .carousel-next {
    right: -20px;
}

.case-studies-section .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.case-studies-section .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-studies-section .carousel-dot.active {
    background: #2563eb;
    width: 30px;
    border-radius: 6px;
}

.case-studies-section .no-case-studies {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .case-studies-section .case-study-card {
        width: calc(50% - 15px);
        min-width: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .case-studies-section .case-study-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    .case-studies-section .carousel-prev { left: 0; }
    .case-studies-section .carousel-next { right: 0; }
}

/* ==========================================================================
   Search Trends Reports Section
   ========================================================================== */

.search-trends-section {
    padding: 80px 0;
    background: #ffffff;
}

.search-trends-section .trends-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 60px;
}

.trends-slider {
    width: 100%;
}

.trends-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trend-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.trend-banner {
    position: relative;
    padding: 40px 30px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.trend-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner-badge {
    position: relative;
    z-index: 2;
    display: inline-block;
    width: fit-content;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    color: #ffffff;
}

.banner-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0.95;
}

.banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 10px;
    color: #ffffff;
}

.banner-person {
    display: none;
}

.trend-info {
    padding: 30px;
    background: #ffffff;
}

.trend-category {
    display: inline-block;
    background: #e0f2fe;
    color: #0e7490;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.trend-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 50px;
}

.trend-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #06b6d4;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #06b6d4;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trend-download:hover {
    background: #06b6d4;
    color: #ffffff;
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .trends-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .search-trends-section {
        padding: 60px 0;
    }
    
    .search-trends-section .trends-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .trends-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trend-banner {
        min-height: 250px;
        padding: 30px 25px;
    }
    
    .banner-content h3 {
        font-size: 1.5rem;
    }
    
    .banner-person {
        width: 120px;
        height: 160px;
    }
}

/* ==========================================================================
   Client Logos / Trusted Brands Section
   ========================================================================== */

.clients-section {
    padding: 80px 0;
    background: #f9fafb;
}

.clients-section .section-title {
    margin-bottom: 60px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.client-logo {
    width: 100%;
    max-width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 0;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-logo {
        height: 100px;
        padding: 15px;
    }
}

/* ==========================================================================
   Inner Page Template - Base Styles
   ========================================================================== */

/* Inner Page Hero Section */
.inner-page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 60px;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.inner-page-hero .container {
    position: relative;
    z-index: 2;
}

.inner-page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.inner-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
}

.inner-page-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
}

.inner-page-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.inner-page-buttons .btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.inner-page-buttons .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.inner-page-buttons .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.inner-page-buttons .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.inner-page-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ==========================================================================
   FAQ Tabs Section - Base Styles
   ========================================================================== */

.faq-tabs-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-tabs-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.faq-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.faq-tabs-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-tab-button {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-tab-button.yellow,
.faq-tab-button.tab-style-yellow {
    border-color: #fbbf24;
    color: #f59e0b;
}

.faq-tab-button.blue,
.faq-tab-button.tab-style-blue {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.faq-tab-button.yellow.active,
.faq-tab-button.tab-style-yellow.active {
    background: #fbbf24;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.faq-tab-button.blue.active,
.faq-tab-button.tab-style-blue.active,
.faq-tab-button.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.faq-tab-button.tab-style-yellow:hover {
    background: #fbbf24;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.25);
}

.faq-tab-button.tab-style-blue:hover,
.faq-tab-button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.25);
}

.faq-tabs-content {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    min-height: 300px;
}

.faq-tab-pane {
    display: none;
}

.faq-tab-pane.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.faq-tab-pane h3 {
    font-size: 1.5rem;
    color: #1e293b !important;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.faq-tab-pane p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155 !important;
    margin-bottom: 20px;
}

.faq-tab-pane ul {
    margin: 20px 0 20px 30px;
    list-style-type: disc;
}

.faq-tab-pane ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155 !important;
    margin-bottom: 12px;
    padding-left: 10px;
}

.faq-tab-pane ol {
    margin: 20px 0 20px 30px;
    list-style-type: decimal;
}

.faq-tab-pane ol li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155 !important;
    margin-bottom: 12px;
    padding-left: 10px;
}

.faq-tab-pane h1,
.faq-tab-pane h2,
.faq-tab-pane h3,
.faq-tab-pane h4,
.faq-tab-pane h5,
.faq-tab-pane h6 {
    color: #1e293b !important;
}

.faq-tab-pane *:not(strong):not(b) {
    color: #334155 !important;
}

.faq-tab-pane strong,
.faq-tab-pane b {
    color: #1e293b !important;
}

.faq-tab-pane span {
    color: #334155 !important;
}

.faq-tab-pane div {
    color: #334155 !important;
}

.faq-tab-pane a {
    color: #0e7490 !important;
}

/* Force all FAQ content to be dark - override inline styles */
.faq-content-wrapper,
.faq-content-wrapper *,
.faq-content-wrapper p,
.faq-content-wrapper span,
.faq-content-wrapper div,
.faq-content-wrapper li {
    color: #334155 !important;
}

.faq-content-wrapper h1,
.faq-content-wrapper h2,
.faq-content-wrapper h3,
.faq-content-wrapper h4,
.faq-content-wrapper h5,
.faq-content-wrapper h6 {
    color: #1e293b !important;
}

.faq-content-wrapper strong,
.faq-content-wrapper b {
    color: #1e293b !important;
}

.service-page-template .faq-content-wrapper,
.service-page-template .faq-content-wrapper *,
.service-page-template .faq-content-wrapper p,
.service-page-template .faq-content-wrapper span,
.service-page-template .faq-content-wrapper div,
.service-page-template .faq-content-wrapper li {
    color: #334155 !important;
}

.service-page-template .faq-content-wrapper h1,
.service-page-template .faq-content-wrapper h2,
.service-page-template .faq-content-wrapper h3,
.service-page-template .faq-content-wrapper h4,
.service-page-template .faq-content-wrapper h5,
.service-page-template .faq-content-wrapper h6 {
    color: #1e293b !important;
}

.service-page-template .faq-content-wrapper strong,
.service-page-template .faq-content-wrapper b {
    color: #1e293b !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   SEO Services Section - Base Styles
   ========================================================================== */

.seo-services-section {
    padding: 80px 0;
    background: #f9fafb;
}

.seo-services-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.seo-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.seo-services-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 10px;
}

.seo-services-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

.seo-services-cards {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center !important;
    flex-wrap: nowrap !important;
}

.seo-service-card {
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 12px rgba(30, 41, 59, 0.06) !important;
    padding: 32px 24px !important;
    text-align: center !important;
    transition: all 0.3s ease;
    flex: none !important;
}

.seo-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(30, 41, 59, 0.12) !important;
}

.seo-service-icon {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 20px;
}

.seo-service-icon img {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain !important;
}

.seo-service-title {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin-bottom: 8px !important;
}

.seo-service-subtitle {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #415D6F !important;
    margin-bottom: 12px !important;
}

.seo-service-desc {
    font-size: 0.95rem !important;
    color: #334155 !important;
    line-height: 1.7 !important;
}

/* ==========================================================================
   Inner Page Template - Mobile Responsive Styles
   ========================================================================== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .seo-services-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

/* Tablet & Mobile - 768px and below */
@media (max-width: 768px) {
    /* Inner Page Hero Section */
    .inner-page-hero {
        padding: 60px 0 50px;
        min-height: auto;
    }
    
    .inner-page-hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .inner-page-title {
        font-size: 2rem !important;
        line-height: 1.3;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .inner-page-description {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .inner-page-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .inner-page-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    /* About Section for Inner Page */
    .about-dm-section {
        padding: 50px 0;
    }
    
    .about-dm-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-dm-content,
    .about-dm-video {
        width: 100%;
        flex: none;
    }
    
    .about-dm-content h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .about-dm-content p {
        font-size: 1rem;
    }
    
    .about-dm-bottom p {
        font-size: 1rem;
        margin-top: 30px;
    }
    
    /* FAQ Tabs Section */
    .faq-tabs-section {
        padding: 50px 0;
    }
    
    .faq-main-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .faq-description {
        font-size: 1rem;
    }
    
    .faq-tabs-nav {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .faq-tab-button {
        width: 100%;
        text-align: center;
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .faq-tab-pane {
        padding: 25px 15px;
        font-size: 0.95rem;
    }
    
    /* SEO Services Section */
    .seo-services-section {
        padding: 50px 0;
    }
    
    .seo-services-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .seo-services-title {
        font-size: 2rem;
    }
    
    .seo-services-subtitle {
        font-size: 1rem;
    }
    
    .seo-services-desc {
        font-size: 0.95rem;
    }
    
    .seo-services-cards {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 20px;
        max-width: 500px !important;
        margin: 0 auto !important;
    }
    
    .seo-service-card {
        padding: 30px 20px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    .seo-service-icon img {
        width: 70px !important;
        height: 70px !important;
    }
    
    .seo-service-title {
        font-size: 1.2rem !important;
    }
    
    .seo-service-subtitle {
        font-size: 0.95rem !important;
    }
    
    .seo-service-desc {
        font-size: 0.9rem !important;
    }
    
    /* SEO Reporting Section */
    .seo-reporting-section {
        padding: 50px 0;
    }
    
    .seo-reporting-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .seo-reporting-text,
    .seo-reporting-image {
        width: 100%;
        flex: none;
    }
    
    .seo-reporting-text h2 {
        font-size: 1.8rem;
    }
    
    .seo-reporting-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* What We Offer Section */
    .what-we-offer-section {
        padding: 50px 0;
    }
    
    .what-we-offer-section .section-title {
        font-size: 2rem;
    }
    
    .offer-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-card {
        padding: 25px 20px;
    }
    
    /* Search Trends Section */
    .search-trends-section {
        padding: 50px 0;
    }
    
    .trends-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .trend-card {
        min-height: 350px;
    }
    
    .trend-industry {
        font-size: 1.1rem;
    }
    
    .trend-title {
        font-size: 1.3rem;
    }
    
    /* Page Content Section */
    .page-content-section {
        padding: 50px 0;
    }
    
    .page-content-section .section-title {
        font-size: 2rem;
    }
    
    .page-content-section p,
    .page-content-section li {
        font-size: 1rem;
    }
    
    /* Case Studies Section */
    .inner-case-studies-section {
        padding: 50px 0;
    }
    
    .inner-case-studies-section .section-title {
        font-size: 2rem;
    }
    
    .case-studies-slider {
        padding: 0 10px;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    /* Inner Page Hero */
    .inner-page-hero {
        padding: 50px 0 40px;
        min-height: auto;
    }
    
    .inner-page-hero-content {
        padding: 0 15px;
    }
    
    .inner-page-title {
        font-size: 1.75rem !important;
        line-height: 1.25;
        margin-bottom: 12px;
    }
    
    .inner-page-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .inner-page-buttons {
        gap: 10px;
    }
    
    .inner-page-buttons .btn {
        padding: 11px 20px;
        font-size: 0.9rem;
    }
    
    /* About Section */
    .about-dm-content h1 {
        font-size: 1.5rem;
    }
    
    .about-dm-content p,
    .about-dm-bottom p {
        font-size: 0.95rem;
    }
    
    /* FAQ Section */
    .faq-main-title {
        font-size: 1.6rem;
    }
    
    .faq-tab-button {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .faq-tab-pane {
        padding: 20px 15px;
        font-size: 0.9rem;
    }
    
    /* Services Grid */
    .seo-services-section {
        padding: 40px 0;
    }
    
    .seo-services-header {
        padding: 0 15px;
    }
    
    .seo-services-title {
        font-size: 1.6rem;
    }
    
    .seo-services-cards {
        padding: 0 15px;
        max-width: 450px !important;
        margin: 0 auto !important;
    }
    
    .seo-service-card {
        padding: 25px 15px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    .seo-service-icon img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .seo-service-title {
        font-size: 1.1rem !important;
    }
    
    .seo-service-subtitle {
        font-size: 0.9rem !important;
    }
    
    .seo-service-desc {
        font-size: 0.85rem !important;
    }
    
    /* Trends Cards */
    .trend-card {
        min-height: 320px;
    }
    
    .trend-industry {
        font-size: 1rem;
    }
    
    .trend-subtitle {
        font-size: 0.85rem;
    }
    
    .trend-title {
        font-size: 1.1rem;
    }
    
    /* Reporting Section */
    .seo-reporting-text h2 {
        font-size: 1.5rem;
    }
    
    .reporting-feature {
        font-size: 0.9rem;
    }
}

/* Small Mobile - 375px and below */
@media (max-width: 375px) {
    .inner-page-hero {
        padding: 40px 0 35px;
        min-height: auto;
    }
    
    .inner-page-hero-content {
        padding: 0 10px;
    }
    
    .inner-page-title {
        font-size: 1.5rem !important;
        margin-bottom: 10px;
    }
    
    .inner-page-description {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .inner-page-buttons .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .faq-main-title,
    .about-dm-content h1 {
        font-size: 1.3rem;
    }
    
    .seo-service-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
/* ==========================================================================
   Single Service Page Styles - Professional CSS
   ========================================================================== */

/* Service Page Template Container */
.service-page-template {
    background: #f8f9fa;
}

/* About Section for Single Service */
.service-page-template .about-dm-section {
    padding: 50px 0;
    background: #ffffff;
}

.service-page-template .about-dm-content h2 {
    font-size: 28px !important;
    color: #1e3a5f !important;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.service-page-template .about-dm-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-page-template .about-dm-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 30px;
}

.service-page-template .about-dm-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-page-template .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.service-page-template .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.service-page-template .about-dm-bottom p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Tabs Section for Single Service */
.service-page-template .faq-tabs-section {
    padding: 50px 0;
    background: var(--gray-50);
}

.service-page-template .faq-tabs-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-page-template .faq-main-title {
    font-size: 28px !important;
    color: var(--dark-color) !important;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-page-template .faq-description {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-page-template .faq-tabs-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-page-template .faq-tab-button {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--primary-color);
}

.service-page-template .faq-tab-button.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.service-page-template .faq-tab-button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
}

.service-page-template .faq-tabs-content {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-page-template .faq-tab-pane {
    display: none;
}

.service-page-template .faq-tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.service-page-template .faq-tab-pane h3 {
    font-size: 20px;
    color: #1e293b !important;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-page-template .faq-tab-pane p {
    font-size: 15px;
    line-height: 1.7;
    color: #334155 !important;
    margin-bottom: 15px;
}

.service-page-template .faq-tab-pane ul {
    margin: 15px 0 15px 25px;
}

.service-page-template .faq-tab-pane ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #334155 !important;
    margin-bottom: 8px;
}

.service-page-template .faq-tab-pane *:not(strong):not(b) {
    color: #334155 !important;
}

.service-page-template .faq-tab-pane h1,
.service-page-template .faq-tab-pane h2,
.service-page-template .faq-tab-pane h3,
.service-page-template .faq-tab-pane h4,
.service-page-template .faq-tab-pane h5,
.service-page-template .faq-tab-pane h6 {
    color: #1e293b !important;
}

.service-page-template .faq-tab-pane strong,
.service-page-template .faq-tab-pane b {
    color: #1e293b !important;
}

.service-page-template .faq-tab-pane span {
    color: #334155 !important;
}

.service-page-template .faq-tab-pane div {
    color: #334155 !important;
}

.service-page-template .faq-tab-pane a {
    color: #0e7490 !important;
}

.service-page-template .faq-tab-pane ol li {
    color: #334155 !important;
}

/* SEO Services Section for Single Service */
.service-page-template .seo-services-section {
    padding: 50px 0;
    background: #ffffff;
}

.service-page-template .seo-services-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-page-template .seo-services-title {
    font-size: 28px !important;
    color: #1e3a5f !important;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-page-template .seo-services-subtitle {
    font-size: 18px !important;
    color: #64748b !important;
    margin-bottom: 8px;
    font-weight: 600;
}

.service-page-template .seo-services-desc {
    font-size: 16px !important;
    color: #64748b !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-page-template .seo-services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-page-template .seo-service-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(30, 41, 59, 0.08);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-page-template .seo-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(30, 41, 59, 0.15);
}

.service-page-template .seo-service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.service-page-template .seo-service-icon img {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
}

.service-page-template .seo-service-icon .icon-placeholder {
    display: none;
}

.service-page-template .seo-service-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--dark-color) !important;
    margin-bottom: 4px !important;
}

.service-page-template .seo-service-subtitle {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--secondary-color) !important;
    margin-bottom: 12px !important;
}

.service-page-template .seo-service-desc {
    font-size: 14px !important;
    color: var(--text-color) !important;
    line-height: 1.6 !important;
}

/* SEO Reporting Section for Single Service */
.service-page-template .seo-reporting-section {
    background: #fff !important;
    padding: 40px 0 !important;
}

.service-page-template .seo-steps-container {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 30px !important;
    flex-wrap: wrap !important;
}

.service-page-template .seo-step-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    flex: 0 0 auto !important;
}

.service-page-template .seo-step-circle {
    width: 130px !important;
    height: 150px !important;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 15px 12px !important;
    position: relative !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    transition: transform 0.3s ease !important;
}

.service-page-template .seo-step-circle:hover {
    transform: scale(1.05) !important;
}

.service-page-template .seo-reporting-section .seo-step-circle .step-number {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-align: center !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
    position: relative !important;
    z-index: 999 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    min-height: 25px !important;
}

.service-page-template .seo-reporting-section .seo-step-circle .step-inner-circle {
    background: #fff !important;
    border-radius: 50% !important;
    width: 92px !important;
    height: 92px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
}

.service-page-template .seo-reporting-section .seo-step-circle .step-title {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    text-align: center !important;
    line-height: 1.2 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.service-page-template .seo-arrow-down {
    text-align: center;
    margin: 20px 0;
}

.service-page-template .seo-reporting-content {
    background: #f8f9fa !important;
    border-radius: 10px !important;
    padding: 40px !important;
    margin-top: 30px !important;
    max-width: 100% !important;
    box-shadow: none !important;
}

.service-page-template .seo-reporting-title {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #1e3a5f !important;
    margin-bottom: 20px !important;
    text-align: center !important;
}

.service-page-template .seo-reporting-content p {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #334155 !important;
    margin-bottom: 15px !important;
}

/* What We Offer Section for Single Service */
.service-page-template .what-we-offer-section {
    padding: 50px 0;
    background: #ffffff;
}

.service-page-template .offer-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-page-template .offer-title {
    font-size: 28px !important;
    color: var(--dark-color) !important;
    margin-bottom: 12px !important;
    font-weight: 700;
}

.service-page-template .offer-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.service-page-template .offer-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-page-template .offer-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-page-template .offer-card:hover {
    transform: translateY(-5px);
    border-color: #06b6d4;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.15);
}

.service-page-template .offer-icon {
    margin-bottom: 20px;
}

.service-page-template .offer-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.service-page-template .offer-icon-placeholder {
    display: none;
}

.service-page-template .offer-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.service-page-template .offer-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Search Trends Section for Single Service */
.service-page-template .search-trends-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.service-page-template .trends-title {
    font-size: 28px !important;
    color: var(--dark-color) !important;
    text-align: center;
    margin-bottom: 40px !important;
    font-weight: 700;
}

.service-page-template .trends-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-page-template .trend-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-page-template .trend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-page-template .trend-banner {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-page-template .trend-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.service-page-template .banner-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark-color);
    z-index: 2;
}

.service-page-template .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.service-page-template .banner-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-page-template .banner-content p {
    font-size: 14px;
    margin-bottom: 12px;
}

.service-page-template .banner-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.service-page-template .trend-info {
    padding: 20px;
}

.service-page-template .trend-category {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-page-template .trend-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.service-page-template .trend-download {
    color: #06b6d4;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-page-template .trend-download:hover {
    color: #0891b2;
}

/* All Services Section */
.all-services-section {
    padding: 60px 0;
    background: #ffffff;
}

.all-services-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.all-services-section .section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.all-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.service-item-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.service-item-card:hover {
    transform: translateY(-5px);
    border-color: #06b6d4;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.15);
}

.service-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #ffffff;
}

.service-item-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.service-item-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.service-item-more {
    color: #06b6d4;
    font-size: 14px;
    font-weight: 600;
}

/* Responsive Styles for Single Service */
@media (max-width: 1024px) {
    .service-page-template .about-dm-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-page-template .seo-steps-container {
        gap: 10px;
    }

    .service-page-template .seo-step-circle {
        width: 100px;
        height: 100px;
    }

    .service-page-template .step-inner-circle {
        width: 75px;
        height: 75px;
    }

    .service-page-template .step-title {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .service-page-template .about-dm-content h2,
    .service-page-template .faq-main-title,
    .service-page-template .seo-services-title,
    .service-page-template .offer-title,
    .service-page-template .trends-title {
        font-size: 24px !important;
    }

    .service-page-template .seo-reporting-title {
        font-size: 20px !important;
    }

    .service-page-template .faq-tabs-nav {
        gap: 8px;
    }

    .service-page-template .faq-tab-button {
        padding: 10px 18px;
        font-size: 14px;
    }

    .service-page-template .seo-services-cards,
    .service-page-template .trends-cards,
    .service-page-template .offer-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-page-template .seo-steps-container {
        gap: 8px;
    }

    .service-page-template .seo-step-circle {
        width: 85px;
        height: 85px;
    }

    .service-page-template .step-inner-circle {
        width: 65px;
        height: 65px;
    }

    .service-page-template .step-number {
        font-size: 9px;
    }

    .service-page-template .step-title {
        font-size: 9px;
    }

    .all-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-page-template .about-dm-content h2,
    .service-page-template .faq-main-title,
    .service-page-template .seo-services-title,
    .service-page-template .offer-title,
    .service-page-template .trends-title {
        font-size: 20px !important;
    }

    .service-page-template .faq-tabs-content,
    .service-page-template .seo-reporting-content {
        padding: 20px;
    }

    .service-page-template .seo-step-circle {
        width: 70px;
        height: 70px;
    }

    .service-page-template .step-inner-circle {
        width: 55px;
        height: 55px;
    }

    .service-page-template .step-number {
        font-size: 8px;
        margin-bottom: 4px;
    }

    .service-page-template .step-title {
        font-size: 8px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FORCE STEP NUMBERS TO DISPLAY - ADDED TO FIX VISIBILITY */
body .service-page-template .seo-reporting-section .seo-steps-container .seo-step-item .seo-step-circle .step-number,
main.service-page-template section.seo-reporting-section .seo-steps-container .seo-step-item .seo-step-circle .step-number {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-align: center !important;
    line-height: 1.3 !important;
    display: block !important;
    opacity: 1 !important;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

.contact-page .page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #06b6d4 100%);
    color: #ffffff;
    text-align: center;
}

.contact-page .page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-page .page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.contact-page .contact-section {
    padding: 80px 0;
}

.contact-page .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-page .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.contact-page .contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-page .contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.5rem;
}

.contact-page .contact-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-page .contact-details p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.contact-page .contact-form-section {
    margin-top: 40px;
}

.contact-page .section-header {
    margin-bottom: 40px;
}

.contact-page .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-page .section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page .contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-page .contact-map {
    margin-top: 60px;
}

.contact-page .contact-map h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark-color);
}

.contact-page .map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-page .map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Contact Form 7 Styling */
.contact-page .contact-form-cf7 .form-row {
    margin-bottom: 25px;
}

.contact-page .contact-form-cf7 .form-group {
    position: relative;
}

.contact-page .contact-form-cf7 label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.contact-page .wpcf7-form-control-wrap {
    display: block !important;
}

.contact-page .wpcf7-form input[type="text"],
.contact-page .wpcf7-form input[type="email"],
.contact-page .wpcf7-form input[type="tel"],
.contact-page .wpcf7-form select,
.contact-page .wpcf7-form textarea {
    width: 100% !important;
    padding: 14px 18px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    color: #334155 !important;
    background: #ffffff !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
}

.contact-page .wpcf7-form input:focus,
.contact-page .wpcf7-form select:focus,
.contact-page .wpcf7-form textarea:focus {
    outline: none !important;
    border-color: #06b6d4 !important;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1) !important;
}

.contact-page .wpcf7-form select {
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23334155' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 12px !important;
    padding-right: 45px !important;
    cursor: pointer !important;
}

.contact-page .wpcf7-form textarea {
    min-height: 150px !important;
    resize: vertical !important;
}

.contact-page .wpcf7-form .btn-primary {
    width: 100% !important;
    padding: 16px 40px !important;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%) !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.contact-page .wpcf7-form .btn-primary:hover {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3) !important;
}

/* Validation Messages */
.contact-page .wpcf7-not-valid-tip {
    color: #dc2626 !important;
    font-size: 0.875rem !important;
    margin-top: 6px !important;
    display: block !important;
}

.contact-page .wpcf7-not-valid {
    border-color: #dc2626 !important;
}

.contact-page .wpcf7-response-output {
    margin: 25px 0 0 !important;
    padding: 15px 20px !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
}

.contact-page .wpcf7-mail-sent-ok {
    background: #d1fae5 !important;
    border: 2px solid #10b981 !important;
    color: #065f46 !important;
}

.contact-page .wpcf7-mail-sent-ng,
.contact-page .wpcf7-validation-errors {
    background: #fee2e2 !important;
    border: 2px solid #dc2626 !important;
    color: #991b1b !important;
}

.contact-page .wpcf7-spinner {
    margin: 0 !important;
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

@media (max-width: 768px) {
    .contact-page .page-title {
        font-size: 2rem;
    }
    
    .contact-page .page-subtitle {
        font-size: 1rem;
    }
    
    .contact-page .section-title {
        font-size: 2rem;
    }
    
    .contact-page .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-page .map-wrapper iframe {
        height: 350px;
    }
}
    margin-bottom: 10px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9999 !important;
    position: relative !important;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    min-height: 25px !important;
    overflow: visible !important;
}

body .service-page-template .seo-reporting-section .seo-step-circle,
main.service-page-template section.seo-reporting-section .seo-step-circle {
    overflow: visible !important;
}


/* ABSOLUTE FINAL FIX FOR STEP NUMBERS */
.service-page-template .seo-step-circle > .step-number {
    text-indent: 0 !important;
    text-align: center !important;
    font-size: 11px !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 99999 !important;
    font-weight: 700 !important;
    background: none !important;
    border: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: 20px !important;
}


/* EMERGENCY VISIBILITY FIX - MAXIMUM SPECIFICITY */
body.single-service .service-page-template .seo-reporting-section .seo-reporting-title,
body.single-service main.service-page-template .seo-reporting-section .seo-reporting-title {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #1e3a5f !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    margin: 20px 0 !important;
    text-align: center !important;
    position: relative !important;
    z-index: 1000 !important;
}

body.single-service .service-page-template .seo-step-circle .step-number,
body.single-service main.service-page-template .seo-step-circle .step-number {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    text-align: center !important;
    margin-bottom: 10px !important;
    position: relative !important;
    z-index: 1000 !important;
}

/* About Section - Image Option Styling */
.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
}

.about-image-wrapper img.about-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover img.about-featured-image {
    transform: scale(1.02);
}
