/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #0056b3;
    /* Solid Blue */
    --secondary-color: #0056b3;
    /* Same Blue to avoid mixing */
    --accent-color: #28a745;
    --dark-bg: #ffffff;
    /* Pure White background */
    --glass-bg: #ffffff;
    --glass-border: #e2e8f0;
    --glass-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --text-light: #1a202c;
    --text-dim: #4a5568;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark-bg);
    background-image: none;
    background-attachment: scroll;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

.glass-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 40px 0 rgba(0, 210, 255, 0.15);
}

/* 3D Glass Effect */
.glass-3d {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border: 2.5px solid rgba(255, 255, 255, 0.8) !important;
    /* Thicker, defined glass border */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-3d:hover {
    transform: perspective(1000px) rotateX(4deg) rotateY(-4deg) translateY(-20px) !important;
    box-shadow: 25px 50px 70px rgba(13, 138, 188, 0.15),
        inset 0 0 35px rgba(255, 255, 255, 0.8);
    border-color: var(--primary-color) !important;
    /* Luminous border glow */
}

.glass-shine {
    position: relative;
    overflow: hidden;
}

.glass-shine::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(255, 255, 255, 0.1) 48%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.1) 52%,
            transparent 55%);
    transform: rotate(-45deg);
    transition: all 0.8s ease;
    z-index: 2;
    pointer-events: none;
}

.glass-3d:hover.glass-shine::before {
    top: 150%;
    left: 150%;
}

.liquid-shape {
    display: none;
    /* Removed to avoid mixed colors */
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.gradient-text {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: var(--primary-color);
}

/* Top Bar */
.top-bar {
    background: rgba(0, 86, 179, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #fff;
    padding: 10px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.8);
}

.top-bar a:hover {
    color: #fff;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: #ffffff;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    /* Fixed height for consistency */
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 0;
    /* Removed explicit top padding as navbar is now sticky/in-flow */
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

/* Page Header / Banner */
.page-header {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('image/h7.jpg') center/cover no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.65));
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1,
.page-header h1 span {
    font-size: 3.8rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.hero-image {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    z-index: 1;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
}

/* About Preview */
.about-preview .about-img-container {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.about-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Metrics */
.metrics-section {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.counter-item {
    text-align: center;
    padding: 1rem;
    position: relative;
}

/* Add separators between counters */
.counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    /* Darker color */
    margin-bottom: 0.5rem;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.counter-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    font-weight: 500;
}

/* Services */
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Mission & Vision */
.mv-card {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

/* Core Values Section */
.core-value-card {
    background: #fff;
    padding: 3.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.core-value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 86, 179, 0.08);
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, #ffffff, #f8faff);
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.2rem;
    transition: all 0.5s ease;
}

.core-value-card:hover .value-icon-wrapper {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1) rotate(360deg);
}

.core-value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.core-value-card p {
    color: var(--text-dim);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Call to Action - Glass Style */
.cta-banner {
    background: url('image/h4.jpg') center/cover no-repeat;
    background-attachment: fixed;
    border-radius: 0;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.cta-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.25);
    /* Very light tint for maximum visibility */
    backdrop-filter: blur(3px);
    /* Minimal blur to keep image sharp */
    -webkit-backdrop-filter: blur(3px);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* Testimonials Redesign - Corporate Style */
.testimonial-slider {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scroll-testimonials 40s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1.25rem));
    }
}

.testimonial-ref-card {
    background: #fff;
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 400px;
    /* Fixed width for better sliding appearance */
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.testimonial-ref-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(13, 138, 188, 0.1);
    border-color: rgba(13, 138, 188, 0.3);
    background: #ffffff;
}

/* Premium Testimonial Card Animations (Grid Style) */
.testimonial-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.12);
}

.testimonial-card .client-img {
    transition: transform 0.5s ease;
}

.testimonial-card:hover .client-img {
    transform: scale(1.1) rotate(5deg);
}

.testimonial-card .stars {
    transition: all 0.4s ease;
    margin-bottom: 1rem;
}

