/* ============================================
   A3S IT Solutions - Modern Frontend Styles
   Color Scheme: #00436a (Primary) & #00875f (Secondary)
   ============================================ */

:root {
    --primary-color: #00436a;
    --secondary-color: #00875f;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 67, 106, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 67, 106, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 67, 106, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 67, 106, 0.15);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.navbar-brand img {
    display: block;
    height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.header-cta {
    display: flex;
    align-items: center;
}

.btn-cta-header {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

@media (max-width: 991px) {
    .header-cta {
        margin-top: 1rem;
        margin-left: 0 !important;
        width: 100%;
        padding: 0 1rem;
    }
    
    .btn-cta-header {
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .navbar-nav {
        margin-bottom: 0.5rem;
    }
}

/* ============================================
   Hero/Banner Section - Enhanced World Class Design
   ============================================ */

.hero-section-enhanced {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    margin-top: 0;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 67, 106, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 135, 95, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 67, 106, 0.05) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Particle Effects */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    opacity: 0.1;
    animation: particleFloat 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 30%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    width: 70px;
    height: 70px;
    bottom: 40%;
    right: 10%;
    animation-delay: 8s;
}

.particle:nth-child(6) {
    width: 90px;
    height: 90px;
    top: 10%;
    left: 50%;
    animation-delay: 10s;
}

.particle:nth-child(7) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    left: 40%;
    animation-delay: 12s;
}

.particle:nth-child(8) {
    width: 110px;
    height: 110px;
    top: 70%;
    left: 30%;
    animation-delay: 14s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translate(30px, -50px) scale(1.1) rotate(90deg);
        opacity: 0.15;
    }
    50% {
        transform: translate(-20px, -80px) scale(0.9) rotate(180deg);
        opacity: 0.2;
    }
    75% {
        transform: translate(40px, -30px) scale(1.05) rotate(270deg);
        opacity: 0.15;
    }
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    animation: shapeFloat 20s ease-in-out infinite;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 70%);
    bottom: -250px;
    left: -250px;
    animation: shapeFloat 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: shapeFloat 30s ease-in-out infinite;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

/* Hero Content Enhanced */
.hero-content-enhanced {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 67, 106, 0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 67, 106, 0.1);
    animation: badgePulse 2s ease-in-out infinite;
}

.hero-badge i {
    color: #ffc107;
    font-size: 1rem;
    animation: starRotate 3s ease-in-out infinite;
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(0, 67, 106, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 30px rgba(0, 67, 106, 0.15);
    }
}

@keyframes starRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.hero-title-enhanced {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    position: relative;
}

.hero-title-enhanced .gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.hero-title-enhanced .gradient-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
    opacity: 0.3;
}

.hero-description-enhanced {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 90%;
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(0, 67, 106, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 67, 106, 0.15);
    border-color: var(--secondary-color);
}

.trust-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.trust-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Hero Buttons Enhanced */
.hero-buttons-enhanced {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary-enhanced {
    padding: 1.125rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 67, 106, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    text-decoration: none;
}

.btn-primary-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    transition: left 0.5s ease;
}

.btn-primary-enhanced:hover::before {
    left: 100%;
}

.btn-primary-enhanced:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 67, 106, 0.4);
}

.btn-primary-enhanced i {
    transition: transform 0.3s ease;
}

.btn-primary-enhanced:hover i {
    transform: translateX(5px);
}

.btn-outline-enhanced {
    padding: 1.125rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 67, 106, 0.1);
}

.btn-outline-enhanced:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 67, 106, 0.3);
}

.btn-outline-enhanced i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-outline-enhanced:hover i {
    transform: scale(1.2) rotate(90deg);
}

/* Social Proof */
.hero-social-proof {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 67, 106, 0.1);
}

.social-proof-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.social-proof-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.proof-stat {
    display: flex;
    flex-direction: column;
}

