/* CREATIONS - Architects Portfolio Website CSS */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
    /* Premium Color Palette */
    --primary-color: #0f3460;
    /* Deep Navy */
    --secondary-color: #e94560;
    /* Vibrant Red/Pink Accent */
    --accent-color: #533483;
    /* Rich Purple */
    --dark-color: #16213e;
    /* Dark Blue-Black */
    --light-color: #f2f2f2;
    /* Soft Gray */
    --text-color: #2c3e50;
    /* Dark Slate */
    --text-light: #596e79;
    /* Muted Blue-Gray */
    --white: #ffffff;

    /* Shadows & Effects */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 25px rgba(15, 52, 96, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
    --backdrop-blur: blur(10px);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    z-index: 2000;
    /* Increased to ensure it's above everything */
    transition: var(--transition);
}

.navbar .container {
    max-width: 95%;
    padding: 0 30px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.navbar.scrolled .nav-link {
    color: var(--text-color);
}

.navbar.scrolled .logo-text h1 {
    color: var(--primary-color);
}

.navbar.scrolled .logo-text p {
    color: var(--text-light);
    border-left-color: #ddd;
}

.navbar.scrolled .nav-toggle span {
    background: var(--primary-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1;
}

.logo-text p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.3;
    text-align: left;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 15px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}



.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 5px;
    cursor: pointer;
    z-index: 2100;
    /* Above nav-menu */
    position: relative;
    /* Performance optimization */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 3px;
    /* Hardware acceleration */
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

/* Nav Toggle Animation */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) translate3d(0, 0, 0);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px) translate3d(0, 0, 0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) translate3d(0, 0, 0);
}

/* Watermark */
/* Watermark */
.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-family: var(--font-heading);
    font-size: 8vw;
    /* Responsive huge size */
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    /* Slightly more visible */
    text-shadow: none;
    pointer-events: none;
    z-index: 10;
    letter-spacing: 2rem;
    /* Wide letter spacing to span width */
    user-select: none;
    text-transform: uppercase;
    background: transparent;
    border: none;
    white-space: nowrap;
    width: auto;
    text-align: center;
}

.portfolio-item .watermark {
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    color: rgba(255, 255, 255, 0.25);
    z-index: 20;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.4), rgba(139, 38, 53, 0.3));
}