.testimonial-card:hover .stars {
    transform: scale(1.15);
    color: #ff9800;
}

.testimonial-card h4 {
    margin-top: 1rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.testimonial-card:hover h4 {
    color: var(--primary-color);
}

/* Quote Icon Decoration */
.testimonial-card::after {
    content: '\f10e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -10px;
    right: 20px;
    font-size: 5rem;
    color: rgba(0, 86, 179, 0.03);
    pointer-events: none;
    transition: all 0.5s ease;
}

.testimonial-card:hover::after {
    color: rgba(0, 86, 179, 0.08);
    transform: translateY(-20px) rotate(-10deg);
}

/* Staggered Delay Utilities */
.delay-100 {
    animation-delay: 100ms !important;
}

.delay-200 {
    animation-delay: 200ms !important;
}

.delay-300 {
    animation-delay: 300ms !important;
}

.delay-400 {
    animation-delay: 400ms !important;
}

.delay-500 {
    animation-delay: 500ms !important;
}

.delay-600 {
    animation-delay: 600ms !important;
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #0d8abc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 20px rgba(13, 138, 188, 0.15);
}

.testimonial-ref-card:hover .testimonial-avatar {
    transform: scale(1.1);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 2rem;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.testimonial-ref-card:hover .testimonial-stars {
    transform: scale(1.1);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.2rem;
    letter-spacing: -0.2px;
}

/* FAQ Redesign - Elegant Accordion */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 1.8rem 1rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.faq-question:hover {
    color: var(--primary-color);
    background: rgba(13, 138, 188, 0.03);
    padding-left: 1.5rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    color: var(--text-dim);
    padding: 0 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
    padding-bottom: 1.8rem;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-dim);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item.active .faq-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

/* Footer */
.footer {
    position: relative;
    background: url('image/h7.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: #fff;
    padding: 6rem 0 2rem;
    margin-top: 0;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    /* Deep glass overlay */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-heading {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
}

.footer-links li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.footer-links i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Floating Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.whatsapp-float {
    background: #25D366;
}

.call-float {
    background: var(--secondary-color);
}

.float-btn:hover {
    transform: scale(1.1);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

/* Professional Hover Effects */
.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

/* Process Card Reference Style */
.process-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.process-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
    transition: transform 0.4s ease;
}

.process-card:hover .process-number {
    transform: scale(1.1) rotate(10deg);
}

/* Service Card Reference Style */
.service-ref-card {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all 0.3s ease;
}

.service-ref-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.1);
}

.service-ref-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-ref-card:hover .service-ref-icon {
    transform: translateX(10px);
}

.service-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-ref-card:hover .service-link-btn {
    gap: 15px;
}

/* Brands Strip */
.brands-strip {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: var(--transition);
}

.brands-strip:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 86, 179, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0);
    }
}