.proof-stat strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.proof-stat span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Image Enhanced */
.hero-image-enhanced {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 67, 106, 0.2);
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 40px;
    opacity: 0.2;
    filter: blur(30px);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.05); }
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.image-container:hover .hero-main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 67, 106, 0.1) 0%, rgba(0, 135, 95, 0.1) 100%);
    border-radius: 30px;
    z-index: 2;
    pointer-events: none;
}

/* Floating Features */
.floating-feature {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 67, 106, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0, 67, 106, 0.1);
    z-index: 10;
    animation: featureFloat 4s ease-in-out infinite;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.feature-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.feature-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.feature-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 1s;
}

.feature-3 {
    top: 50%;
    left: -10%;
    animation-delay: 2s;
}

@keyframes featureFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
    opacity: 0.6;
}

.scroll-wheel {
    width: 6px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 2s ease-in-out infinite;
}

@keyframes wheelScroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Legacy Hero Section (for backward compatibility) */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 67, 106, 0.05) 0%, rgba(0, 135, 95, 0.05) 100%), #ffffff;
    z-index: 0;
    padding-top: 80px;
    margin-top: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 67, 106, 0.1) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 135, 95, 0.1) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    position: relative;
    z-index: 1;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 67, 106, 0.1) 50%, transparent 100%);
}

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

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

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

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 67, 106, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 67, 106, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 67, 106, 0.08) 0%, rgba(0, 135, 95, 0.08) 100%);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 135, 95, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 67, 106, 0.15), 0 8px 25px rgba(0, 135, 95, 0.1);
    border-color: rgba(0, 135, 95, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 67, 106, 0.2), 0 4px 10px rgba(0, 135, 95, 0.15);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 67, 106, 0.3), 0 6px 15px rgba(0, 135, 95, 0.25);
}

.service-card:hover .service-icon::before {
    opacity: 0.6;
}

.service-card h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.service-card h4 a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:hover h4 a {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h4 a:hover {
    transform: translateX(3px);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.9;
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: #5a6c7d;
}

.service-card .btn,
.service-card a.btn {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.service-card .btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    position: relative;
}

.service-card .btn-outline-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

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

.service-card .btn-outline-custom:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 67, 106, 0.25);
}

.service-card:hover .btn-outline-custom {
    border-color: var(--secondary-color);
}

/* Add subtle pulse animation to service icons on load */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.service-card:nth-child(1) .service-icon {
    animation: iconPulse 2s ease-in-out 0.5s;
}

.service-card:nth-child(2) .service-icon {
    animation: iconPulse 2s ease-in-out 0.7s;
}

.service-card:nth-child(3) .service-icon {
    animation: iconPulse 2s ease-in-out 0.9s;
}

.service-card:nth-child(4) .service-icon {
    animation: iconPulse 2s ease-in-out 1.1s;
}

.service-card:nth-child(5) .service-icon {
    animation: iconPulse 2s ease-in-out 1.3s;
}

.service-card:nth-child(6) .service-icon {
    animation: iconPulse 2s ease-in-out 1.5s;
}

/* Add number badge for featured services (optional enhancement) */
.service-card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0.2;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.service-card:hover .service-card-number {
    opacity: 0.4;
}

.service-card h6 a,
.service-card a.service-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.service-card h6 a:hover,
.service-card a.service-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.service-card .service-icon-small {
    position: relative;
    z-index: 2;
}

.service-icon-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 0.5rem;
}

.service-card .btn i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.service-card .btn:hover i {
    transform: translateX(4px);
}

/* Enhanced responsive design for service cards */
@media (max-width: 992px) {
    .service-card {
        padding: 2.5rem 2rem;
    }
    
    .service-icon {
        width: 90px;
        height: 90px;
        font-size: 2.25rem;
    }
    
    .service-card h4 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .service-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card h4 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .service-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

/* ============================================
   Portfolio Section
   ============================================ */

.portfolio-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 1rem;
}

