body {
    font-family: "Sora", serif;
    color: #333;
    background-color: #fff;
}

:root {
    --primary-color: #002C95; /* Dark blue accent color */
    --secondary-color: #000000; /* Black as secondary color */
    --text-color: #000000; /* Black text */
    --light-text: #ffffff; /* White text */
    --dark-text: #000000; /* Black text for contrast */
    --background-color: #ffffff; /* White background */
    --light-gray: #f8f9fa; /* Light gray for backgrounds */
    --medium-gray: #e9ecef; /* Medium gray for subtle elements */
    --border-color: #dee2e6; /* Border color */
    --hover-color: #001a57; /* Darker blue for hover states */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1); /* Small shadow */
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15); /* Medium shadow */
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.2); /* Large shadow */
    --transition-speed: 0.3s; /* Standard transition speed */
}

.theme {
    color: var(--primary-color);
}

/* Enhanced animations and transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced hover effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 44, 149, 0.15);
}

/* Modern gradient backgrounds */
.gradient-bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1976d2 50%, #42a5f5 100%);
}

.gradient-bg-light {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e3f2fd 100%);
}

/* Enhanced button styles */
.btn-modern {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    padding: 12px 24px;
}

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

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

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 44, 149, 0.3);
}

/* Enhanced card styles */
.card-modern {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #1976d2, #42a5f5);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card-modern:hover::before {
    transform: scaleX(1);
}

.card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 44, 149, 0.1);
}

/* Enhanced service item styles */
.service-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    border: 1px solid rgba(0, 44, 149, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 44, 149, 0.15);
    border-color: var(--primary-color);
}

/* Floating animation for icons */
.service-item .rounded-circle {
    transition: all 0.3s ease;
}

.service-item:hover .rounded-circle {
    animation: float 2s ease-in-out infinite;
}

/* Enhanced badge styles */
.badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Enhanced Service Cards */
.enhanced-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.enhanced-service-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.enhanced-service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 123, 255, 0.2);
}

.enhanced-service-card .service-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.enhanced-service-card .card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 123, 255, 0.02) 0%, 
        rgba(108, 117, 125, 0.02) 50%, 
        rgba(0, 123, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.enhanced-service-card:hover .card-background {
    opacity: 1;
}

.enhanced-service-card .card-content {
    position: relative;
    height: 100%;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.enhanced-service-card .service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.enhanced-service-card .service-number {
    font-size: 14px;
    font-weight: 700;
    color: #6c757d;
    background: rgba(108, 117, 125, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.enhanced-service-card .service-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enhanced-service-card .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.enhanced-service-card .service-icon i {
    transition: transform 0.3s ease;
}

.enhanced-service-card:hover .service-icon i {
    transform: scale(1.1) rotate(5deg);
}

.enhanced-service-card .icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-service-card:hover .icon-glow {
    opacity: 1;
}

.enhanced-service-card .service-body {
    flex: 1;
    text-align: left;
}

.enhanced-service-card .service-title {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.enhanced-service-card:hover .service-title {
    color: #007bff;
}

.enhanced-service-card .service-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #6610f2);
    border-radius: 2px;
    margin-bottom: 16px;
    transition: width 0.3s ease;
}

.enhanced-service-card:hover .service-divider {
    width: 60px;
}

.enhanced-service-card .service-description {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.enhanced-service-card .service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.enhanced-service-card .feature-badge {
    font-size: 12px;
    font-weight: 600;
    color: #495057;
    background: rgba(0, 123, 255, 0.1);
    padding: 6px 12px;
    border-radius: 16px;
    border: 1px solid rgba(0, 123, 255, 0.2);
    transition: all 0.3s ease;
}

.enhanced-service-card:hover .feature-badge {
    background: rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.3);
    color: #007bff;
}

.enhanced-service-card .service-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.enhanced-service-card .service-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #6610f2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.enhanced-service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

/* Gradient backgrounds for different service types */
.enhanced-service-card .bg-gradient-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.enhanced-service-card .bg-gradient-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.enhanced-service-card .bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8, #117a8b);
}

.enhanced-service-card .bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
}

.enhanced-service-card .bg-gradient-danger {
    background: linear-gradient(135deg, #dc3545, #bd2130);
}

.enhanced-service-card .bg-gradient-secondary {
    background: linear-gradient(135deg, #6c757d, #545b62);
}

.enhanced-service-card .bg-gradient-dark {
    background: linear-gradient(135deg, #343a40, #23272b);
}

/* Animation for service cards */
@keyframes serviceCardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.enhanced-service-card {
    animation: serviceCardFloat 6s ease-in-out infinite;
}

.enhanced-service-card:nth-child(2) {
    animation-delay: -2s;
}

.enhanced-service-card:nth-child(3) {
    animation-delay: -4s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .enhanced-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
    
    .enhanced-service-card {
        height: 330px;
    }
    
    .enhanced-service-card .card-content {
        padding: 22px 18px;
    }
}

@media (max-width: 768px) {
    .enhanced-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .enhanced-service-card {
        height: 320px;
    }
    
    .enhanced-service-card .card-content {
        padding: 20px 16px;
    }
    
    .enhanced-service-card .service-title {
        font-size: 18px;
    }
    
    .enhanced-service-card .service-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .enhanced-service-card {
        height: 300px;
    }
    
    .enhanced-service-card .card-content {
        padding: 18px 14px;
    }
    
    .enhanced-service-card .service-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .enhanced-service-card .service-description {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .enhanced-service-card .feature-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .enhanced-service-card .service-icon {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1976d2 50%, #42a5f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced section dividers */
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #1976d2, #42a5f5);
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 44, 149, 0.2);
}

/* Improved responsive design */
/* Responsive Design for Visual Section */
@media (max-width: 1024px) {
    .visual-container {
        max-width: 400px;
        height: 350px;
    }
    
    .brand-visual {
        width: 250px;
        height: 250px;
    }
    
    .central-icon {
        width: 60px;
        height: 60px;
    }
    
    .central-icon i {
        font-size: 1.5rem;
    }
    
    .orbit-1 {
        width: 100px;
        height: 100px;
    }
    
    .orbit-2 {
        width: 150px;
        height: 150px;
    }
    
    .orbit-3 {
        width: 200px;
        height: 200px;
    }
    
    .orbit-item {
        width: 35px;
        height: 35px;
    }
    
    .achievement-card {
        font-size: 0.8rem;
        padding: 10px 14px;
    }
}

@media (max-width: 768px) {
    .visual-section {
        min-height: 400px;
        padding: 40px 0;
    }
    
    .visual-container {
        max-width: 300px;
        height: 300px;
    }
    
    .brand-visual {
        width: 200px;
        height: 200px;
    }
    
    .central-icon {
        width: 50px;
        height: 50px;
    }
    
    .central-icon i {
        font-size: 1.2rem;
    }
    
    .orbit-1 {
        width: 80px;
        height: 80px;
    }
    
    .orbit-2 {
        width: 120px;
        height: 120px;
    }
    
    .orbit-3 {
        width: 160px;
        height: 160px;
    }
    
    .orbit-item {
        width: 30px;
        height: 30px;
    }
    
    .orbit-item i {
        font-size: 0.8rem;
    }
    
    .achievement-card {
        font-size: 0.75rem;
        padding: 8px 12px;
        gap: 6px;
    }
    
    .card-icon {
        width: 20px;
        height: 20px;
    }
    
    .card-icon i {
        font-size: 0.6rem;
    }
    
    .line {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .visual-container {
        max-width: 250px;
        height: 250px;
    }
    
    .brand-visual {
        width: 150px;
        height: 150px;
    }
    
    .achievement-cards {
        display: none; /* Hide achievement cards on very small screens */
    }
    
    .connecting-lines {
        display: none; /* Hide connecting lines on very small screens */
    }
}

@media (max-width: 768px) {
    .service-item {
        margin-bottom: 1rem;
    }
    
    .service-item .rounded-circle {
        width: 50px !important;
        height: 50px !important;
    }
    
    .service-item h3 {
        font-size: 1.1rem;
    }
    
    .animate-on-scroll {
        animation-delay: 0s !important;
    }
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced Testimonials Styles */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 44, 149, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.testimonial-carousel {
    position: relative;
    z-index: 2;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 44, 149, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #1976d2, #42a5f5);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 44, 149, 0.15);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-item:hover .testimonial-img {
    transform: scale(1.1);
    border-color: #1976d2;
}

.testimonial-quote {
    position: relative;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.rating i {
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.testimonial-item:hover .rating i {
    transform: scale(1.1);
}

/* Carousel Controls Enhancement */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.decorative-img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 44, 149, 0.1));
}

.decorative-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 30px rgba(0, 44, 149, 0.15));
}

/* Carousel Indicators Enhancement */
.carousel-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    opacity: 0.5;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.2);
}

.carousel-indicators button:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Enhanced Tools Section */
.tools-trade {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.tools-trade::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23002c95" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.marketing-img {
    transition: all 0.4s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 44, 149, 0.1));
}

.marketing-img:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 20px 40px rgba(0, 44, 149, 0.2));
}

/* Enhanced List Styling */
.tools-trade ul li {
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.tools-trade ul li:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

.tools-trade ul li i {
    margin-right: 12px;
    transition: all 0.3s ease;
}

.tools-trade ul li:hover i {
    transform: scale(1.2);
    color: #28a745;
}

/* Enhanced Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>') repeat;
    pointer-events: none;
}

.footer-logo {
    max-height: 60px;
    transition: all 0.3s ease;
    filter: brightness(1.2);
}

.footer-logo:hover {
    transform: scale(1.1);
    filter: brightness(1.4);
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-links li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

.footer-links a i {
    font-size: 0.85rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    opacity: 1;
    transform: scale(1.2);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.1rem;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 123, 255, 0.4);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
    border-color: var(--primary-color);
}

.social-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 10;
}

.social-icon:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 110%;
}

.footer-cta .btn {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.footer-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3, var(--primary-color));
}

.text-light-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive testimonials */
@media (max-width: 768px) {
    .testimonial-item {
        min-height: 350px;
        margin: 0 15px;
    }
    
    .testimonial-img {
        width: 60px;
        height: 60px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .testimonials::before {
        animation: none;
    }
    
    .carousel-indicators {
        bottom: -30px;
    }
    
    .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 3px;
     }
     
     /* Footer responsive adjustments */
     .modern-footer {
         text-align: center;
     }
     
     .footer-heading::after {
         left: 50%;
         transform: translateX(-50%);
     }
     
     .footer-links a {
         justify-content: center;
     }
     
     .contact-item {
         justify-content: center;
         text-align: left;
         max-width: 300px;
         margin: 0 auto 1rem;
     }
     
     .social-icons {
         gap: 10px;
     }
     
     .social-icon {
         width: 40px;
         height: 40px;
     }
     
     .footer-cta {
         margin-top: 1rem;
     }
 }
 
 /* Additional enhancements */
 .gradient-bg-dark {
     background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
 }
 
 /* Scroll to top button */
 .scroll-to-top {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, var(--primary-color), #0056b3);
     color: white;
     border: none;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     cursor: pointer;
     transition: all 0.3s ease;
     opacity: 0;
     visibility: hidden;
     z-index: 1000;
     box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
 }
 
 .scroll-to-top.show {
     opacity: 1;
     visibility: visible;
 }
 
 .scroll-to-top:hover {
     transform: translateY(-3px) scale(1.1);
     box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
 }
 
 /* Enhanced loading animation */
 .page-loader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     transition: opacity 0.5s ease;
 }
 
 .loader-content {
     text-align: center;
 }
 
 .loader-spinner {
     width: 60px;
     height: 60px;
     border: 4px solid rgba(0, 44, 149, 0.1);
     border-left: 4px solid var(--primary-color);
     border-radius: 50%;
     animation: spin 1s linear infinite;
     margin: 0 auto 20px;
 }
 
 .loader-text {
     color: var(--primary-color);
     font-weight: 600;
     font-size: 1.1rem;
 }
 
 @keyframes spin {
     0% { transform: rotate(0deg); }
     100% { transform: rotate(360deg); }
 }

/*------------------------------------------------- Navbar (Header) */
.modern-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.98) 100%) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0 !important;
    box-shadow: 0 8px 32px rgba(0, 44, 149, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-color), #4a90e2, var(--primary-color)) 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-header .navbar-toggler {
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.modern-header .navbar-toggler:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.modern-header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 44, 149, 0.25);
    outline: none;
}