.hero-content {
    position: absolute;
    bottom: 60px;
    left: 50px;
    color: var(--white);
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 3;
    width: 90%;
    max-width: 900px;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.hero-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.hero-nav-dot::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

.hero-nav-dot.active,
.hero-nav-dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Statistics Section */
.stats-section {
    padding: 30px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 20px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: flex-start;
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.about-founder {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin: 15px auto 0;
    text-align: center;
    max-width: 300px;
    box-shadow: var(--shadow);
}

.about-founder h4 {
    color: var(--primary-color);
    margin: 5px 0;
    font-size: 1.1rem;
}

.about-founder p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.about-image img {
    width: 250px;
    height: 320px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: var(--shadow);
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-text p {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: justify;
}

.about-highlights {
    margin: 15px 0;
}

.highlight-item {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 8px;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 3px;
}

.team-member-extra {
    margin: 40px auto 0;
    max-width: 800px;
    animation: fadeInUp 1s ease 0.8s both;
}

.tm-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 0 auto 30px;
    width: 100%;
}

.tm-content {
    display: flex;
    gap: 30px;
    align-items: center;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.tm-image {
    flex-shrink: 0;
}

.tm-image img {
    width: 200px;
    height: 250px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: var(--shadow);
}

.tm-text {
    flex: 1;
}

.tm-quote {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-color) !important;
    margin-bottom: 15px !important;
    line-height: 1.6 !important;
    text-align: left !important;
}

.tm-info {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    display: inline-block;
}

.tm-info h4 {
    color: var(--primary-color);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.tm-info p {
    margin: 0 !important;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4 !important;
}

@media (max-width: 768px) {
    .tm-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tm-quote {
        text-align: center !important;
    }
}

/* Expertise Section */
.expertise-section {
    background: var(--white);
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.expertise-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex: 1 1 280px;
    max-width: 350px;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.expertise-card:hover .expertise-icon {
    background: var(--secondary-color);
    transform: rotateY(360deg);
}

.expertise-icon i {
    font-size: 2rem;
    color: var(--white);
}

.expertise-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.expertise-card p {
    color: var(--text-light);
    line-height: 1.6;
}



.expertise-capabilities {
    background: var(--white);
    padding: 60px;
    border-radius: 4px;
    margin-top: 60px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.expertise-capabilities h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.capabilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
}

.capability-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Portfolio Section */
.portfolio-section {
    background: var(--light-color);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.95), rgba(139, 38, 53, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    color: var(--white);
    padding: 20px;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.portfolio-info p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.portfolio-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.portfolio-cta {
    text-align: center;
    margin-top: 50px;
}

.portfolio-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Insights Section */
.insights-section {
    background: var(--white);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.insight-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.insight-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insight-card:hover .insight-image img {
    transform: scale(1.1);
}

.insight-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.insight-content {
    padding: 30px;
}

.insight-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.insight-meta i {
    margin-right: 5px;
}

.insight-content h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.insight-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    gap: 12px;
}

.insights-cta {
    text-align: center;
    margin-top: 50px;
}

/* Clients Section */
.clients-section {
    padding: 60px 0;
    background: var(--light-color);
}

.clients-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.client-item {
    background: var(--white);
    padding: 15px 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.client-item p {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Career Section */
.career-section {
    background: var(--white);
}

.career-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.career-info h3,
.career-openings h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.career-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.benefit-item h4 {
    color: var(--dark-color);
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--text-light);
}

.opening-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.opening-item {
    background: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.opening-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.opening-item h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.opening-item p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.opening-item p i {
    color: var(--primary-color);
    margin-right: 8px;
}

.internship-program {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
}

.internship-program h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.internship-program p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    background: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.office-info h3,
.office-hours h3,
.social-links h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.info-item p {
    color: var(--text-light);
    margin: 0;
}

.office-hours {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
}

.office-hours p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form,
.career-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.map-container {
    margin-top: 50px;
}

.map-container h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.maps-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.map-item h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.map-item iframe {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.modal-position {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer .container {
    max-width: 95%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-logo h3 {
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-bottom i {
    color: var(--accent-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .logo-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .logo-text p {
        border-left: none;
        padding-left: 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 80px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), right 0.4s ease;
        z-index: 2050;
        /* Between navbar and nav-toggle */
        overflow-y: auto;
        visibility: hidden;
    }

    .nav-menu.active {
        right: 0;
        visibility: visible;
    }

    .nav-menu .nav-link {
        color: var(--text-color);
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
        padding: 5px;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 4px;
    }

    .nav-toggle span {
        background: var(--primary-color) !important;
    }

    .hero {
        height: 70vh;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .about-content,
    .contact-content,
    .career-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-grid,
    .insights-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .qr-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-main-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 1.5rem;
        /* Reduced from 1.8rem */
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .hero-content {
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        bottom: 40px;
        /* Adjusted bottom position */
        text-align: center;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .portfolio-grid,
    .insights-grid,
    .stats-grid,
    .expertise-grid,
    .qr-grid-main {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .expertise-capabilities {
        padding: 30px 20px;
    }

    .capabilities-list {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 25px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }

    .logo-text p {
        font-size: 0.6rem;
    }

    .hero-main-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        width: 100%;
        padding: 0 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 12px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}


/* Navbar Themes Showcase */
/* 1. Dark Theme */
.navbar.nav-theme-dark {
    background-color: var(--dark-color);
    box-shadow: 0 2px 15px rgba(255, 255, 255, 0.05);
}

.navbar.nav-theme-dark .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar.nav-theme-dark .nav-link:hover,
.navbar.nav-theme-dark .nav-link.active {
    color: var(--secondary-color);
}

.navbar.nav-theme-dark .logo-text h1 {
    color: var(--white);
}

.navbar.nav-theme-dark .logo-text p {
    color: rgba(255, 255, 255, 0.6);
}

/* 2. Brand Theme */
.navbar.nav-theme-brand {
    background-color: var(--primary-color);
}

.navbar.nav-theme-brand .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar.nav-theme-brand .nav-link:hover,
.navbar.nav-theme-brand .nav-link.active {
    color: var(--secondary-color);
}

.navbar.nav-theme-brand .nav-link::after {
    background: var(--secondary-color);
}

.navbar.nav-theme-brand .logo-text h1 {
    color: var(--white);
}

.navbar.nav-theme-brand .logo-text p {
    color: rgba(255, 255, 255, 0.6);
}

.navbar.nav-theme-brand .nav-toggle span {
    background: var(--white);
}

/* 3. Glass Theme */
.navbar.nav-theme-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.nav-theme-glass .nav-link {
    color: var(--text-color);
}

.navbar.nav-theme-glass .logo-text h1 {
    color: var(--primary-color);
}

.navbar.nav-theme-glass .logo-text p {
    color: var(--text-light);
    border-left-color: #ddd;
}

.navbar.nav-theme-glass .nav-toggle span {
    background: var(--primary-color);
}

.navbar.nav-theme-glass.scrolled {
    background: rgba(255, 255, 255, 0.9);
}

/* Theme Switcher Widget */
.theme-switcher {
    position: relative;
    margin: 20px auto 0;
    width: fit-content;
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    border: 1px solid #eee;
}

.theme-switcher h5 {
    font-size: 0.9rem;
    color: var(--dark-color);
    margin-bottom: 0;
    margin-right: 5px;
    text-align: center;
}

.theme-btn {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
}

.theme-btn-default {
    background: #f1f1f1;
    color: #333;
}

.theme-btn-dark {
    background: var(--dark-color);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.theme-btn-brand {
    background: var(--primary-color);
    color: var(--white);
}

.theme-btn-glass {
    background: #e0f2f1;
    color: #00796b;
    border: 1px solid #b2dfdb;
}

/* New Colors Buttons */
.theme-btn-red {
    background: #c62828;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.theme-btn-green {
    background: #2e7d32;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.theme-btn-purple {
    background: #6a1b9a;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.theme-btn-orange {
    background: #ef6c00;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* New Theme Classes */
.navbar.nav-theme-red {
    background: #c62828;
}

.navbar.nav-theme-green {
    background: #2e7d32;
}

.navbar.nav-theme-purple {
    background: #6a1b9a;
}

.navbar.nav-theme-orange {
    background: #ef6c00;
}

.footer.footer-theme-red {
    background: #b71c1c;
}

.footer.footer-theme-green {
    background: #1b5e20;
}

.footer.footer-theme-purple {
    background: #4a148c;
}

.footer.footer-theme-orange {
    background: #e65100;
}


.theme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer Themes */
/* Light / Glass Footer (White Background, Dark Text) */
.footer.footer-theme-light {
    background: var(--white);
    color: var(--text-color);
    border-top: 1px solid #eee;
}

.footer.footer-theme-light .footer-col p,
.footer.footer-theme-light .footer-bottom p,
.footer.footer-theme-light .footer-col ul li a,
.footer.footer-theme-light .footer-contact li {
    color: var(--text-light);
}

.footer.footer-theme-light .footer-logo h3,
.footer.footer-theme-light .footer-col h4 {
    color: var(--dark-color);
}

.footer.footer-theme-light .footer-social a {
    background: var(--primary-color);
    color: var(--white);
}

.footer.footer-theme-light .footer-social a:hover {
    background: var(--secondary-color);
}

.footer.footer-theme-light .footer-bottom {
    border-top: 1px solid #eee;
}

.footer.footer-theme-light .footer-logo img {
    /* Ensure logo is visible on white - usually fine if it's the standard logo */
    filter: none;
}

/* Glass Footer override */
.footer.footer-theme-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

/* Brand Footer (Primary Color Background, White Text) */
.footer.footer-theme-brand {
    background: var(--primary-color);
    color: var(--white);
}

.footer.footer-theme-brand .footer-col p,
.footer.footer-theme-brand .footer-bottom p,
.footer.footer-theme-brand .footer-col ul li a,
.footer.footer-theme-brand .footer-contact li {
    color: rgba(255, 255, 255, 0.8);
}

.footer.footer-theme-brand .footer-social a {
    background: rgba(255, 255, 255, 0.2);
}

.footer.footer-theme-brand .footer-social a:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Circular Theme Switcher */
/* Circular Theme Switcher Layout */
.theme-switcher-col {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.theme-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.theme-switcher-col .theme-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    padding: 0;
    max-width: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.theme-switcher-col .theme-btn:hover {
    transform: scale(1.1);
    border-color: var(--white);
}

.theme-btn-dark {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Image Protection */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* --- UI Improvements --- */

/* 1. Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #144272;
}

/* 2. Text Selection */
::selection {
    background: var(--secondary-color);
    color: var(--white);
}

/* 3. Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    color: var(--text-color);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2000;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid var(--primary-color);
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    font-size: 1.2rem;
}

.toast-success {
    border-left-color: #2ecc71;
}

.toast-success i {
    color: #2ecc71;
}

.toast-error {
    border-left-color: #e74c3c;
}

.toast-error i {
    color: #e74c3c;
}

/* 4. Enhanced Button Styles */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

/* 5. Smooth Scroll Behavior adjustment */
html {
    scroll-padding-top: 80px;
    /* Accounts for fixed header */
}

/* --- Lightbox --- */
#lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#lightbox.show {
    opacity: 1;
    display: flex;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #f1f1f1;
    font-size: 35px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

.lightbox-caption {
    margin-top: 15px;
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
}

/* Clients Carousel Logos */
.client-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
    margin: 0 10px;
}

.client-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.client-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Specific adjustment for J&K Bank logo which appears small */
.client-item img[alt*="J&K Bank"] {
    transform: scale(1.15);
}

.client-item:hover img[alt*="J&K Bank"] {
    transform: scale(1.2);
}

/* Dedicated Follow Us Section (Matches Find Us/Map Container) */
.follow-us-section {
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
}

.follow-us-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.social-icons-band {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-icons-band a {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.social-icons-band a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.qr-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.qr-item-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.qr-item-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.qr-item-main img {
    width: 150px;
    height: 150px;
    background: white;
}

.qr-item-main span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-color);
}

/* ===================================================================
   MICRO-ANIMATIONS & INTERACTIVE EFFECTS
   =================================================================== */

/* Button Ripple Effect */
.btn,
.nav-link,
.filter-btn,
.chatbot-button,
.back-to-top {
    position: relative;
    overflow: hidden !important;
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Card Hover (Architecture/Construction Feel) */
.expertise-card,
.portfolio-item,
.insight-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, box-shadow;
}

.expertise-card:hover,
.insight-card:hover {
    transform: translateY(-10px) translate3d(0, 0, 0);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.portfolio-item:hover {
    transform: scale(1.02) translate3d(0, 0, 0);
    z-index: 10;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

/* Icon Pulse Animation */
@keyframes icon-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.expertise-card:hover i,
.stat-item:hover i {
    animation: icon-pulse 0.6s ease-in-out;
    color: var(--secondary-color);
}

/* Smooth Entrance Classes */
.slide-up {
    opacity: 0;
    transform: translateY(30px) translate3d(0, 0, 0);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide-up.active {
    opacity: 1;
    transform: translateY(0) translate3d(0, 0, 0);
}

/* Image Protection (Improved) */
img {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
}

/* ===================================================================
   SOCIAL PROOF WIDGET (LIVE ACTIVITY)
   =================================================================== */

.live-proof-toast {
    position: fixed;
    bottom: 100px;
    left: 30px;
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9998;
    transform: translateX(-120%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 320px;
    pointer-events: none;
}

.live-proof-toast.show {
    transform: translateX(0);
    pointer-events: all;
}

.live-proof-icon {
    width: 40px;
    height: 40px;
    background: rgba(26, 42, 68, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.live-proof-content {
    flex: 1;
}

.live-proof-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.4;
}

.live-proof-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.live-proof-time {
    display: block;
    font-size: 0.7rem;
    color: #888;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .live-proof-toast {
        bottom: 90px;
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
    }
}

/* ===================================================================
   WHATSAPP FLOATING BUTTON
   =================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip {
    position: absolute;
    left: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--white);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-float a:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .whatsapp-tooltip {
        display: none;
        /* Hide tooltip on mobile to save space */
    }
}