.filter-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 67, 106, 0.9) 0%, rgba(0, 135, 95, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.portfolio-overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ============================================
   Blogs Section
   ============================================ */

.blogs-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    position: relative;
    z-index: 1;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

/* Blog Listing Hero */
.blog-listing-hero {
    min-height: 50vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0, 67, 106, 0.05) 0%, rgba(0, 135, 95, 0.05) 100%), #ffffff;
    position: relative;
    overflow: hidden;
}

.blog-listing-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 67, 106, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.blog-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 67, 106, 0.25);
    animation: iconFloat 3s ease-in-out infinite;
}

.blog-listing-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-listing-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Enhanced Blog Cards */
.blog-card-enhanced {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 67, 106, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 67, 106, 0.08);
    position: relative;
}

.blog-card-enhanced:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 67, 106, 0.15);
    border-color: rgba(0, 135, 95, 0.3);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.blog-image-enhanced {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-enhanced:hover .blog-image-enhanced {
    transform: scale(1.15);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 67, 106, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card-enhanced:hover .blog-overlay {
    opacity: 1;
}

.blog-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 67, 106, 0.3);
    z-index: 2;
}

.blog-content-enhanced {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.blog-meta-enhanced {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0.5rem 1rem;
    background: rgba(0, 67, 106, 0.05);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.meta-item i {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.blog-title-enhanced {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card-enhanced:hover .blog-title-enhanced {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 1.05rem;
}

.read-more-enhanced {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.5rem;
    background: rgba(0, 67, 106, 0.05);
    border-radius: 50px;
    width: fit-content;
    margin-top: auto;
}

.read-more-enhanced:hover {
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    gap: 1rem;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 67, 106, 0.25);
}

.read-more-enhanced i {
    transition: transform 0.3s ease;
}

.read-more-enhanced:hover i {
    transform: translateX(5px);
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination-wrapper .pagination {
    background: white;
    padding: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 67, 106, 0.1);
}

.pagination-wrapper .page-link {
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.25rem;
    margin: 0 0.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateY(-2px);
}

.pagination-wrapper .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 67, 106, 0.25);
}

/* Legacy Blog Card (for backward compatibility) */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.blog-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
    gap: 1rem;
}

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

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 67, 106, 0.08) 0%, rgba(0, 135, 95, 0.08) 100%), #f8f9fa;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
}

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