.modern-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23002c95' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 20px;
    height: 20px;
}

.modern-header .navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-item {
    font-size: 1rem;
    position: relative;
    padding: 0;
    margin: 0 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-item:hover {
    transform: translateY(-3px) scale(1.02);
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 20px;
    position: relative;
    margin: 0;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: 25px;
    background: transparent;
    overflow: hidden;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 44, 149, 0.08);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 0.3s ease;
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
}

.navbar-nav .nav-link:hover::before {
    width: 60%;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleY(1);
    opacity: 1;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    transform: translateY(-1px);
    font-weight: 700;
}

.logo-img {
    max-width: 120px;
    height: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 44, 149, 0.2));
    border-radius: 8px;
    padding: 5px;
}

.logo-img:hover {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 8px 25px rgba(0, 44, 149, 0.4));
}

.btn-connect {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a90e2 100%);
    color: var(--light-text);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 35px;
    padding: 14px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 44, 149, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a90e2 0%, var(--primary-color) 100%);
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 35px;
    z-index: -1;
}

.btn-connect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    border-radius: 50%;
    z-index: 0;
}

.btn-connect:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 44, 149, 0.4), 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--light-text) !important;
}

.btn-connect:hover::before {
    transform: scale(1);
}

.btn-connect:hover::after {
    width: 300px;
    height: 300px;
}

.btn-connect i {
    transition: transform 0.3s ease;
    color: var(--light-text);
}

.btn-connect:hover i {
    transform: translateX(5px);
    color: var(--light-text) !important;
}

.btn-connect span {
    color: var(--light-text);
}

.btn-connect:hover span {
    color: var(--light-text) !important;
}

.btn-primary:hover {
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Dropdown Menu */
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.dropdown-toggle:hover::after,
.nav-item.dropdown:hover .dropdown-toggle::after,
.nav-item.dropdown:focus-within .dropdown-toggle::after {
    transform: rotate(180deg);
}

.modern-dropdown {
    background-color: var(--light-text);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 15px 0;
    min-width: 230px;
    margin-top: 15px;
    overflow: hidden;
}

.modern-dropdown .dropdown-item {
    color: var(--text-color);
    padding: 12px 20px;
    font-size: 0.9rem;
    transition: all var(--transition-speed);
    border-left: 3px solid transparent;
}

.modern-dropdown .dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu {
    display: block;
    animation: fadeInUp 0.4s ease-in-out;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 44, 149, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 44, 149, 0.15);
    padding: 10px;
}

.dropdown-item {
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 8px;
    margin: 2px 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

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

@media (max-width: 991px) {
    .modern-header .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 15px;
        padding: 20px;
        box-shadow: 0 8px 32px rgba(0, 44, 149, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .navbar-nav {
        text-align: center;
        padding: 10px 0;
    }
    
    .navbar-nav .nav-item {
        margin: 8px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 20px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.7);
        margin: 5px 0;
        border: 1px solid rgba(0, 44, 149, 0.1);
        transition: all 0.3s ease;
        display: block;
        width: 100%;
    }
    
    .navbar-nav .nav-link:hover {
        background: var(--primary-color);
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 44, 149, 0.3);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-link::before {
        display: none;
    }
    
    .logo-img {
        max-width: 90px;
        margin-left: 15px;
    }
    
    .dropdown-menu {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(0, 44, 149, 0.1);
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 44, 149, 0.15);
        margin-top: 10px;
        padding: 10px;
        position: static;
        width: 100%;
        text-align: center;
    }
    
    .dropdown-item {
        padding: 10px 15px;
        border-radius: 8px;
        margin: 3px 0;
        transition: all 0.3s ease;
        color: var(--text-color);
        text-align: center;
    }
    
    .dropdown-item:hover {
        background: var(--primary-color);
        color: white;
        transform: translateX(5px);
    }
    
    .nav-item.dropdown.show .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}
@media (max-width: 768px) {
    .modern-header {
        padding: 0.8rem 0 !important;
    }
    
    .navbar-brand img {
        width: 75px !important;
        height: auto !important;
    }
    
    .modern-header .navbar-collapse {
        margin-top: 10px;
        padding: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .dropdown-item {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

/*-------------------------------------------------- Footer */
.modern-footer {
    font-family: "Sora", serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
    color: var(--light-text);
    padding-top: 80px;
    border-top: 5px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-color), #4a90e2, var(--primary-color)) 1;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 44, 149, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 144, 226, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 44, 149, 0.2) 0%, transparent 50%);
    pointer-events: none;
    animation: footerGlow 8s ease-in-out infinite alternate;
}

@keyframes footerGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.footer-logo-container {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.footer-logo {
    max-width: 140px;
    height: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 15px rgba(0, 44, 149, 0.3));
    border-radius: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.footer-logo:hover {
    transform: scale(1.1) rotate(-2deg);
    filter: drop-shadow(0 8px 25px rgba(0, 44, 149, 0.5));
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.6;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.footer-heading {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--light-text);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.footer-heading:hover {
    transform: translateY(-2px);
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #4a90e2);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(0, 44, 149, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(1.1); opacity: 0.8; }
}

.footer-links li {
    margin-bottom: 15px;
    position: relative;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    display: inline-block;
    position: relative;
    padding: 12px 0 12px 35px;
    opacity: 0.85;
    font-weight: 500;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    width: 100%;
    border-left: 3px solid transparent;
}

.footer-links a::before {
    content: '▶';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.8rem;
    color: var(--primary-color);
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 44, 149, 0.1), rgba(74, 144, 226, 0.1));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    z-index: -1;
}

.footer-links a:hover {
    color: var(--light-text) !important;
    opacity: 1;
    transform: translateX(8px);
    border-left-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 44, 149, 0.2);
}

.footer-links a:hover::before {
    transform: translateY(-50%) translateX(5px);
    opacity: 1;
    color: #4a90e2;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact-info {
    font-size: 0.95rem;
}

.contact-icon {
    color: var(--primary-color);
    width: 20px;
    margin-right: 10px;
}

.contact-indent {
    padding-left: 30px;
}

.footer-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), #4a90e2, var(--primary-color), transparent);
    margin: 40px 0 30px;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 44, 149, 0.4);
    position: relative;
    overflow: hidden;
}

.footer-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.copyright {
    font-size: 0.9rem;
    color: var(--light-text);
    opacity: 0.7;
    font-weight: 400;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 44, 149, 0.2), rgba(74, 144, 226, 0.2));
    color: var(--light-text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 44, 149, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    transform: scale(0) rotate(180deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    z-index: -1;
}

.social-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    border-radius: 50%;
    z-index: 0;
}