@keyframes popup {
    0% {
        opacity: 0;
        transform: scale(0.6) translateY(50px);
    }

    70% {
        transform: scale(1.05) translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.slide-left {
    opacity: 0;
    animation: slideInLeft 0.8s forwards;
}

.slide-right {
    opacity: 0;
    animation: slideInRight 0.8s forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.float-btn {
    animation: pulse-blue 2s infinite;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.popup-animate {
    opacity: 0;
}

.popup-animate.visible {
    animation: popup 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Service Hover Cards (Talwin Style) */
.service-hover-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
    text-align: left;
}

.service-hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

.service-hover-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    display: inline-block;
}

.service-hover-card:hover i {
    transform: scale(1.1);
}

.service-hover-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-hover-card p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.6;
}

/* Infinite Logo Scroll */
.logo-slider {
    overflow: hidden;
    padding: 2rem 0;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: inline-block;
    animation: scroll-logos 20s linear infinite;
}

.logo-item {
    display: inline-block;
    margin: 0 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dim);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item i {
    margin-right: 10px;
    color: var(--text-dim);
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.logo-slider:hover .logo-item {
    opacity: 1;
    color: var(--primary-color);
}

.logo-slider:hover .logo-item i {
    color: var(--primary-color);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* About Section Reference Style */
.about-image-wrapper {
    position: relative;
    z-index: 1;
    padding-left: 20px;
}

.about-bg-shape {
    position: absolute;
    top: -20px;
    left: 0;
    width: 60%;
    height: 90%;
    background: #f1f5f9;
    z-index: -1;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    right: 30px;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    transform: rotate(-15deg);
    text-shadow: 4px 4px 0 #000;
    font-family: 'Outfit', sans-serif;
    z-index: 2;
    pointer-events: none;
}

.experience-badge span {
    display: block;
    font-size: 1.8rem;
    color: #fff;
    -webkit-text-stroke: 0;
    text-shadow: 2px 2px 0 #000;
    margin-top: 5px;
}

.about-feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    background: #fff;
    transition: var(--transition);
}

.about-feature-item:hover .feature-icon-box {
    background: var(--primary-color);
    color: #fff;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 1rem 0 2rem;
    border-radius: 2px;
}

/* Responsive Animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    .hero-image {
        width: 40%;
        right: -50px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease-in-out;
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        /* Add padding for overflow */
        overflow-y: auto;
        /* Allow scrolling if menu is long */
    }

    .mobile-logo {
        display: block !important;
        margin-bottom: 2rem;
        text-align: center;
    }

    .mobile-logo span {
        font-size: 1.5rem !important;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        color: #fff !important;
        font-size: 1.5rem;
        margin: 1.5rem 0;
    }

    .nav-link.active {
        color: var(--primary-color) !important;
    }

    .mobile-menu-info {
        display: block !important;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        color: #fff;
        width: 80%;
    }

    .mobile-menu-info p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        opacity: 0.9;
        line-height: 1.4;
    }

    .mobile-menu-info i {
        font-size: 1.1rem;
    }

    .hamburger {
        display: block;
        z-index: 1000;
        color: var(--text-light);
        transition: color 0.3s ease;
    }

    .hamburger.active {
        color: #fff !important;
    }

    .hero-image {
        display: none;
        /* Hide on mobile to focus on copy */
    }

    .hero {
        text-align: center;
        justify-content: center;
        padding-top: 100px;
        /* Extra space for fixed navbar */
        min-height: auto;
        padding-bottom: 50px;
    }

    .glass-card {
        padding: 1.5rem;
        /* Less padding on mobile cards */
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        /* Force single column */
        gap: 20px;
    }

    .cta-banner {
        padding: 2rem 1.5rem;
    }

    /* Reverse order for specific sections when stacked if needed, 
       but standard stacking is usually fine. */
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 15px;
    }

    .floating-actions {
        bottom: 20px;
        left: 20px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
    }

    .btn {
        width: 100%;
        /* Full width buttons on very small screens */
        margin-bottom: 10px;
        text-align: center;
    }

    .hero-content div {
        flex-direction: column;
    }
}

/* Mission & Vision Glass Cards */
.mission-vision-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1493238507151-c352f8361f17?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.mission-vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.mission-vision-container {
    position: relative;
    z-index: 2;
}

.mission-vision-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3.5rem 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-vision-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
}

.mission-vision-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
}

.mission-vision-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 10px;
}

.mission-vision-card p {
    color: #e2e8f0;
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
}

/* Why Choose Us Section - Animated Card */
.why-choose-section {
    background: #fdfdfd;
}

.why-choose-card {
    background: #fff;
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 86, 179, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.1);
    transform: translateY(-8px);
}

.why-choose-card h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.why-choose-list {
    display: grid;
    gap: 1.2rem;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    background: #f8faff;
    border-color: rgba(0, 86, 179, 0.1);
    transform: translateX(15px);
}

.why-choose-icon-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon-box {
    transform: scale(1.4) rotate(10deg);
}

.why-choose-text {
    font-size: 1.15rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.why-choose-text strong {
    color: var(--text-light);
    font-weight: 700;
    margin-right: 5px;
}