.testimonial-quote {
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.testimonial-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

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

.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-widget h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-widget p,
.footer-widget li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-widget ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

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

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

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

@media (max-width: 992px) {
    .hero-title-enhanced {
        font-size: 3rem;
    }
    
    .hero-description-enhanced {
        font-size: 1.15rem;
        max-width: 100%;
    }
    
    .floating-feature {
        display: none;
    }
    
    .hero-social-proof {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section-enhanced {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-content-enhanced {
        padding: 1rem 0;
        text-align: center;
    }
    
    .hero-badge {
        margin: 0 auto 1.5rem;
    }
    
    .hero-title-enhanced {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-description-enhanced {
        font-size: 1rem;
        text-align: center;
        margin: 0 auto 2rem;
    }
    
    .hero-trust-indicators {
        justify-content: center;
        gap: 1rem;
    }
    
    .trust-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-buttons-enhanced {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-enhanced,
    .btn-outline-enhanced {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .hero-social-proof {
        text-align: center;
        margin-top: 2rem;
    }
    
    .social-proof-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .proof-stat strong {
        font-size: 1.75rem;
    }
    
    .hero-image-enhanced {
        margin-top: 3rem;
        padding: 1rem 0;
    }
    
    .image-container {
        border-radius: 20px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .blog-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .hero-section {
        padding-top: 70px;
        min-height: auto;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .navbar .container {
        flex-wrap: wrap;
    }
}

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

.contact-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    z-index: 1;
}

.contact-info-card,
.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-align: left !important;
}

.contact-info-card h1,
.contact-info-card h2,
.contact-info-card h3,
.contact-info-card h4,
.contact-info-card h5,
.contact-info-card h6,
.contact-info-card p,
.contact-info-card span,
.contact-info-card div,
.contact-info-card a {
    text-align: left !important;
}

.contact-info-card:hover,
.contact-form-card:hover {
    box-shadow: var(--shadow-hover);
}

.contact-info-card h4,
.contact-form-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info-card h4::after,
.contact-form-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.contact-info {
    margin-top: 2rem;
    text-align: left !important;
    width: 100%;
}

.contact-info .service-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
}

.contact-info h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    text-align: left !important;
    width: 100%;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    text-align: left !important;
    width: 100%;
}

.contact-info .mb-4 {
    text-align: left !important;
    width: 100%;
}

.contact-info .mb-4 > .d-flex {
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
    width: 100%;
}

.contact-info .mb-4 > .d-flex > div:last-child {
    text-align: left !important;
    flex: 1;
}

.contact-info-card {
    text-align: left !important;
}

.contact-info-card p,
.contact-info-card h4,
.contact-info-card h6,
.contact-info-card div,
.contact-info-card .contact-info,
.contact-info-card .contact-info > div {
    text-align: left !important;
}

.contact-info-card .d-flex {
    justify-content: flex-start !important;
}

.contact-info-card .d-flex > div:last-child {
    text-align: left !important;
    width: 100%;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: block;
    font-size: 0.95rem;
}

.form-group .form-control {
    border: 2px solid rgba(0, 67, 106, 0.15);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    width: 100%;
    background: var(--white);
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.form-group .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 67, 106, 0.15);
    outline: none;
    background: var(--white);
}

.form-group .form-control::placeholder {
    color: rgba(108, 117, 125, 0.6);
}

.form-group textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-group button[type="submit"] {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 0.5rem;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

/* Ensure form inputs are always clickable */
.contact-form-card form,
.contact-form-card .form-group,
.contact-form-card input,
.contact-form-card textarea,
.contact-form-card button {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.contact-form-card {
    overflow: visible;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-card h4,
    .contact-form-card h4 {
        font-size: 1.5rem;
    }
    
    .contact-info .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

/* ============================================
   Scroll Animations
   ============================================ */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Loading Animation
   ============================================ */

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   Service Detail Page Styles
   ============================================ */

/* Service Detail Hero Section */
.service-detail-hero {
    min-height: 50vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0, 67, 106, 0.05) 0%, rgba(0, 135, 95, 0.05) 100%), #ffffff;
    position: relative;
    overflow: hidden;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 67, 106, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.service-breadcrumb {
    margin-bottom: 2rem;
}

.service-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    box-shadow: 0 4px 15px rgba(0, 67, 106, 0.1);
    margin-bottom: 0;
}

.service-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--text-light);
    padding: 0 0.75rem;
}

.service-breadcrumb .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-breadcrumb .breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.service-breadcrumb .breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 600;
}

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

.service-header-icon {
    margin-bottom: 2rem;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 67, 106, 0.25);
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 38px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.service-detail-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.service-detail-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-header-cta .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1rem;
}

/* Service Detail Section */
.service-detail-section {
    padding: 80px 0;
    background: #ffffff;
}

.service-detail-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 67, 106, 0.08);
    border: 1px solid rgba(0, 67, 106, 0.08);
    margin-bottom: 2rem;
}

.service-content-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.service-content-text h2,
.service-content-text h3,
.service-content-text h4 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-content-text h2 {
    font-size: 2rem;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.service-content-text h3 {
    font-size: 1.75rem;
}

.service-content-text h4 {
    font-size: 1.5rem;
}

.service-content-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-content-text ul,
.service-content-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.service-content-text li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.8;
}

.service-content-text img {
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 67, 106, 0.15);
}

/* Service Features Card */
.service-features-card {
    background: linear-gradient(135deg, rgba(0, 67, 106, 0.03) 0%, rgba(0, 135, 95, 0.03) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 67, 106, 0.1);
}