.social-icon:hover {
    color: var(--light-text);
    transform: translateY(-8px) scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(0, 44, 149, 0.4), 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.social-icon:hover::before {
    transform: scale(1) rotate(0deg);
}

.social-icon:hover::after {
    width: 60px;
    height: 60px;
}

.social-icon {
    text-decoration: none !important;
}

@media (max-width: 991px) {
    .modern-header {
        padding: 0.8rem 0 !important;
    }
    
    .navbar-nav .nav-item {
        margin: 0 10px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px;
        font-size: 0.8rem;
    }
    
    .btn-connect {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        padding: 10px 0 10px 25px;
        font-size: 0.95rem;
    }
    
    .footer-links a::before {
        left: 8px;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 25px;
        gap: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .modern-header {
        padding: 0.6rem 0 !important;
        backdrop-filter: blur(15px);
    }
    
    .navbar-nav .nav-item {
        margin: 0 5px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 12px;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .logo-img {
        max-width: 100px;
    }
    
    .btn-connect {
        padding: 8px 16px;
        font-size: 0.75rem;
        border-radius: 25px;
    }
    
    .modern-footer {
        text-align: center;
        padding-top: 60px;
    }
    
    .footer-logo {
        max-width: 120px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .footer-heading {
        margin-top: 35px;
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .footer-links a {
        padding: 8px 0 8px 20px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .footer-links a::before {
        left: 6px;
        font-size: 0.7rem;
    }
    
    .contact-icon {
        display: inline-block;
        margin-right: 8px;
        width: auto;
        font-size: 1.2rem;
    }
    
    .contact-indent {
        padding-left: 0;
    }
    
    .social-icons {
        gap: 12px;
        margin-top: 20px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-divider {
        margin: 30px 0 20px;
    }
    
    .copyright {
        font-size: 0.8rem;
        text-align: center;
    }
}
/* ------------------------------------------Hero Banner */
.hero-banner {
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 80px;
    border-radius: 0 0 80px 80px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s ease;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--light-text);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    overflow: hidden;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

/* Modern Process Section Styling */
.modern-process-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.modern-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 44, 149, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 44, 149, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
    text-align: center;
}

.section-title span {
    background: linear-gradient(135deg, #002c95, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Process Cards */
.process-card {
    background: #fff;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(0, 44, 149, 0.1);
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #002c95, #0056b3);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.process-card.featured {
    border: 2px solid #28a745;
    background: linear-gradient(135deg, #fff 0%, #f8fff9 100%);
}

.process-card.featured::before {
    background: linear-gradient(135deg, #28a745, #20c997);
}

/* Process Number */
.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #002c95, #0056b3);
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 44, 149, 0.3);
}

.process-number.success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.process-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.process-card:hover .process-number::after {
    left: 100%;
}

/* Process Image - Removed */

/* Process Content */
.process-card .process-content {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-card .process-content h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #002c95;
    line-height: 1.3;
}

.process-card .process-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 280px;
}

/* Success Badge */
.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
}

.success-badge i {
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-process-section {
        padding: 80px 15px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 18px;
        margin-bottom: 60px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-card {
        padding: 30px 20px;
    }
    
    .process-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .process-card {
        padding: 25px 15px;
    }
    
    .process-image {
        height: 160px;
    }
    
    .process-card .process-content h4 {
        font-size: 20px;
    }
}

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

/* ------------------------------------------Contact Section */
.contact-container {
    padding: 0 20px 80px;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.title-underline {
    width: 120px;
    height: 5px;
    background: var(--primary-color);
    margin: 0 auto 30px;
    border-radius: 3px;
    box-shadow: 0 4px 10px rgba(0, 44, 149, 0.3);
    position: relative;
    overflow: hidden;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Contact Info Card */
.contact-info-card {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 40px 30px;
    border-radius: 16px;
    height: 100%;
    box-shadow: var(--shadow-lg);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.contact-info-card > * {
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--light-text);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: var(--light-text);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.icon-container {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .icon-container {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(255, 255, 255, 0.25);
}

.icon-container i {
    color: var(--light-text);
    font-size: 1.1rem;
}

.contact-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-text {
    color: var(--light-text);
}

.social-title, .map-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light-text);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-title::after, .map-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--light-text);
    bottom: 0;
    left: 0;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.map-container {
    margin-top: 30px;
}

.google-map {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Contact Form Card */
.contact-form-card {
    background-color: var(--light-text);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 10px 25px rgba(0, 44, 149, 0.2);
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-left: 12px;
}

.form-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.modern-input {
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: var(--light-text);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.modern-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 44, 149, 0.15);
    background-color: var(--light-text);
    outline: none;
    transform: translateY(-2px);
}

textarea.modern-input {
    resize: vertical;
    min-height: 120px;
}

.modern-button {
    background-color: var(--primary-color);
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    padding: 16px 20px;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.modern-button span {
    color: var(--light-text);
}

.modern-button i {
    color: var(--light-text);
}

.modern-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.4s;
    border-radius: 30px;
    z-index: -1;
}

.modern-button:hover {
    background-color: var(--hover-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-md);
    color: var(--light-text) !important;
}

.modern-button:hover::before {
    transform: scale(1);
    opacity: 0.15;
    background: rgba(255, 255, 255, 0.2);
}

.modern-button:hover span {
    color: var(--light-text) !important;
}

.modern-button:hover i {
    color: var(--light-text) !important;
}

/* Media Queries */
@media (max-width: 991px) {
    .hero-banner {
        height: 350px;
        margin-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .card-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .icon-container {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        height: 300px;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-info-card {
        margin-bottom: 30px;
    }
    
    .modern-button {
        font-size: 0.9rem;
        padding: 12px;
    }
}

/* Banner Section */
/* Banner Section */
.banner-image {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Video */
.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

/* Dark Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

/* Banner Content */
.banner-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
    z-index: 2;
}

/* Subheading */
.banner-content .subheading {
    font-size: clamp(18px, 4vw, 28px);
    font-weight: 400;
}

/* Highlight Text */
.banner-content .highlight {
    color: var(--bs-blue);
    font-size: clamp(40px, 10vw, 120px);
    font-weight: 600;
    display: inline-block;
}

/* Paragraphs */
.banner-content p,
.banner-content span {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
}
.custom-btn {
    display: inline-block;
    min-width: 200px;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    background-color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease-in-out, transform 0.2s;
}
.custom-btn:hover {
    background-color: #dddddd;
    color: #000000;
    transform: scale(1.05);
}
.custom-btn:active {
    transform: scale(0.98);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-content .highlight {
        font-size: clamp(30px, 8vw, 80px);
    }
}

@media (max-width: 480px) {
    .banner-content {
        width: 95%;
    }
    .banner-content .highlight {
        font-size: clamp(28px, 6vw, 60px);
    }
    .banner-content p,
    .banner-content span {
        font-size: 16px;
    }
}

/* Modern Services Showcase */
.modern-services-showcase {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
    overflow: hidden;
    padding: 80px 0;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 44, 149, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(74, 144, 226, 0.2) 0%, transparent 50%);
    animation: overlayPulse 6s ease-in-out infinite alternate;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

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

.particle-2 {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle-3 {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.particle-4 {
    top: 30%;
    left: 70%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

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

.services-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.services-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-bottom: 0;
}

.services-marquee-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    mask: linear-gradient(90deg, transparent 0%, white 10%, white 90%, transparent 100%);
    -webkit-mask: linear-gradient(90deg, transparent 0%, white 10%, white 90%, transparent 100%);
}

.services-marquee {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: smoothMarquee 60s linear infinite;
    width: max-content;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px 30px;
    white-space: nowrap;
    transition: all 0.3s ease;
    min-width: 280px;
}

.service-card:hover {
    background: rgba(0, 44, 149, 0.2);
    border-color: rgba(0, 44, 149, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 44, 149, 0.3);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
}

@keyframes smoothMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modern-services-showcase {
        padding: 60px 0;
    }
    
    .services-marquee {
        gap: 30px;
        animation-duration: 50s;
    }
    
    .service-card {
        padding: 15px 25px;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .modern-services-showcase {
        padding: 50px 0;
    }
    
    .services-marquee {
        gap: 25px;
        animation-duration: 45s;
    }
    
    .service-card {
        padding: 12px 20px;
        min-width: 220px;
        gap: 12px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    .service-name {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .services-marquee {
        gap: 20px;
        animation-duration: 40s;
    }
    
    .service-card {
        padding: 10px 15px;
        min-width: 200px;
        gap: 10px;
    }
    
    .service-icon {
        width: 35px;
        height: 35px;
    }
    
    .service-icon i {
        font-size: 1rem;
    }
    
    .service-name {
        font-size: 0.9rem;
    }
}

/* Modern Info Section */
.modern-info-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.info-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 44, 149, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.08) 0%, transparent 50%);
    animation: overlayShift 8s ease-in-out infinite alternate;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 44, 149, 0.1), rgba(74, 144, 226, 0.05));
    animation: elementFloat 12s ease-in-out infinite;
}

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

.element-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 10%;
    animation-delay: 4s;
}

.element-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 20%;
    animation-delay: 8s;
}

@keyframes overlayShift {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes elementFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    padding: 10px 24px;
    border-radius: 30px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.badge-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.modern-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 2rem;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: white;
}

.highlight-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.highlight-desc {
    color: #64748b;
    margin: 0;
    font-size: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.main-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
}

.mission-statement {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, rgba(0, 44, 149, 0.05), rgba(74, 144, 226, 0.03));
    border-left: 4px solid var(--primary-color);
    border-radius: 0 12px 12px 0;
    padding: 20px;
}

.mission-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.mission-icon i {
    font-size: 1.2rem;
    color: white;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2d3748;
    margin: 0;
}

/* Visual Section Styles */
.visual-section {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.visual-backdrop {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(80, 200, 120, 0.1));
    border-radius: 20px;
    filter: blur(20px);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

.brand-visual {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.central-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #50C878);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.central-icon i {
    font-size: 2rem;
    color: white;
}

.orbit-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orbit {
    position: absolute;
    border: 2px solid rgba(74, 144, 226, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 15s;
}

.orbit-2 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 25s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 240px;
    height: 240px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 35s;
}

.orbit-item {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: counter-rotate 20s linear infinite;
}

.orbit-1 .orbit-item {
    animation-duration: 15s;
}

.orbit-2 .orbit-item {
    animation-duration: 25s;
    animation-direction: normal;
}

.orbit-3 .orbit-item {
    animation-duration: 35s;
}

.item-1 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.item-2 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.item-3 {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD93D, #FF6B6B);
}

.item-4 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #A8E6CF, #7FCDCD);
}

.item-5 {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #FFB347, #FFCC5C);
}

.item-6 {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #DDA0DD, #98D8E8);
}

.orbit-item i {
    color: white;
    font-size: 1rem;
}

.connecting-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.3), transparent);
    animation: pulse-line 3s ease-in-out infinite;
}

.line-1 {
    width: 2px;
    height: 60px;
    top: 20%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    width: 2px;
    height: 60px;
    top: 20%;
    right: 20%;
    transform: rotate(-45deg);
    animation-delay: 0.5s;
}

.line-3 {
    width: 2px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    transform: rotate(45deg);
    animation-delay: 1s;
}

.line-4 {
    width: 2px;
    height: 60px;
    bottom: 20%;
    right: 20%;
    transform: rotate(-45deg);
    animation-delay: 1.5s;
}

.achievement-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.achievement-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: float-card 4s ease-in-out infinite;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

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

.card-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 10%;
    right: -5%;
    animation-delay: 3s;
}

.card-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4A90E2, #50C878);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    color: white;
    font-size: 0.7rem;
}

.card-text {
    white-space: nowrap;
}

.floating-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 3;
}

.badge-content {
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(0, 44, 149, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 44, 149, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(0, 44, 149, 0.4);
    }
}

/* Visual Section Animations */
@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes counter-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

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

@keyframes float-card {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Responsive Design for Modern Info Section */
@media (max-width: 1024px) {
    .modern-info-section {
        padding: 80px 0;
    }
    
    .stats-grid {
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .modern-info-section {
        padding: 60px 0;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .mission-statement {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .image-backdrop {
        top: 15px;
        left: 15px;
    }
    
    .floating-badge {
        top: -10px;
        right: -10px;
    }
    
    .badge-content {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .modern-info-section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-badge {
        padding: 8px 20px;
        border-radius: 25px;
        margin-bottom: 1.5rem;
        width: 100%;
        text-align: center;
        max-width: 280px;
    }
    
    .badge-text {
        font-size: 0.85rem;
        letter-spacing: 0.6px;
    }
    
    .modern-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .content-wrapper {
        text-align: center;
        padding: 0 10px;
    }
    
    .highlight-box {
        padding: 20px 15px;
        margin-bottom: 2rem;
        border-radius: 15px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
    }
    
    .highlight-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .highlight-desc {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 15px 10px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .main-description {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .mission-statement {
        padding: 20px 15px;
        text-align: center;
    }
    
    .mission-text {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .modern-info-section {
        padding: 30px 0;
    }
    
    .section-badge {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    
    .modern-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1.3;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .highlight-box {
        padding: 15px;
    }
    
    .visual-container {
        margin-top: 30px;
    }
}

/* Info Section */
.info-section {
    position: relative;
    padding: 60px 20px;
    background-color: #f5f5f5;
}
.info-section .container {
    max-width: 1100px;
    margin: 0 auto;
}
.info-section .column {
    padding: 20px;
}
.info-section .column .title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 20px;
}
.info-section .column.column-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.info-section .column.column-image .image-frame {
    max-width: 100%;
    text-align: center;
}
.info-section .column.column-image .image-frame img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
}
.info-section .column.column-description {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    max-width: 550px;
}
@media (max-width: 992px) {
    .info-section .column .title {
        font-size: 36px;
    }
    .info-section .column.column-description {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .info-section .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .info-section .column .title {
        font-size: 32px;
    }
    .info-section .column.column-description {
        font-size: 17px;
        padding-top: 15px;
    }
    .info-section .column.column-image {
        width: 100%;
        margin: 20px 0;
    }
    .info-section .column.column-image .image-frame img {
        max-width: 100%;
    }
}
@media (max-width: 576px) {
    .info-section {
        padding: 50px 15px;
    }
    .info-section .column .title {
        font-size: 28px;
    }
    .info-section .column.column-description {
        font-size: 16px;
    }
}

/* Modern Results Section */
.modern-results-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1976d2 50%, #42a5f5 100%);
    overflow: hidden;
    min-height: auto;
}

.results-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 44, 149, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(25, 118, 210, 0.2) 0%, transparent 50%);
}

.results-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
}

.floating-metrics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.metric {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: float-metric 6s ease-in-out infinite;
}

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

.metric-2 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.metric-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.metric-icon i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.metric-value {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.results-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.results-header {
    margin-bottom: 60px;
}

.results-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.results-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.results-badge .badge-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.results-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
}

.title-highlight {
    background: linear-gradient(135deg, #42a5f5 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #1976d2, #42a5f5);
    margin: 0 auto;
    border-radius: 2px;
}

/* Enhanced Content Grid */
.enhanced-content-grid {
    position: relative;
    margin-bottom: 60px;
    padding: 20px 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.enhanced-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 420px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transform-style: preserve-3d;
}

/* Enhanced Card Hover Effects */
.enhanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(66, 165, 245, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.enhanced-card:hover::before {
    opacity: 1;
}

.enhanced-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 0 25px 50px rgba(0, 44, 149, 0.2), 0 0 30px rgba(66, 165, 245, 0.1);
    border-color: rgba(66, 165, 245, 0.3);
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    position: relative;
}

.card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(66, 165, 245, 0.3);
    line-height: 1;
    font-family: 'Arial', sans-serif;
}

.card-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1976d2 50%, #42a5f5 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 44, 149, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), #42a5f5);
    border-radius: 20px;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.enhanced-card:hover .icon-glow {
    opacity: 0.6;
}

.enhanced-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

/* Card Body */
.card-body {
    padding: 0 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.enhanced-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #42a5f5);
    border-radius: 2px;
    margin-bottom: 20px;
}

.enhanced-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    flex: 1;
}

.enhanced-card-text strong {
    color: #42a5f5;
    font-weight: 600;
}

/* Feature Tags */
.card-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.feature-tag {
    background: rgba(66, 165, 245, 0.2);
    color: #ffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(66, 165, 245, 0.3);
    transition: all 0.3s ease;
}

.enhanced-card:hover .feature-tag {
     background: rgba(66, 165, 245, 0.3);
     transform: translateY(-2px);
 }

/* Card Footer */
.card-footer {
    padding: 25px 30px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-indicator {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #1976d2, #42a5f5);
    border-radius: 3px;
    transition: width 1s ease-in-out;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progress-shine 2s infinite;
}

.progress-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating Background Elements */
.grid-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(66, 165, 245, 0.1);
    border: 1px solid rgba(66, 165, 245, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-element 8s ease-in-out infinite;
}

.floating-element i {
    font-size: 16px;
    color: rgba(66, 165, 245, 0.6);
}

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

.element-2 {
    top: 60%;
    right: 8%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

/* Animations */
@keyframes progress-shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes float-element {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.7;
    }
}

.growth-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #42a5f5;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 44, 149, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.cta-section {
    text-align: center;
}

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

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

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

.primary-cta, .secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1976d2 50%, #42a5f5 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 44, 149, 0.3);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
}

.cta-icon {
    transition: transform 0.3s ease;
}

.primary-cta:hover .cta-icon,
 .secondary-cta:hover .cta-icon {
     transform: translateX(5px);
 }

/* Animation Keyframes for Modern Results Section */
@keyframes float-metric {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive Design for Modern Results Section */
@media (max-width: 1024px) {
    .modern-results-section {
        padding: 80px 0;
        min-height: auto;
    }
    
    .results-content {
        padding: 30px;
    }
    
    .results-title {
        font-size: 2.8rem;
    }
    
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-items: center;
    }
    
    .enhanced-card {
        max-width: 100%;
    }
    
    .growth-stats {
        gap: 30px;
        padding: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .modern-results-section {
        padding: 60px 0;
    }
    
    .results-content {
        padding: 25px;
        margin: 0 15px;
    }
    
    .results-title {
        font-size: 2.2rem;
    }
    
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        justify-items: center;
    }
    
    .enhanced-card {
        max-width: 100%;
        width: 100%;
    }
    
    .card-header {
        padding: 20px 25px 15px;
    }
    
    .card-body {
        padding: 0 25px;
    }
    
    .card-footer {
        padding: 20px 25px 25px;
    }
    
    .card-number {
        font-size: 2rem;
    }
    
    .enhanced-card-title {
         font-size: 1.4rem;
     }
     
     .floating-element {
         display: none;
     }
     
     .content-card {
         padding: 30px 20px;
    }
    
    .growth-stats {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    
    .stat-divider {
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-cta, .secondary-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .floating-metrics .metric {
        display: none;
    }
}

@media (max-width: 480px) {
    .modern-results-section {
        padding: 40px 0;
    }
    
    .results-content {
        padding: 20px;
        margin: 0 10px;
        border-radius: 16px;
    }
    
    .results-badge {
        padding: 8px 16px;
        gap: 8px;
    }
    
    .results-badge .badge-text {
        font-size: 12px;
    }
    
    .results-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .content-card {
        padding: 25px 15px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 20px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
    
    .growth-stats {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .primary-cta, .secondary-cta {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

/* Service Section */
.service {
    position: relative;
    padding: 60px 20px;
    background-color: #f9f9f9;
}
/* Enhanced Background Overlay */
.enhanced-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.gradient-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            rgba(0, 44, 149, 0.08) 0%, 
            rgba(25, 118, 210, 0.06) 25%,
            rgba(66, 165, 245, 0.04) 50%,
            rgba(0, 44, 149, 0.08) 75%,
            rgba(25, 118, 210, 0.06) 100%),
        radial-gradient(circle at 25% 25%, rgba(66, 165, 245, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 44, 149, 0.05) 0%, transparent 50%);
    animation: enhanced-gradient-shift 18s ease-in-out infinite;
    backdrop-filter: blur(0.3px);
}

.pattern-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        conic-gradient(from 0deg at 25% 25%, rgba(66, 165, 245, 0.15) 0deg, transparent 90deg, rgba(0, 44, 149, 0.12) 180deg, transparent 270deg),
        conic-gradient(from 180deg at 75% 75%, rgba(25, 118, 210, 0.1) 0deg, transparent 90deg, rgba(66, 165, 245, 0.08) 180deg, transparent 270deg),
        radial-gradient(ellipse at 50% 20%, rgba(0, 44, 149, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(66, 165, 245, 0.06) 0%, transparent 50%),
        linear-gradient(45deg, rgba(25, 118, 210, 0.03) 0%, transparent 30%, rgba(0, 44, 149, 0.05) 70%, transparent 100%);
    background-size: 800px 800px, 600px 600px, 400px 200px, 300px 300px, 100% 100%;
    background-position: 0 0, 100% 100%, 50% 0%, 0% 100%, 0 0;
    animation: advanced-pattern-flow 25s ease-in-out infinite;
    filter: blur(0.5px);
    opacity: 0.8;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(66, 165, 245, 0.15), rgba(0, 44, 149, 0.12), rgba(25, 118, 210, 0.1));
    animation: enhanced-float-shape 15s ease-in-out infinite;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 44, 149, 0.1);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 8%;
    left: 12%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
    animation-duration: 18s;
    background: linear-gradient(135deg, rgba(66, 165, 245, 0.2), rgba(0, 44, 149, 0.15));
}

.shape-2 {
    width: 160px;
    height: 80px;
    top: 55%;
    right: 10%;
    border-radius: 50px;
    animation-delay: 4s;
    animation-duration: 22s;
    background: linear-gradient(45deg, rgba(25, 118, 210, 0.18), rgba(66, 165, 245, 0.12));
    transform: rotate(25deg);
}

.shape-3 {
    width: 90px;
    height: 90px;
    top: 25%;
    right: 25%;
    border-radius: 20% 80% 20% 80%;
    animation-delay: 8s;
    animation-duration: 16s;
    background: linear-gradient(225deg, rgba(0, 44, 149, 0.16), rgba(25, 118, 210, 0.1));
}

.shape-4 {
    width: 140px;
    height: 70px;
    bottom: 15%;
    left: 18%;
    border-radius: 35px;
    animation-delay: 12s;
    animation-duration: 24s;
    background: linear-gradient(315deg, rgba(66, 165, 245, 0.14), rgba(0, 44, 149, 0.18));
    transform: rotate(-15deg);
}

.shape-5 {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 60%;
    border-radius: 50% 20% 50% 20%;
    animation-delay: 6s;
    animation-duration: 20s;
    background: linear-gradient(180deg, rgba(25, 118, 210, 0.12), rgba(66, 165, 245, 0.16));
}

.shape-6 {
    width: 80px;
    height: 120px;
    top: 40%;
    left: 5%;
    border-radius: 40px 40px 20px 20px;
    animation-delay: 10s;
    animation-duration: 14s;
    background: linear-gradient(90deg, rgba(0, 44, 149, 0.1), rgba(25, 118, 210, 0.14));
}

/* Keyframe Animations for Enhanced Background */
@keyframes enhanced-gradient-shift {
    0%, 100% {
        background: 
            linear-gradient(135deg, 
                rgba(0, 44, 149, 0.08) 0%, 
                rgba(25, 118, 210, 0.06) 25%,
                rgba(66, 165, 245, 0.04) 50%,
                rgba(0, 44, 149, 0.08) 75%,
                rgba(25, 118, 210, 0.06) 100%),
            radial-gradient(circle at 25% 25%, rgba(66, 165, 245, 0.06) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(0, 44, 149, 0.05) 0%, transparent 50%);
        filter: hue-rotate(0deg);
    }
    33% {
        background: 
            linear-gradient(225deg, 
                rgba(25, 118, 210, 0.06) 0%, 
                rgba(66, 165, 245, 0.04) 25%,
                rgba(0, 44, 149, 0.08) 50%,
                rgba(25, 118, 210, 0.06) 75%,
                rgba(66, 165, 245, 0.04) 100%),
            radial-gradient(circle at 75% 25%, rgba(0, 44, 149, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 25% 75%, rgba(66, 165, 245, 0.06) 0%, transparent 50%);
        filter: hue-rotate(5deg);
    }
    66% {
        background: 
            linear-gradient(315deg, 
                rgba(66, 165, 245, 0.04) 0%, 
                rgba(0, 44, 149, 0.08) 25%,
                rgba(25, 118, 210, 0.06) 50%,
                rgba(66, 165, 245, 0.04) 75%,
                rgba(0, 44, 149, 0.08) 100%),
            radial-gradient(circle at 50% 50%, rgba(25, 118, 210, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(0, 44, 149, 0.05) 0%, transparent 50%);
        filter: hue-rotate(-5deg);
    }
}

@keyframes advanced-pattern-flow {
    0% {
        background-position: 0 0, 100% 100%, 50% 0%, 0% 100%, 0 0;
        transform: rotate(0deg) scale(1);
    }
    25% {
        background-position: 25% 25%, 75% 75%, 75% 25%, 25% 75%, 0 0;
        transform: rotate(1deg) scale(1.02);
    }
    50% {
        background-position: 50% 50%, 50% 50%, 100% 50%, 50% 50%, 0 0;
        transform: rotate(0deg) scale(1.01);
    }
    75% {
        background-position: 75% 25%, 25% 75%, 25% 75%, 75% 25%, 0 0;
        transform: rotate(-1deg) scale(1.02);
    }
    100% {
        background-position: 0 0, 100% 100%, 50% 0%, 0% 100%, 0 0;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes enhanced-float-shape {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.4;
        border-radius: inherit;
    }
    20% {
        transform: translateY(-25px) translateX(15px) rotate(72deg) scale(1.1);
        opacity: 0.7;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    40% {
        transform: translateY(-15px) translateX(-20px) rotate(144deg) scale(0.9);
        opacity: 0.5;
        border-radius: 50% 20% 50% 20%;
    }
    60% {
        transform: translateY(-35px) translateX(8px) rotate(216deg) scale(1.15);
        opacity: 0.8;
        border-radius: 20% 80% 20% 80%;
    }
    80% {
        transform: translateY(-10px) translateX(-12px) rotate(288deg) scale(0.95);
        opacity: 0.6;
        border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    }
}

/* Responsive Design for Enhanced Background */
@media (max-width: 1200px) {
    .pattern-layer {
        background-size: 600px 600px, 500px 500px, 300px 150px, 250px 250px, 100% 100%;
        opacity: 0.75;
    }
    
    .shape-1, .shape-2 {
        width: 100px;
        height: 80px;
    }
    
    .shape-3, .shape-4 {
        width: 70px;
        height: 70px;
    }
    
    .shape-5, .shape-6 {
        width: 80px;
        height: 90px;
    }
}

@media (max-width: 1024px) {
    .pattern-layer {
        background-size: 500px 500px, 400px 400px, 250px 125px, 200px 200px, 100% 100%;
        opacity: 0.7;
        filter: blur(1px);
    }
    
    .shape-1, .shape-2 {
        width: 80px;
        height: 60px;
    }
    
    .shape-3, .shape-4 {
        width: 60px;
        height: 60px;
    }
    
    .shape-5, .shape-6 {
        width: 65px;
        height: 75px;
    }
}

@media (max-width: 768px) {
    .pattern-layer {
        background-size: 400px 400px, 300px 300px, 200px 100px, 150px 150px, 100% 100%;
        opacity: 0.6;
        filter: blur(1.5px);
    }
    
    .shape-1, .shape-2, .shape-5, .shape-6 {
        display: none;
    }
    
    .shape-3, .shape-4 {
        width: 50px;
        height: 50px;
        opacity: 0.5;
    }
    
    .gradient-layer {
        background: linear-gradient(135deg, 
            rgba(0, 44, 149, 0.06) 0%, 
            rgba(25, 118, 210, 0.04) 50%,
            rgba(66, 165, 245, 0.03) 100%);
    }
}

@media (max-width: 480px) {
    .pattern-layer {
        background-size: 300px 300px, 250px 250px, 150px 75px, 100px 100px, 100% 100%;
        opacity: 0.4;
        filter: blur(2px);
    }
    
    .floating-shapes {
        display: none;
    }
    
    .enhanced-background-overlay {
        background: linear-gradient(135deg, 
            rgba(0, 44, 149, 0.04) 0%, 
            rgba(25, 118, 210, 0.03) 100%);
    }
}

.service .section-wrapper {
    position: relative;
    margin: 0 auto;
    padding: 10px;
    z-index: 2;
}
.service .section-title h4 {
    font-size: 1.2rem;
    color: #002c95;
    font-weight: bold;
    margin-bottom: 30px;
}
.service .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 50px;
}
.service .services-grid h3 {
    font-weight: 300;
    font-size: 32px;
}
.service .service-item {
    display: block;
    padding: 10px;
    border-bottom: 2px solid #002c95;
    color: #222;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.service .service-item:hover {
    color: #1452e2;
    transform: translateY(-5px);
}
@media (max-width: 992px) {
    .service .section-title h4 {
        font-size: 26px;
    }
    .service .service-item {
        font-size: 20px;
        padding: 12px;
    }
}
@media (max-width: 768px) {
    .service .section-title h4 {
        font-size: 24px;
    }
    .service .services-grid {
        grid-template-columns: 1fr;
    }
    .service .service-item {
        font-size: 18px;
        padding: 14px;
    }
}
@media (max-width: 576px) {
    .service {
        padding: 60px 15px;
    }
    .service .section-title h4 {
        font-size: 22px;
    }
    .service .service-item {
        font-size: 16px;
        padding: 12px;
    }
    .service .service-item h3 {
        font-size: 18px;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 60px 0;
    background-color: #fff;
}
.portfolio-section .container {
    max-width: 1200px;
}
.portfolio-section .card {
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.portfolio-section .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.portfolio-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}
.portfolio-section .card span a {
    display: inline-block;
    width: auto;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255, 59, 45, 0);
    color: #002c95;
    background-color: rgba(45, 101, 255, 0.2);
    text-decoration: none;
}
.portfolio-section .card .card-title {
    font-size: 22px;
    font-weight: 600;
    margin: 15px 0;
    color: #333;
}
.portfolio-section .card-body ul li {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    color: #555;
}
.portfolio-section .card-body a {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: #002c95;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    align-self: start;
}
.portfolio-section .card-body a:hover {
    color: #1c60ff;
}
@media (max-width: 992px) {
    .portfolio-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .portfolio-section .col-md-4 {
        flex: 0 0 48%; /* Allow two cards per row */
        max-width: 48%;
        margin-bottom: 20px;
    }
    .portfolio-section .card {
        width: 100%;
        padding: 20px !important;
    }
    .portfolio-section .card img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    .portfolio-section .card-title {
        font-size: 18px;
        text-align: center;
    }
    .portfolio-section .card-body {
        padding: 15px;
    }
}
@media (max-width: 576px) {
    .portfolio-section .col-md-4 {
        flex: 0 0 100%; /* Full width in mobile */
        max-width: 100%;
    }
    .portfolio-section .card {
        width: 100%;
        padding: 15px !important;
    }
    .portfolio-section .card-title {
        font-size: 16px;
    }
}

/* Industries Section - Redesigned */
.type-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.type-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 44, 149, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 79, 160, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.type-section .container {
    position: relative;
    z-index: 2;
}

.type-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #002c95, #1a4fa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.type-section .title {
    font-weight: 600;
    font-size: 1.5rem;
    color: #495057;
    margin-bottom: 2rem;
    text-align: center;
}

.type-section .text-center {
    margin-bottom: 3rem;
}

.type-section hr {
    border: none;
    height: 4px;
    background: linear-gradient(90deg, transparent, #002c95, transparent);
    border-radius: 2px;
    margin: 2rem auto;
}

/* Button Container Styling */
.type-section .mfn-html-editor-wrapper,
.type-section .d-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 0 1rem;
}

/* Primary Industry Buttons */
.type-section .styledButton1 {
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(0, 44, 149, 0.1), rgba(26, 79, 160, 0.15));
    color: #002c95;
    border: 2px solid rgba(0, 44, 149, 0.2);
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 44, 149, 0.1);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.type-section .styledButton1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.type-section .styledButton1:hover {
    background: linear-gradient(135deg, #002c95, #1a4fa0);
    color: white;
    border-color: #002c95;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 44, 149, 0.3);
}

.type-section .styledButton1:hover::before {
    left: 100%;
}

/* Secondary Industry Buttons */
.type-section .styledButton {
    padding: 14px 28px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #495057;
    border: 2px solid rgba(73, 80, 87, 0.2);
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(73, 80, 87, 0.1);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.type-section .styledButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.type-section .styledButton:hover {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    border-color: #495057;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(73, 80, 87, 0.3);
}

.type-section .styledButton:hover::before {
    left: 100%;
}

/* Background Overlay */
.mcb-wrap-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        conic-gradient(from 45deg at 25% 25%, rgba(0, 44, 149, 0.02) 0deg, transparent 90deg),
        conic-gradient(from 225deg at 75% 75%, rgba(26, 79, 160, 0.02) 0deg, transparent 90deg);
    z-index: 0;
    animation: subtle-rotate 20s linear infinite;
}

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

/* Responsive Design for Industries Section */
@media (max-width: 1200px) {
    .type-section h2 {
        font-size: 3rem;
    }
    
    .type-section .title {
        font-size: 1.3rem;
    }
    
    .type-section .styledButton1,
    .type-section .styledButton {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .type-section {
        padding: 60px 0;
    }
    
    .type-section h2 {
        font-size: 2.5rem;
    }
    
    .type-section .title {
        font-size: 1.2rem;
    }
    
    .type-section .mfn-html-editor-wrapper,
    .type-section .d-flex {
        gap: 0.8rem;
        margin: 1.5rem 0;
    }
    
    .type-section .styledButton1,
    .type-section .styledButton {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .type-section {
        padding: 50px 0;
    }
    
    .type-section h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .type-section .title {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .type-section .text-center {
        margin-bottom: 2rem;
    }
    
    .type-section .mfn-html-editor-wrapper,
    .type-section .d-flex {
        gap: 0.6rem;
        margin: 1rem 0;
        padding: 0 0.5rem;
    }
    
    .type-section .styledButton1,
    .type-section .styledButton {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 120px;
        flex: 0 0 calc(50% - 0.3rem);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .type-section {
        padding: 40px 0;
    }
    
    .type-section h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .type-section .title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .type-section .text-center {
        margin-bottom: 1.5rem;
    }
    
    .type-section hr {
        width: 50% !important;
        margin: 1rem auto;
    }
    
    .type-section .mfn-html-editor-wrapper,
    .type-section .d-flex {
        gap: 0.5rem;
        margin: 0.8rem 0;
        padding: 0 0.25rem;
    }
    
    .type-section .styledButton1,
    .type-section .styledButton {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 100px;
        flex: 0 0 calc(50% - 0.25rem);
        letter-spacing: 0.3px;
    }
    
    .type-section .styledButton1:hover,
    .type-section .styledButton:hover {
        transform: translateY(-2px) scale(1.02);
    }
}

/* Clients Section - Redesigned */
.clients-section {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(168, 85, 247, 0.02) 100%),
        radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 60%);
    z-index: 1;
}

.clients-section .container {
    position: relative;
    z-index: 2;
}

.clients-section .title {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 2.75rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    letter-spacing: -0.025em;
}

.clients-section .title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    border-radius: 1px;
}

.clients-section .theme {
    background: linear-gradient(135deg, #002c95, #1a4fa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Client Logo Container */
.clients-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.clients-section .col-6,
.clients-section .col-sm-4,
.clients-section .col-md-3,
.clients-section .col-lg-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.clients-section img {
    width: 140px;
    height: 100px;
    max-width: 140px;
    object-fit: contain;
    display: block;
    padding: 20px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    filter: grayscale(60%) opacity(0.7);
    position: relative;
}

.clients-section img:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    filter: grayscale(0%) opacity(1);
    border-color: #d1d5db;
}

@keyframes subtle-background-shift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(1deg) scale(1.01); }
}

@keyframes pulse-line {
    0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 1; }
    50% { transform: translateX(-50%) scaleX(1.2); opacity: 0.8; }
}

/* Responsive Design for Clients Section */
@media (max-width: 1200px) {
    .clients-section {
        padding: 100px 0;
    }
    
    .clients-section .title {
        font-size: 2.5rem;
    }
    
    .clients-section img {
        width: 130px;
        height: 90px;
        max-width: 130px;
        padding: 18px;
    }
}

@media (max-width: 992px) {
    .clients-section {
        padding: 80px 0;
    }
    
    .clients-section .title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
    
    .clients-section img {
        width: 120px;
        height: 80px;
        max-width: 120px;
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 20px;
    }
    
    .clients-section .title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .clients-section img {
        width: 110px;
        height: 75px;
        max-width: 110px;
        padding: 14px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .clients-section {
        padding: 50px 15px;
    }
    
    .clients-section .title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .clients-section img {
        width: 100px;
        height: 70px;
        max-width: 100px;
        padding: 12px;
        border-radius: 8px;
    }
}

/* 7-Layer Approach Section - Clean Redesign */
.streps {
    position: relative;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #fafafa;
    padding: 120px 0 60px;
    text-align: center;
    overflow: hidden;
}

.streps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(99, 102, 241, 0.01) 0%, rgba(168, 85, 247, 0.01) 100%);
    z-index: 1;
}

.streps .container {
    position: relative;
    z-index: 2;
}

.customer-approach {
    background: #ffffff;
    padding: 60px 0;
    position: relative;
}

.streps h5 {
    color: #6366f1;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    position: relative;
}

.streps h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: #6366f1;
}

.streps h1 {
    color: #1f2937;
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 4rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

/* Clean Icon Box Styling */
.icon-box {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #d1d5db;
}

.icon-box i {
    font-size: 2.5rem;
    color: #6366f1;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.icon-box:hover i {
    transform: scale(1.05);
    color: #4f46e5;
}

.icon-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 1rem 0;
    transition: color 0.3s ease;
}

.icon-box:hover h3 {
    color: #6366f1;
}

.icon-box p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.icon-box:hover p {
    color: #4b5563;
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

/* Responsive Design for 7-Layer Approach Section */
@media (max-width: 1200px) {
    .streps {
        padding: 100px 0 50px;
    }
    
    .streps h1 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .customer-approach {
        padding: 50px 0;
    }
    
    .icon-box {
        padding: 28px 20px;
    }
    
    .icon-box i {
        font-size: 2.25rem;
    }
    
    .icon-box h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .streps {
        padding: 80px 0 40px;
    }
    
    .streps h1 {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
    
    .streps h5 {
        font-size: 0.8rem;
        letter-spacing: 1.2px;
    }
    
    .customer-approach {
        padding: 40px 0;
    }
    
    .icon-box {
        padding: 24px 18px;
        margin-bottom: 1.5rem;
    }
    
    .icon-box i {
        font-size: 2.25rem;
        margin-bottom: 1.2rem;
    }
    
    .icon-box h3 {
        font-size: 1.15rem;
        margin: 0.8rem 0;
    }
    
    .icon-box p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .streps {
        padding: 60px 20px 30px;
    }
    
    .streps h1 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        line-height: 1.3;
    }
    
    .streps h5 {
        font-size: 0.8rem;
        letter-spacing: 1px;
        margin-bottom: 0.8rem;
    }
    
    .customer-approach {
        padding: 30px 20px;
    }
    
    .icon-box {
        padding: 20px 16px;
        margin-bottom: 1.5rem;
        border-radius: 10px;
    }
    
    .icon-box i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .icon-box h3 {
        font-size: 1.1rem;
        margin: 0.6rem 0;
    }
    
    .icon-box p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .streps {
        padding: 50px 15px 25px;
    }
    
    .streps h1 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .streps h5 {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }
    
    .customer-approach {
        padding: 25px 15px;
    }
    
    .icon-box {
        padding: 18px 14px;
        margin-bottom: 1rem;
        border-radius: 8px;
    }
    
    .icon-box i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .icon-box h3 {
        font-size: 1rem;
        margin: 0.5rem 0;
    }
    
    .icon-box p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* Commit Section */
.commit-section {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 50px 0;
}
.commit-section .container {
    border: 2px solid #002c95;
    padding: 50px; /* Slightly increased padding */
    border-radius: 10px;
    max-width: 90%;
    margin: 0 auto;
}
.commit-section h2 {
    font-size: 50px; /* Increased from 40px */
    font-weight: 700;
    color: #002c95;
}
.commit-section p {
    font-size: 22px; /* Increased from 18px */
    color: #555;
    line-height: 1.8;
}
.commit-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .commit-section .container {
        padding: 30px; /* Less padding on small screens */
        max-width: 95%;
    }

    .commit-section .commitments h2 {
        font-size: 36px; /* Bigger heading for mobile */
    }

    .commit-section .commitments p {
        font-size: 20px; /* Bigger paragraph for readability */
    }
}

/* Markeeting section */
.marketing-section {
    padding: 50px 0;
}
.marketing-section .marketing-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.marketing-section .tools-trade h4 {
    font-size: 22px;
    font-weight: 500;
    color: #002c95;
}
.marketing-section .tools-trade h3 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
}
.marketing-section .tools-trade p {
    font-size: 18px;
    color: #313131;
    line-height: 1.6;
}
.marketing-section .tools-trade ul {
    padding-left: 0;
    list-style: none;
}
.marketing-section .tools-trade li {
    font-size: 18px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.marketing-section .tools-trade li i {
    margin-right: 8px;
    font-size: 20px;
}
@media (max-width: 768px) {
    .marketing-section .tools-trade h3 {
        font-size: 26px;
    }
    .marketing-section .tools-trade p {
        font-size: 16px;
    }
    .marketing-section .tools-trade li {
        font-size: 16px;
    }
}

/* Testimonial section */
.testimonials {
    background-color: #ececec;
    padding: 50px 0;
}
.testimonials .testimonial-item {
    text-align: center;
    padding: 20px;
}
.testimonials .testimonial-item blockquote {
    font-style: italic;
    color: #222;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.6;
    padding: 0 20px;
}
.testimonials .testimonial-img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}
.testimonials h5 {
    color: #002c95;
    font-size: 1.2rem;
}
.testimonials p {
    color: #b7b7b7;
    font-size: 1rem;
}
.testimonials .decorative-img {
    width: 50%;
}
@media (max-width: 992px) {
    .testimonials .testimonial-item blockquote {
        font-size: 1rem;
    }
    .testimonials h5 {
        font-size: 1rem;
    }
    .testimonials p {
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 24px;
    }
    .testimonials .testimonial-img {
        width: 80px;
        height: 80px;
    }
    .testimonials .testimonial-item blockquote {
        font-size: 0.9rem;
    }
}
@media (max-width: 576px) {
    .testimonials .decorative-img {
        display: none;
    }
    .testimonials {
        padding: 30px 15px;
    }
}

/* blog section */
.blog {
    padding: 50px 0;
}
.blog-slider .date_label {
    font-size: 14px;
    color: gray;
    padding: 10px 0;
}
.blog h4 a {
    text-decoration: none;
    color: #252525;
    font-size: 22px;
    font-weight: bold;
}
@media (max-width: 992px) {
    .blog h4 a {
        font-size: 18px;
    }
    .blog-slider .date_label {
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    .blog h3 {
        font-size: 24px;
    }
    .blog h4 a {
        font-size: 16px;
    }
}
@media (max-width: 576px) {
    .blog {
        padding: 30px 15px;
    }
    .blog-slider .date_label {
        font-size: 12px;
    }
}

/* Modern About Page Styles */

/* Hero Section */
.modern-about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4fa0 50%, var(--secondary-color) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 44, 149, 0.1);
    backdrop-filter: blur(1px);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 30%;
    animation-delay: 4s;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--light-text);
    padding: 20px 0;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    animation: fadeInLeft 1s ease-out;
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.badge-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--light-text), transparent);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-align: left;
}