.section-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.section-heading i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 67, 106, 0.08);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 67, 106, 0.1);
    border-color: var(--secondary-color);
}

.feature-item i {
    font-size: 1.1rem;
    margin-right: 0.75rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Service CTA Box */
.service-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 24px;
    padding: 3rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 67, 106, 0.25);
}

.service-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1rem;
}

.cta-buttons .btn-primary-custom {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-buttons .btn-primary-custom:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline-custom {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.cta-buttons .btn-outline-custom:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Service Sidebar */
.service-sidebar-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 67, 106, 0.08);
    border: 1px solid rgba(0, 67, 106, 0.08);
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 67, 106, 0.1);
}

.sidebar-title i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.sidebar-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.sidebar-contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 67, 106, 0.03);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 67, 106, 0.08);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 24px;
    text-align: center;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.related-service-item {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(0, 67, 106, 0.03);
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 67, 106, 0.08);
}

.related-service-item:hover {
    background: rgba(0, 67, 106, 0.08);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 67, 106, 0.1);
    border-color: var(--secondary-color);
}

.related-service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.related-service-content {
    flex: 1;
}

.related-service-content h6 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.related-service-content h6 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-service-content h6 a:hover {
    color: var(--primary-color);
}

.related-service-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* FAQ Section */
.service-faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 67, 106, 0.08);
    border: 1px solid rgba(0, 67, 106, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 67, 106, 0.15);
}

.faq-header {
    border: none;
}

.faq-button {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-button:hover {
    color: var(--primary-color);
}

.faq-button:not(.collapsed) {
    color: var(--primary-color);
    background: rgba(0, 67, 106, 0.03);
}

.faq-button i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Final CTA Section */
.service-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.service-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.final-cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.final-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons-group .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
}

.cta-buttons-group .btn-primary-custom {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-buttons-group .btn-primary-custom:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-buttons-group .btn-outline-custom {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.cta-buttons-group .btn-outline-custom:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design for Service Detail */
@media (max-width: 992px) {
    .service-detail-title {
        font-size: 2.5rem;
    }
    
    .service-detail-subtitle {
        font-size: 1.15rem;
    }
    
    .service-icon-large {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .service-detail-card {
        padding: 2rem;
    }
    
    .service-features-card {
        padding: 2rem;
    }
    
    .service-cta-box {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
    
    .service-detail-subtitle {
        font-size: 1rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .service-header-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-header-cta .btn {
        width: 100%;
    }
    
    .service-detail-card,
    .service-features-card,
    .service-sidebar-card {
        padding: 1.5rem;
    }
    
    .service-content-text {
        font-size: 1rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .service-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .service-faq-section {
        padding: 60px 0;
    }
    
    .faq-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-body {
        padding: 0 1.5rem 1.25rem;
    }
    
    .service-final-cta {
        padding: 60px 0;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .final-cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons-group {
        flex-direction: column;
    }
    
    .cta-buttons-group .btn {
        width: 100%;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

/* ============================================
   Blog Detail Page Styles
   ============================================ */

/* Blog Detail Hero Section */
.blog-detail-hero {
    min-height: 50vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0, 67, 106, 0.05) 0%, rgba(0, 135, 95, 0.05) 100%), #ffffff;
    position: relative;
    overflow: hidden;
}

.blog-detail-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 67, 106, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.blog-breadcrumb {
    margin-bottom: 2rem;
}

.blog-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    box-shadow: 0 4px 15px rgba(0, 67, 106, 0.1);
    margin-bottom: 0;
}

.blog-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--text-light);
    padding: 0 0.75rem;
}

.blog-breadcrumb .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-breadcrumb .breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.blog-breadcrumb .breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 600;
}

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

.blog-header-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 67, 106, 0.25);
    animation: iconFloat 3s ease-in-out infinite;
}

.blog-detail-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-meta-header {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 67, 106, 0.08);
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.meta-badge i {
    color: var(--secondary-color);
}

.blog-header-cta .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1rem;
}

/* Blog Detail Section */
.blog-detail-section {
    padding: 80px 0;
    background: #ffffff;
}

.blog-detail-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 67, 106, 0.08);
    border: 1px solid rgba(0, 67, 106, 0.08);
    margin-bottom: 2rem;
}

.blog-featured-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.blog-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-featured-image-wrapper:hover .blog-featured-image {
    transform: scale(1.05);
}

.blog-detail-content {
    padding: 3rem;
}

.blog-excerpt-box {
    background: linear-gradient(135deg, rgba(0, 67, 106, 0.05) 0%, rgba(0, 135, 95, 0.05) 100%);
    border-left: 4px solid var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
}

.blog-excerpt-box .lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

.blog-content-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.blog-content-text h2,
.blog-content-text h3,
.blog-content-text h4 {
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.blog-content-text h2 {
    font-size: 2rem;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.blog-content-text h3 {
    font-size: 1.75rem;
}

.blog-content-text h4 {
    font-size: 1.5rem;
}

.blog-content-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.blog-content-text ul,
.blog-content-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content-text li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.8;
}

.blog-content-text img {
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 67, 106, 0.15);
    max-width: 100%;
    height: auto;
}

.blog-content-text blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: rgba(0, 67, 106, 0.05);
    border-radius: 8px;
    font-style: italic;
    color: var(--text-dark);
}

.blog-content-text code {
    background: rgba(0, 67, 106, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.blog-content-text pre {
    background: rgba(0, 67, 106, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

/* Blog Share Section */
.blog-share-section {
    background: linear-gradient(135deg, rgba(0, 67, 106, 0.03) 0%, rgba(0, 135, 95, 0.03) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 67, 106, 0.1);
}

.share-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.share-title i {
    color: var(--primary-color);
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.share-facebook {
    background: #1877f2;
    color: white;
}

.share-facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
    color: white;
}

.share-twitter {
    background: #1da1f2;
    color: white;
}

.share-twitter:hover {
    background: #1a91da;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
    color: white;
}

.share-linkedin {
    background: #0077b5;
    color: white;
}

.share-linkedin:hover {
    background: #006399;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
    color: white;
}

.share-email {
    background: var(--primary-color);
    color: white;
}

.share-email:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 67, 106, 0.3);
    color: white;
}

/* Blog CTA Box */
.blog-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 24px;
    padding: 3rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 67, 106, 0.25);
}

.blog-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

/* Blog Sidebar */
.blog-sidebar-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 67, 106, 0.08);
    border: 1px solid rgba(0, 67, 106, 0.08);
    margin-bottom: 2rem;
}

.recent-blog-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(0, 67, 106, 0.03);
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 67, 106, 0.08);
}

.recent-blog-item:hover {
    background: rgba(0, 67, 106, 0.08);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 67, 106, 0.1);
    border-color: var(--secondary-color);
}

.recent-blog-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.recent-blog-content {
    flex: 1;
}

.recent-blog-content h6 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.recent-blog-content h6 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.recent-blog-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.recent-blog-date i {
    color: var(--secondary-color);
    font-size: 0.75rem;
}

/* Blog FAQ Section */
.blog-faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Blog Final CTA */
.blog-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.blog-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

/* ============================================
   Get In Touch Section (Homepage)
   ============================================ */

.get-in-touch-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 67, 106, 0.03) 0%, rgba(0, 135, 95, 0.03) 100%), #ffffff;
    position: relative;
    overflow: hidden;
}

.get-in-touch-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 67, 106, 0.08) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.get-in-touch-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 135, 95, 0.08) 0%, transparent 70%);
    bottom: -250px;
    left: -250px;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.contact-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 67, 106, 0.25);
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
}

.contact-hero-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
}