.title-line {
    display: block;
    margin-bottom: 10px;
    text-align: left;
}

.title-line.highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 1s ease-out 0.9s both;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.hero-image-container {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.6s both;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 44, 149, 0.2), rgba(26, 79, 160, 0.1));
    transition: opacity 0.3s ease;
}

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

.image-frame:hover .image-overlay {
    opacity: 0.5;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* Story Section */
.modern-story-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.modern-story-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.modern-story-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="%23e2e8f0" stroke-width="1" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.story-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 0;
    z-index: 3;
    width: 100%;
}

.timeline-item {
    position: relative;
    padding: 25px 30px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.timeline-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.timeline-item:hover::before {
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-label {
    font-size: 0.9rem;
    margin: 6px 0 0 0;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-story-section .section-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.modern-story-section .section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.story-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.story-text {
    position: relative;
    z-index: 2;
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    position: relative;
    padding-left: 20px;
}

.story-paragraph::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.story-paragraph.highlight-text {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #3b82f6;
    font-weight: 500;
    color: #1e293b;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    position: relative;
}

.story-paragraph.highlight-text::before {
    display: none;
}

.story-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.feature-card {
    padding: 30px 25px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    position: relative;
    z-index: 1;
}



/* Responsive Design for Modern Story Section */
@media (max-width: 1199px) {
    .modern-story-section {
        padding: 80px 0;
    }
    
    .story-title {
        font-size: 3rem;
    }
    
    .story-features {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .modern-story-section {
        padding: 60px 0;
    }
    
    .modern-story-section .row {
        flex-direction: column;
    }
    
    .modern-story-section .col-lg-5,
    .modern-story-section .col-lg-7 {
        width: 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .story-timeline {
        padding: 30px 0;
        gap: 20px;
    }
    
    .timeline-item {
        max-width: 250px;
        padding: 20px 25px;
    }
    
    .story-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .story-content {
        margin-bottom: 40px;
    }
    
    .story-features {
        margin-top: 40px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .modern-story-section {
        padding: 50px 0;
    }
    
    .story-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .story-paragraph {
        font-size: 1rem;
        padding-left: 15px;
    }
    
    .story-paragraph::before {
        width: 3px;
        height: 15px;
    }
    
    .story-paragraph.highlight-text {
        padding: 20px;
        border-radius: 12px;
    }
    
    .timeline-item {
        max-width: 220px;
        padding: 18px 20px;
    }
    
    .timeline-year {
        font-size: 1.3rem;
    }
    
    .timeline-label {
        font-size: 0.85rem;
    }
    
    .story-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .modern-story-section {
        padding: 40px 0;
    }
    
    .modern-story-section .container {
        padding: 0 15px;
    }
    
    .story-title {
        font-size: 1.8rem;
    }
    
    .modern-story-section .section-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .timeline-item {
        max-width: 200px;
        padding: 15px 18px;
    }
    
    .timeline-year {
        font-size: 1.2rem;
    }
    
    .timeline-label {
        font-size: 0.8rem;
    }
    
    .story-paragraph {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .story-paragraph.highlight-text {
        padding: 18px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .feature-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
}

/* Culture Section */
.modern-culture-section {
    padding: 100px 0;
    background: var(--dark-text);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.modern-culture-section .section-title {
    color: var(--light-text);
}

.modern-culture-section .section-subtitle {
    color: var(--light-text);
}

.modern-culture-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 44, 149, 0.1), rgba(26, 79, 160, 0.05));
    z-index: 1;
}

.modern-culture-section .container {
    position: relative;
    z-index: 2;
}

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

.culture-card {
    position: relative;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out calc(var(--delay, 0) * 0.2s) both;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.culture-card:nth-child(1) { --delay: 1; }
.culture-card:nth-child(2) { --delay: 2; }
.culture-card:nth-child(3) { --delay: 3; }
.culture-card:nth-child(4) { --delay: 4; }

.culture-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.culture-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.culture-card:hover::before {
    opacity: 1;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-text);
}

.culture-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.culture-card:hover .culture-icon {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

.culture-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-text);
}

.culture-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Modern Stats Section */
.modern-stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stats-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float-particle 8s linear infinite;
}

.particle:nth-child(1) {
    left: 15%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    left: 25%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.particle:nth-child(3) {
    left: 35%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    left: 45%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 6s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 8s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 7s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 7s;
    animation-duration: 9s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 6s;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.stats-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.stats-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.stats-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    position: relative;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out calc(var(--delay, 0) * 0.2s) both;
}

.stat-card:nth-child(1) { --delay: 1; }
.stat-card:nth-child(2) { --delay: 2; }
.stat-card:nth-child(3) { --delay: 3; }

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Styles for Modern About Page */
@media (max-width: 992px) {
    .modern-about-hero {
        min-height: 90vh;
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .story-timeline {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 40px;
        gap: 20px;
    }
    
    .timeline-item {
        padding: 12px 20px;
    }
    
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .modern-about-hero {
        min-height: 80vh;
        text-align: center;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .story-timeline {
        position: static;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
        gap: 15px;
    }
    
    .timeline-item {
        width: 200px;
        text-align: center;
    }
    
    .story-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .stats-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .culture-grid,
    .stats-grid,
    .story-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .floating-circle {
        opacity: 0.3;
    }
    
    .circle-1,
    .circle-2,
    .circle-3 {
        width: 80px;
        height: 80px;
    }
    
    .modern-story-section,
    .modern-culture-section,
    .modern-stats-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .modern-about-hero {
        min-height: 70vh;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .story-title,
    .stats-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .story-paragraph {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .modern-about-hero,
    .modern-story-section,
    .modern-culture-section,
    .modern-stats-section {
        padding: 50px 0;
    }
    
    .culture-card,
    .stat-card,
    .feature-card {
        padding: 20px 15px;
    }
    
    .culture-card .card-number {
        font-size: 1.5rem;
    }
    
    .culture-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-item {
        width: 180px;
        padding: 10px 15px;
    }
    
    .floating-circle {
        display: none;
    }
    
    .brand-badge {
        margin-bottom: 20px;
    }
    
    .badge-text {
         font-size: 0.8rem;
     }
 }

/* Additional Visual Enhancements */
/* Smooth section transitions */
.modern-about-hero,
.modern-story-section,
.modern-culture-section,
.modern-stats-section {
    scroll-margin-top: 80px;
}

/* Improved visual hierarchy */
.section-badge {
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.section-badge:hover::before {
    left: 100%;
}

/* Enhanced button-like elements */
.timeline-item,
.culture-card,
.stat-card,
.feature-card {
    cursor: pointer;
    user-select: none;
}

/* Improved accessibility */
.culture-card:focus,
.stat-card:focus,
.feature-card:focus,
.timeline-item:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Better text readability */
.hero-description,
.story-paragraph,
.culture-description,
.feature-description {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Loading animation for better UX */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.stat-number:not(.animated) {
    animation: pulse 1.5s ease-in-out infinite;
}

.our-team h2 {
    margin-top: 5%;
}
.team-member img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.team-member {
    text-align: center;
    padding: 10px;
}

/* About Skills */
.about-skills {
    padding: 60px 0;
}
.about-skills .row h4 {
    color: #002c95;
}
.about-skills .row h2 {
    font-size: 2.5rem;
    font-weight: 600;
}
.title {
    font-weight: 500;
}
.icon-wrapper {
    font-size: 45px;
    color: #002c95;
    margin-bottom: 25px;
}
.desc-wrapper .title {
    font-size: 22px;
    padding: 5px;
    color: #555;
    font-weight: 450;
}

/* Counter Section */
.about-counter {
    background-color: #f8f9fa;
}
.about-counter .title {
    font-weight: 600;
    font-size: 40px;
    padding: 40px;
    color: #f8f8f8;
    background-color: #002c95;
    text-align: left;
}
.about-counter .quick_fact {
    margin: 20px 0px 20px 0px;
    padding: 30px;
    text-align: center;
}
.about-counter .number-wrapper {
    font-size: 80px;
    font-weight: 700;
    color: #002c95;
    margin-bottom: 15px;
}
.about-counter .quick_fact h5 {
    font-size: 18px;
    color: #9b9b9b;
}
.about-counter .hr_narrow {
    width: 50px;
    margin: 10px auto;
    border-top: 2px solid #002c95;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-header h1 {
        font-size: 40px;
        padding: 10px;
    }
    .about-banner .custom-heading {
        font-size: 2.5rem;
    }
    .about-banner .custom-content {
        font-size: 1rem;
    }
    .about-skills .row h2 {
        font-size: 2rem;
    }
    .about-counter .title {
        font-size: 20px;
        padding: 20px;
    }
    .about-counter .number-wrapper {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 30px;
        padding: 5px;
    }
    .about-banner .custom-heading {
        font-size: 2rem;
    }
    .about-banner .custom-content {
        font-size: 0.9rem;
    }
    .about-skills .row h2 {
        font-size: 1.8rem;
    }
    .icon-wrapper {
        font-size: 35px;
    }
    .desc-wrapper .title {
        font-size: 18px;
    }
    .about-counter .title {
        font-size: 18px;
        padding: 15px;
    }
    .about-counter .number-wrapper {
        font-size: 50px;
    }
}

@media (max-width: 576px) {
    .about-header h1 {
        font-size: 24px;
        padding: 5px;
    }
    .about-banner .custom-heading {
        font-size: 1.8rem;
    }
    .about-banner .custom-content {
        font-size: 0.8rem;
    }
    .about-skills .row h2 {
        font-size: 1.5rem;
    }
    .icon-wrapper {
        font-size: 30px;
    }
    .desc-wrapper .title {
        font-size: 16px;
    }
    .about-counter .title {
        font-size: 16px;
        padding: 10px;
    }
    .about-counter .number-wrapper {
        font-size: 50px;
    }
}

.happy-client h2 {
    margin-left: 30px;
    font-size: 40px;
}
.happy-client .client-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

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

/* ----------------------------------------------------Premium Service Page */
.premium-service-section {
    background: linear-gradient(135deg, var(--background-color) 0%, var(--light-gray) 100%);
    min-height: 100vh;
}

/* Premium Service Hero Section */
.service-hero-premium {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4fa0 50%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.service-hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="premium-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23premium-grain)"/></svg>') repeat;
    opacity: 0.4;
}

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

.service-badge-premium {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-title-premium {
    font-size: 3.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.brand-highlight {
    background: linear-gradient(45deg, #4a90e2, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.service-description-premium {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 5px;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

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

.element-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 10%;
    animation-delay: 4s;
}

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

/* Premium Services Container */
.services-container-premium {
    padding: 100px 0;
    position: relative;
    background: var(--background-color);
}

.section-header {
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Premium Service Cards */
.service-card-premium {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0, 44, 149, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 44, 149, 0.05);
    overflow: hidden;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #4a90e2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-premium:hover::before {
    transform: scaleX(1);
}

.service-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 44, 149, 0.15);
    border-color: rgba(0, 44, 149, 0.1);
}

.service-icon-premium {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-icon-premium svg {
    transition: transform 0.3s ease;
}

.service-card-premium:hover .service-icon-premium svg {
    transform: scale(1.1) rotate(5deg);
}

.service-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

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

.service-content-premium {
    position: relative;
}

/* Redesigned service grid and cards */
.services-grid-redesigned {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-redesigned {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.service-card-redesigned:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-image-container {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-image-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-redesigned:hover .service-image-large {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-content-redesigned {
    padding: 2rem;
}

.service-title-redesigned {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description-redesigned {
    color: #718096;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features-redesigned {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-features-redesigned li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: #4a5568;
    font-size: 0.95rem;
}

.service-features-redesigned li i {
    color: #48bb78;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.service-btn-redesigned {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), #1a4fa0);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 44, 149, 0.2);
}

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

.service-btn-redesigned:hover::before {
    left: 100%;
}

.service-btn-redesigned:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 44, 149, 0.3);
    color: white;
    text-decoration: none;
}

.service-btn-redesigned i {
    transition: transform 0.3s ease;
}

.service-btn-redesigned:hover i {
    transform: translateX(5px);
}

/* Responsive design */
@media (max-width: 768px) {
    .services-grid-redesigned {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-image-container {
        height: 280px;
    }
    
    .service-content-redesigned {
        padding: 1.5rem;
    }
    
    .service-title-redesigned {
        font-size: 1.3rem;
    }
}

.service-title-card {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-description-card {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-features li {
    position: relative;
    padding: 8px 0 8px 25px;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 14px;
}

.service-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), #1a4fa0);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 44, 149, 0.2);
}

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

.service-btn-premium:hover::before {
    left: 100%;
}

.service-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 44, 149, 0.3);
    color: white;
    text-decoration: none;
}

.service-btn-premium svg {
    transition: transform 0.3s ease;
}

.service-btn-premium:hover svg {
    transform: translateX(5px);
}

/* Premium Service Responsive Design */

@media (max-width: 1400px) {
    .services-grid-premium {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 35px;
    }
}

@media (max-width: 1200px) {
    .services-grid-premium {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        padding: 0 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .service-hero-premium {
        padding: 100px 0 80px;
    }
    
    .service-title-premium {
        font-size: 3.2rem;
    }
    
    .hero-stats {
        gap: 30px;
        margin-top: 25px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .services-container-premium {
        padding: 80px 0;
    }
    
    .services-grid-premium {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .service-card-premium {
        padding: 35px;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .service-hero-premium {
        padding: 80px 0 60px;
    }
    
    .service-title-premium {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .service-description-premium {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .services-container-premium {
        padding: 60px 0;
    }
    
    .services-grid-premium {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .service-card-premium {
        padding: 30px;
    }
    
    .service-title-card {
        font-size: 1.4rem;
    }
    
    .hero-visual {
        height: 250px;
        margin-top: 30px;
    }
    
    .element-1, .element-2, .element-3 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .service-hero-premium {
        padding: 60px 0 40px;
    }
    
    .service-title-premium {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .service-badge-premium {
        font-size: 11px;
        padding: 8px 18px;
        margin-bottom: 20px;
    }
    
    .service-description-premium {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .services-grid-premium {
        padding: 0 15px;
        gap: 20px;
    }
    
    .service-card-premium {
        padding: 25px;
    }
    
    .service-title-card {
        font-size: 1.3rem;
    }
    
    .service-description-card {
        font-size: 0.95rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
        padding: 6px 0 6px 22px;
    }
    
    .service-btn-premium {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero-visual {
        display: none;
    }
}

.social-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e3f2fd 100%);
    padding: 140px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
}
.social-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23002c95" opacity="0.05"/><circle cx="80" cy="80" r="1" fill="%23002c95" opacity="0.05"/><circle cx="40" cy="60" r="1" fill="%23002c95" opacity="0.05"/><circle cx="60" cy="40" r="1" fill="%23002c95" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}
.social-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 44, 149, 0.12) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(0, 86, 179, 0.10) 0%, transparent 60%),
                radial-gradient(circle at 50% 50%, rgba(33, 150, 243, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.social-header .section-wrapper {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.social-header .content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.social-header .text-content {
    width: 60%;
    animation: fadeInLeft 0.8s ease-out;
    padding-right: 40px;
}
.social-header .text-content h1 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #002c95, #0056b3, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.05;
    letter-spacing: -2px;
    text-shadow: 0 4px 8px rgba(0, 44, 149, 0.1);
}
.social-header .text-content span {
    font-size: 24px;
    margin-bottom: 25px;
    color: #002c95;
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-left: 20px;
}
.social-header .text-content span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #002c95, #0056b3);
    border-radius: 2px;
}
.social-header .text-content p {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.8;
    margin: 30px 0;
    color: #333;
    max-width: 95%;
    text-align: justify;
}
.social-header .button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    padding: 22px 50px;
    background: linear-gradient(135deg, #002c95, #0056b3, #1976d2);
    color: #fff;
    text-decoration: none;
    margin-top: 40px;
    border-radius: 60px;
    box-shadow: 0 15px 40px rgba(0, 44, 149, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}
.social-header .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.social-header .button:hover::before {
    left: 100%;
}
.social-header .button:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 44, 149, 0.6);
    color: #fff;
    background: linear-gradient(135deg, #0056b3, #007bff, #42a5f5);
    border-color: rgba(255, 255, 255, 0.3);
}
.social-header .image-content {
    width: 35%;
    animation: fadeInRight 0.8s ease-out;
    position: relative;
}
.social-header .image-content img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid rgba(255, 255, 255, 0.9);
    background: #fff;
    padding: 10px;
}
.social-header .image-content img:hover {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 44, 149, 0.3);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@media (max-width: 768px) {
    .social-header {
        padding: 100px 20px;
        min-height: 75vh;
    }
    .social-header .content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .social-header .text-content,
    .social-header .image-content {
        width: 100%;
    }
    .social-header .text-content {
        padding-left: 0;
        padding-right: 0;
    }
    .social-header .text-content h1 {
        font-size: 48px;
    }
    .social-header .text-content span {
        font-size: 20px;
        padding-left: 15px;
    }
    .social-header .text-content span::before {
        width: 3px;
        height: 25px;
    }
    .social-media-marketing-section {
        padding: 60px 20px;
    }
    .social-media-marketing-section .content {
        flex-direction: column;
        text-align: center;
        margin-bottom: 60px;
    }
    .social-media-marketing-section .image-content,
    .social-media-marketing-section .text-content {
        width: 100%;
    }
    .social-media-marketing-section .text-content {
        padding-left: 0;
        margin-top: 30px;
    }
    .social-media-marketing-section .text-content h2 {
        font-size: 32px;
    }
    .social-media-marketing-section .sub-sections {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .process-section {
        padding: 60px 20px;
    }
    .title {
        font-size: 32px;
    }
    .process-content {
        padding: 20px 20px 20px 40px;
    }
    .contact-section {
        padding: 60px 20px;
    }
    .contact-section h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .social-header .text-content h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }
    .social-header .text-content span {
        font-size: 18px;
        letter-spacing: 1px;
        padding-left: 12px;
    }
    .social-header .text-content span::before {
        width: 2px;
        height: 20px;
    }
    .social-header .text-content p {
        font-size: 17px;
        text-align: left;
    }
    .social-header .button {
        font-size: 15px;
        padding: 18px 35px;
        gap: 10px;
    }
    .social-media-marketing-section .text-content h2 {
        font-size: 28px;
    }
    .social-media-marketing-section .sub-section {
        padding: 30px 20px;
    }
    .title {
        font-size: 28px;
    }
    .process-content h4 {
        font-size: 18px;
    }
    .contact-section h2 {
        font-size: 28px;
    }
    .button-content a {
        padding: 15px 30px;
        font-size: 14px;
    }
}

.button-section {
    background: linear-gradient(135deg, #002c95 0%, #0056b3 100%);
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.button-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    pointer-events: none;
}
.button-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1200px;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.button-wrapper .button {
    text-align: center;
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.95);
    color: #002c95;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.button-wrapper .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 44, 149, 0.1), transparent);
    transition: left 0.5s;
}
.button-wrapper .button:hover::before {
    left: 100%;
}
.button-wrapper .button:hover {
    transform: translateY(-3px);
    background: #fff;
    border-color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.button-wrapper .button i {
    color: #002c95;
    font-size: 16px;
    transition: all 0.3s ease;
}
.button-wrapper .button:hover i {
    color: #002c95;
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
    }
    .text-content,
    .image-content {
        width: 100%;
    }
    .button-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

.helping-you-grow-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.helping-you-grow-section .section-wrapper {
    max-width: 1200px;
    width: 100%;
}

.helping-you-grow-section .content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.helping-you-grow-section .text-content {
    width: 50%;
}

.helping-you-grow-section .text-content h2 {
    font-size: 2.5rem;
    margin-top: 30px;
}

.helping-you-grow-section .text-content p {
    font-size: 20px;
    margin-top: 20px;
}

.helping-you-grow-section .text-content b {
    color: #002c95;
}

.helping-you-grow-section .image-content {
    width: 35%;
}

.helping-you-grow-section .image-content img {
    width: 100%;
    height: auto;
}

.helping-you-grow-section .text-list {
    background-color: #ececec;
    border-left: 4px solid #002c95;
}

.helping-you-grow-section .text-list p {
    font-weight: 450;
    font-size: 18px;
}

@media (max-width: 768px) {
    .helping-you-grow-section .text-content,
    .helping-you-grow-section .col-md-6 {
        width: 100%;
    }
    .helping-you-grow-section .text-content {
        text-align: center;
    }
    .helping-you-grow-section .text-list {
        text-align: left;
    }
}

.contact-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 44, 149, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 86, 179, 0.2) 0%, transparent 50%);
    pointer-events: none;
}
.contact-section .centered-content {
    justify-content: center !important;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 1;
}
.contact-section h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0;
    background: linear-gradient(135deg, #ffffff, #e9ecef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}
.button-content {
    margin: 0;
    text-align: center;
}
.button-content a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #002c95, #0056b3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(0, 44, 149, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.button-content a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.button-content a:hover::before {
    left: 100%;
}
.button-content a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 44, 149, 0.5);
    background: linear-gradient(135deg, #0056b3, #007bff);
}
/* Responsive Styles */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        text-align: center;
    }

    .contact-section .content {
        flex-direction: column;
        text-align: center;
    }

    .contact-section h2 {
        font-size: 30px;
    }

    .button-content {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .contact-section h2 {
        font-size: 24px;
    }

    .button-content a {
        font-size: 16px;
        padding: 12px 20px;
    }
}

.social-media-marketing-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 90vh;
}
.social-media-marketing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 44, 149, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 44, 149, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.social-media-marketing-section .section-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.social-media-marketing-section .content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    width: 100%;
    gap: 40px;
}

.social-media-marketing-section .image-content {
    width: 45%;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.social-media-marketing-section .image-content img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}
.social-media-marketing-section .image-content img:hover {
    transform: scale(1.05) rotate(1deg);
}

.social-media-marketing-section .text-content {
    width: 100%;
    text-align: center;
    padding: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.social-media-marketing-section .text-content p.theme {
    font-size: 18px;
    color: #002c95;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-media-marketing-section .text-content p.description {
    font-size: 20px;
    color: #666;
    font-weight: 400;
    margin-top: 25px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social-media-marketing-section .text-content h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
}
.social-media-marketing-section .text-content h2 .highlight {
    background: linear-gradient(135deg, #002c95, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.social-media-marketing-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.social-media-marketing-section .feature-card {
    text-align: center;
    padding: 50px 40px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(0, 44, 149, 0.1);
}

.social-media-marketing-section .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #002c95, #0056b3);
}

.social-media-marketing-section .feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 44, 149, 0.15);
    border-color: rgba(0, 44, 149, 0.2);
}

.social-media-marketing-section .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #002c95, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 44, 149, 0.3);
    transition: all 0.3s ease;
}

.social-media-marketing-section .feature-icon i {
    font-size: 32px;
    color: #fff;
}

.social-media-marketing-section .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 44, 149, 0.4);
}

.social-media-marketing-section .feature-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #002c95;
    font-weight: 800;
    position: relative;
}

.social-media-marketing-section .feature-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.social-media-marketing-section .feature-highlight {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 44, 149, 0.1), rgba(0, 86, 179, 0.1));
    color: #002c95;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 44, 149, 0.2);
}

/* Responsive adjustments for tablets */
@media (max-width: 992px) {
    .social-media-marketing-section {
        padding: 80px 20px;
    }

    .social-media-marketing-section .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .social-media-marketing-section .feature-card {
        padding: 40px 30px;
    }

    .social-media-marketing-section .text-content h2 {
        font-size: 36px;
    }

    .social-media-marketing-section .text-content p.description {
         font-size: 18px;
         text-align: center;
     }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .social-media-marketing-section {
        padding: 60px 15px;
    }

    .social-media-marketing-section .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .social-media-marketing-section .feature-card {
        padding: 35px 25px;
    }

    .social-media-marketing-section .text-content h2 {
        font-size: 28px;
    }

    .social-media-marketing-section .text-content p.description {
        font-size: 16px;
    }

    .modern-process-section {
        padding: 60px 15px;
    }

    .modern-process-section .process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .modern-process-section .process-card {
        padding: 40px 25px;
        min-height: 250px;
    }

    .faq-section {
         padding: 50px 15px;
     }

     .faq-section .title {
         font-size: 28px;
     }

     .faq-section .subtitle {
         font-size: 16px;
     }

     .faq-section .title-decoration {
         margin-bottom: 30px;
     }

    .faq-question {
        padding: 20px 20px;
        font-size: 16px;
    }

    .faq-question .num {
        width: 35px;
        height: 35px;
        font-size: 18px;
        margin-right: 15px;
    }

    .faq-answer {
        padding: 0 20px 25px 20px;
    }

    .social-header {
        padding: 60px 15px;
        min-height: 70vh;
    }

    .social-header .text-content h1 {
        font-size: 32px;
    }

    .social-header .text-content span {
        font-size: 14px;
    }

    .social-header .text-content p {
        font-size: 16px;
    }
}

/* Process Section Styling */
.process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}
.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 44, 149, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 44, 149, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.title span {
    background: linear-gradient(135deg, #002c95, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Timeline Styling */
.process-wrapper {
    position: relative;
    padding-left: 3px;
    margin: 0 auto;
    max-width: 700px;
    z-index: 1;
}
.process-wrapper::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    width: 3px;
    height: calc(100% - 60px);
    background: linear-gradient(180deg, #002c95, #0056b3);
    border-radius: 2px;
}

/* Process Items */
.process-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease-out;
}
.process-item:nth-child(1) { animation-delay: 0.1s; }
.process-item:nth-child(2) { animation-delay: 0.2s; }
.process-item:nth-child(3) { animation-delay: 0.3s; }
.process-item:nth-child(4) { animation-delay: 0.4s; }
.process-item:nth-child(5) { animation-delay: 0.5s; }
.process-item:nth-child(6) { animation-delay: 0.6s; }

/* Process Icons */
.process-icon {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #002c95, #0056b3);
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 8px;
    box-shadow: 0 0 0 4px #fff, 0 0 0 8px rgba(0, 44, 149, 0.2);
    transition: all 0.3s ease;
}
.process-item:hover .process-icon {
    transform: scale(1.2);
    box-shadow: 0 0 0 4px #fff, 0 0 0 12px rgba(0, 44, 149, 0.3);
}

/* Process Content */
.process-content {
    padding-left: 40px;
    text-align: left;
    background: #fff;
    padding: 30px 30px 30px 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.process-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #002c95, #0056b3);
}
.process-item:hover .process-content {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.process-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #002c95;
}

.process-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Last Step Checkmark */
.process-item.last-step .process-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
    position: relative;
}
.process-item.last-step .process-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
}

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

.seo-excellence-section .card {
    background-color: #ececec;
    border: none;
    padding: 40px !important;
}

/* FAQ Section Styling */
.faq-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    min-height: auto;
}
.faq-section .title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}
.faq-section .title span {
    background: linear-gradient(135deg, #002c95, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-section .subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.faq-section .title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
}

.faq-section .decoration-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #002c95, #0056b3);
    border-radius: 2px;
}

.faq-section .decoration-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #002c95, #0056b3);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 44, 149, 0.3);
}
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(0, 44, 149, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(0, 44, 149, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 44, 149, 0.1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #002c95, #0056b3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 44, 149, 0.15);
    border-color: rgba(0, 44, 149, 0.2);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    outline: none;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
}
.faq-question:hover {
    background: linear-gradient(135deg, rgba(0, 44, 149, 0.05), rgba(0, 86, 179, 0.05));
}

.faq-question .num {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #002c95, #0056b3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(0, 44, 149, 0.3);
}

.faq-question .icon-plus {
    font-size: 24px;
    font-weight: 600;
    margin-left: auto;
    color: #002c95;
    transition: all 0.3s ease;
    background: rgba(0, 44, 149, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question .icon-minus {
    font-size: 24px;
    font-weight: 600;
    margin-left: auto;
    color: #002c95;
    display: none;
    transition: all 0.3s ease;
    background: rgba(0, 44, 149, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

/* Active State */
.faq-question.active {
    background: linear-gradient(135deg, rgba(0, 44, 149, 0.08), rgba(0, 86, 179, 0.08));
}
.faq-question.active .icon-plus {
    display: none;
}

.faq-question.active .icon-minus {
    display: flex;
    background: linear-gradient(135deg, #002c95, #0056b3);
    color: #fff;
}

/* FAQ Answer */
.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    background: rgba(0, 44, 149, 0.02);
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 500px;
}

.faq-answer p, .faq-answer ul {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.faq-answer ul {
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer.active {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.5), rgba(233, 236, 239, 0.5));
    padding: 20px 30px 30px 30px;
}

.faq-answer ul {
    padding-left: 25px;
    margin: 15px 0;
}

.faq-answer li {
    margin-bottom: 10px;
    position: relative;
}
.faq-answer li::marker {
    color: #002c95;
}
.faq-answer li b {
    color: #002c95;
    font-weight: 600;
}

.seo-services {
    padding: 60px 20px !important;
}
.seo-services .group {
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}
.seo-services .group ul {
    font-size: 18px;
    line-height: 2;
    list-style-type: none;
    padding: 0;
}
.seo-services .group ul li {
    text-align: left;
}

/* Modern Performance Marketing Styles */
.modern-strategy-content {
    position: relative;
    overflow: hidden;
}

.modern-text-layout {
    position: relative;
    z-index: 2;
}

.modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.modern-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    color: #ffff;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.modern-heading {
    position: relative;
    margin-bottom: 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

.heading-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s both;
}

.modern-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 3rem;
}

.modern-campaigns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.campaign-card.modern-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.campaign-card.modern-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.campaign-card.modern-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.card-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.campaign-card.modern-card:hover .card-glow {
    opacity: 1;
}

.modern-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.image-frame:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

.floating-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ======================================== */

/* Mobile First Approach - Base styles for mobile */

/* Hero Section Responsive */
@media (max-width: 1200px) {
    .modern-hero-section {
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .floating-elements {
        display: none; /* Hide on smaller screens for better performance */
    }
}

@media (max-width: 992px) {
    .modern-hero-section {
        min-height: 70vh;
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .stat-item {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .modern-hero-section {
        min-height: 60vh;
        padding: 40px 0;
    }
    
    .hero-content {
        text-align: center;
        padding: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .brand-badge {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* About Section Responsive */
@media (max-width: 992px) {
    .modern-about-section {
        padding: 60px 0;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-text, .about-image {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .modern-about-section {
        padding: 50px 15px;
    }
    
    .about-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .about-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .about-badge {
        justify-content: center;
    }
}

/* Value Section Responsive */
@media (max-width: 992px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .modern-value-section {
        padding: 50px 15px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-card {
        padding: 30px 20px;
        text-align: center;
    }
    
    .value-icon {
        margin: 0 auto 20px;
    }
}

/* Services Section Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .modern-services-section {
        padding: 50px 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 20px;
        text-align: center;
    }
}

/* Portfolio Section Responsive */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .modern-portfolio-section {
        padding: 50px 15px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-card {
        height: 300px;
    }
}

/* Industries Section Responsive */
@media (max-width: 768px) {
    .modern-industries-section {
        padding: 50px 15px;
    }
    
    .industries-tags {
        justify-content: center;
        gap: 10px;
    }
    
    .industry-tag {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Clients Section Responsive */
@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .modern-clients-section {
        padding: 50px 15px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Process Section Responsive */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .modern-process-section {
        padding: 50px 15px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .process-image {
        height: 150px;
        margin: 0 auto 15px;
    }
}

/* Commitment Section Responsive */
@media (max-width: 992px) {
    .commitment-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .commitment-text, .commitment-image {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .modern-commitment-section {
        padding: 50px 15px;
    }
    
    .commitment-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .commitment-description {
        text-align: center;
    }
    
    .commitment-badge {
        justify-content: center;
    }
}

/* Tools Section Responsive */
@media (max-width: 992px) {
    .tools-content {
        flex-direction: column-reverse;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .modern-tools-section {
        padding: 50px 15px;
    }
    
    .tools-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .tools-description {
        text-align: center;
    }
    
    .tools-badge {
        justify-content: center;
    }
    
    .tools-features {
        padding-left: 0;
    }
    
    .feature-item {
        text-align: center;
    }
}

/* Testimonials Section Responsive */
@media (max-width: 768px) {
    .modern-testimonials-section {
        padding: 50px 15px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
    
    .author-position {
        font-size: 0.9rem;
    }
}

/* Marquee Section Responsive */
@media (max-width: 768px) {
    .modern-marquee-section {
        padding: 30px 0;
    }
    
    .marquee-item {
        padding: 0 20px;
        font-size: 1rem;
    }
}

/* General Responsive Utilities */
@media (max-width: 768px) {
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Legacy Responsive Styles */
@media (max-width: 768px) {
    .modern-campaigns-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .campaign-card.modern-card {
        padding: 1.5rem;
    }
    
    .floating-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .modern-badge {
        padding: 0.5rem 1rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .modern-campaigns-grid {
        gap: 0.75rem;
    }
    
    .campaign-card.modern-card {
        padding: 1.25rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-content h4 {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Modern Overlay Styles */
.modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    animation: overlayPulse 8s ease-in-out infinite;
}

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

/* Brand Bandage Style Typewriter Effect */
.typewriter-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 80px;
    overflow: visible;
}

.typewriter-effect {
    position: relative;
    display: inline-block;
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.2;
    text-align: center;
    min-width: 700px;
    max-width: 100%;
    word-break: keep-all;
    white-space: nowrap;
    overflow: visible;
}

.typewriter-effect::after {
    content: '|';
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    animation: blink 1.2s infinite;
    font-weight: 300;
    margin-left: 3px;
    vertical-align: baseline;
}

.typewriter-effect.typing::after {
    animation: blink 1.2s infinite;
}

.typewriter-effect.deleting::after {
    animation: blink 0.6s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Enhanced Video Styles */
.banner-video {
    will-change: transform;
    transition: transform 0.3s ease-out;
    min-width: 100vw;
    min-height: 100vh;
}

.banner-image:hover .banner-video {
    transform: scale(1.05) !important;
}

/* Video overlay for better text readability */
.banner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

/* Enhanced Banner Styling */
.banner-image {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 44, 149, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.banner-content {
    backdrop-filter: blur(1px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    margin: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Typewriter cursor enhancement */
.typewriter-effect::after {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

/* Responsive video adjustments */
@media (max-width: 768px) {
    .banner-video {
        position: absolute !important;
        transform: scale(1.2) !important;
    }
    
    .banner-content {
        margin: 0 0.5rem;
        padding: 1.5rem;
        backdrop-filter: blur(2px);
        background: rgba(0, 0, 0, 0.4);
    }
    
    .typewriter-container {
        min-height: 80px;
        padding: 0 50px;
        max-width: 1000px;
    }
    
    .typewriter-effect {
        font-size: clamp(1.8rem, 4.5vw, 2.8rem);
        min-width: 450px;
    }
}

@media (max-width: 480px) {
    .banner-content {
        margin: 0;
        padding: 1rem;
        border-radius: 15px;
    }
    
    .typewriter-container {
        min-height: 70px;
        padding: 0 40px;
        max-width: 600px;
    }
    
    .typewriter-effect {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        min-width: 350px;
    }
}

/* Enhanced overlay effects */
.modern-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: shimmer 4s ease-in-out infinite;
}

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