/* Contact Method Cards */
.contact-method-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 67, 106, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 67, 106, 0.08);
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 67, 106, 0.05) 0%, rgba(0, 135, 95, 0.05) 100%);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.contact-method-card:hover::before {
    left: 0;
}

.contact-method-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 67, 106, 0.15);
    border-color: rgba(0, 135, 95, 0.3);
}

.contact-card-icon {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 67, 106, 0.2);
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 28px;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.phone-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.phone-icon::before {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.email-icon {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
}

.email-icon::before {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
}

.location-icon {
    background: linear-gradient(135deg, #4285F4 0%, #1A73E8 100%);
}

.location-icon::before {
    background: linear-gradient(135deg, #4285F4 0%, #1A73E8 100%);
}

.contact-method-card:hover .icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 67, 106, 0.3);
}

.contact-method-card:hover .icon-wrapper::before {
    opacity: 0.6;
}

.contact-method-card h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.contact-description {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.875rem 1.75rem;
    background: rgba(0, 67, 106, 0.05);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
}

.contact-link:hover {
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 67, 106, 0.25);
    border-color: transparent;
}

.contact-link i {
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: translateX(5px);
}

.address-link {
    cursor: default;
    pointer-events: none;
}

.address-link:hover {
    transform: none;
    background: rgba(0, 67, 106, 0.05);
    color: var(--primary-color);
}

/* Contact CTA Box */
.contact-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 32px;
    padding: 4rem 3rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 67, 106, 0.25);
    margin-top: 3rem;
}

.contact-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

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

.contact-cta-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.contact-cta-box p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-wrapper {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons-wrapper .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-buttons-wrapper .btn-primary-custom {
    background: white;
    color: var(--primary-color);
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-buttons-wrapper .btn-primary-custom:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.cta-buttons-wrapper .btn-outline-custom {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.cta-buttons-wrapper .btn-outline-custom:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* Decoration Circles */
.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatDecoration 8s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatDecoration {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
}

/* Responsive Design for Get In Touch Section */
@media (max-width: 992px) {
    .get-in-touch-section {
        padding: 100px 0;
    }
    
    .contact-method-card {
        padding: 2.5rem 2rem;
    }
    
    .icon-wrapper {
        width: 90px;
        height: 90px;
        font-size: 2.25rem;
    }
    
    .contact-cta-box {
        padding: 3rem 2rem;
    }
    
    .contact-cta-box h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .get-in-touch-section {
        padding: 80px 0;
    }
    
    .contact-hero-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .contact-method-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .contact-method-card h4 {
        font-size: 1.5rem;
    }
    
    .contact-link {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .contact-cta-box {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }
    
    .contact-cta-box h3 {
        font-size: 1.75rem;
    }
    
    .contact-cta-box p {
        font-size: 1.1rem;
    }
    
    .cta-buttons-wrapper {
        flex-direction: column;
    }
    
    .cta-buttons-wrapper .btn {
        width: 100%;
    }
    
    .decoration-circle {
        display: none;
    }
}

/* ============================================
   Services Page Enhanced Styles
   ============================================ */

/* Services Hero Section */
.services-hero-section {
    min-height: 60vh;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, rgba(0, 67, 106, 0.05) 0%, rgba(0, 135, 95, 0.05) 100%), #ffffff;
    position: relative;
    overflow: hidden;
}

.services-hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 67, 106, 0.08) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.services-hero-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 135, 95, 0.08) 0%, transparent 70%);
    bottom: -250px;
    left: -250px;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.services-hero-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 20px 50px rgba(0, 67, 106, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.services-hero-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.3;
    filter: blur(25px);
    z-index: -1;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.services-hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.services-hero-cta .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
}

/* Statistics Section */
.services-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.services-stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.why-choose-content {
    padding-right: 2rem;
}

.section-heading-left {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-choose-list {
    margin-top: 2.5rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 67, 106, 0.08);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 67, 106, 0.15);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.why-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

.why-choose-image {
    position: relative;
    height: 500px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 67, 106, 0.05) 0%, rgba(0, 135, 95, 0.05) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 67, 106, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.floating-card span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #ffffff;
}

.process-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 67, 106, 0.08);
    box-shadow: 0 4px 20px rgba(0, 67, 106, 0.08);
    position: relative;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 67, 106, 0.15);
    border-color: rgba(0, 135, 95, 0.3);
}

.process-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 67, 106, 0.1);
    line-height: 1;
}

.process-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 67, 106, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-card:hover .process-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 67, 106, 0.3);
}

.process-card h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Services CTA Section */
.services-cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.services-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 67, 106, 0.25);
}

.services-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.cta-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.services-cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 2;
}

.services-cta-box p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.cta-buttons-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-buttons-group .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
}

.cta-buttons-group .btn-primary-custom {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-buttons-group .btn-primary-custom:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-buttons-group .btn-outline-custom {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.cta-buttons-group .btn-outline-custom:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Services Final CTA */
.services-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.services-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

/* Responsive Design for Services Page */
@media (max-width: 992px) {
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .services-hero-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .section-heading-left {
        font-size: 2rem;
    }
    
    .why-choose-image {
        height: 400px;
        margin-top: 3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .services-hero-title {
        font-size: 2rem;
    }
    
    .services-hero-subtitle {
        font-size: 1rem;
    }
    
    .services-hero-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .services-hero-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-hero-cta .btn {
        width: 100%;
    }
    
    .services-stats-section {
        padding: 60px 0;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .section-heading-left {
        font-size: 1.75rem;
    }
    
    .why-item {
        padding: 1.25rem;
    }
    
    .why-choose-image {
        height: 300px;
    }
    
    .floating-card {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .process-section {
        padding: 60px 0;
    }
    
    .process-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .process-number {
        font-size: 3rem;
    }
    
    .process-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .services-cta-section {
        padding: 60px 0;
    }
    
    .services-cta-box {
        padding: 3rem 2rem;
    }
    
    .services-cta-box h2 {
        font-size: 2rem;
    }
    
    .services-cta-box p {
        font-size: 1.1rem;
    }
    
    .cta-icon-large {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .cta-buttons-group {
        flex-direction: column;
    }
    
    .cta-buttons-group .btn {
        width: 100%;
    }
    
    .services-final-cta {
        padding: 60px 0;
    }
}

/* Responsive Design for Blog Pages */
@media (max-width: 992px) {
    .blog-listing-title,
    .blog-detail-title {
        font-size: 2.5rem;
    }
    
    .blog-listing-subtitle {
        font-size: 1.15rem;
    }
    
    .blog-hero-icon,
    .blog-header-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .blog-featured-image-wrapper {
        height: 350px;
    }
    
    .blog-detail-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-listing-hero,
    .blog-detail-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .blog-listing-title,
    .blog-detail-title {
        font-size: 2rem;
    }
    
    .blog-listing-subtitle {
        font-size: 1rem;
    }
    
    .blog-hero-icon,
    .blog-header-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .blog-header-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-header-cta .btn {
        width: 100%;
    }
    
    .blog-featured-image-wrapper {
        height: 250px;
    }
    
    .blog-detail-content {
        padding: 1.5rem;
    }
    
    .blog-excerpt-box {
        padding: 1.5rem;
    }
    
    .blog-excerpt-box .lead {
        font-size: 1.1rem;
    }
    
    .blog-content-text {
        font-size: 1rem;
    }
    
    .blog-share-section {
        padding: 1.5rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
    
    .blog-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .blog-faq-section {
        padding: 60px 0;
    }
    
    .blog-final-cta {
        padding: 60px 0;
    }
    
    .recent-blog-item {
        flex-direction: column;
    }
    
    .recent-blog-image {
        width: 100%;
        height: 200px;
    }
}

