/* --- Solution Ribbon Card Styles --- */
.solution-ribbon-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    margin-bottom: 2rem;
    min-height: 260px;
    height: 320px;
    max-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border: 1.5px solid #eee;
    transition: box-shadow 0.3s, transform 0.3s;
    overflow: hidden;
    z-index: 1;
}

.solution-ribbon-card:hover {
    box-shadow: 0 8px 32px rgba(139, 69, 19, 0.18);
    transform: translateY(-4px) scale(1.02);
}

.solution-ribbon-content {
    margin-top: 1.5rem;
    width: 100%;
}

.solution-title {
    color: #1c3664;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.solution-desc {
    color: #333;
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
}

.solution-link {
    color: #e55a13;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
}
.solution-link:hover {
    color: #b34700;
    text-decoration: underline;
}

/* Ribbon Style */

/* Improved Ribbon with Folded and Rounded Corner */
.ribbon {
    width: 120px;
    height: 32px;
    background: #e55a13;
    color: #fff;
    position: absolute;
    top: 18px;
    right: -32px;
    text-align: center;
    line-height: 32px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(229, 90, 19, 0.15);
    z-index: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 20px;
    overflow: visible;
    pointer-events: none;
}
.ribbon span {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 0;
}
.ribbon::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 12px;
    background: #b34700;
    border-bottom-left-radius: 12px 12px;
    border-bottom-right-radius: 12px 12px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: 0 2px 6px rgba(229, 90, 19, 0.10);
    z-index: -1;
    transform: none;
}

@media (max-width: 991px) {
    .solution-ribbon-card {
        padding: 1.2rem 1rem 1rem 1rem;
        min-height: 220px;
        height: 250px;
        max-height: 260px;
    }
    .ribbon {
        width: 90px;
        height: 26px;
        font-size: 0.68rem;
        top: 12px;
        right: -24px;
        border-radius: 13px;
    }
    .ribbon span {
        font-size: 0.68rem;
    }
    .ribbon::after {
        width: 14px;
        height: 8px;
        border-bottom-left-radius: 7px 7px;
        border-bottom-right-radius: 7px 7px;
    }
}

@media (max-width: 767px) {
    .solution-ribbon-card {
        padding: 1rem 0.7rem 0.7rem 0.7rem;
        min-height: 180px;
        height: 180px;
        max-height: 190px;
    }
    .ribbon {
        width: 70px;
        height: 20px;
        font-size: 0.55rem;
        top: 8px;
        right: -16px;
        border-radius: 6px;
    }
    .ribbon span {
        font-size: 0.55rem;
    }
    .ribbon::after {
        width: 8px;
        height: 5px;
        border-bottom-left-radius: 4px 4px;
        border-bottom-right-radius: 4px 4px;
    }
}
/* --- Solutions Circles Section (Modern Blue Theme) --- */
.solutions-circles-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.solutions-circles-bg {
    background: #e9f1f7; /* Light blue */
    border-radius: 32px;
    padding: 3rem 1rem 4rem 1rem;
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-circle {
    background: #fff;
    border: 6px solid #1c3664; /* Dark blue */
    color: #1c3664;
    border-radius: 50%;
    width: 280px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(28, 54, 100, 0.10);
    position: absolute;
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: center;
    z-index: 2;
}

.solution-circle h4 {
    color: #1c3664;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0.2rem 0 0.2rem 0;
    line-height: 1.1;
}

.solution-circle p {
    color: #1c3664;
    font-size: 0.7rem;
    margin: 15px;
    line-height: 1.2;
}

.solution-circle .circle-icon {
    font-size: 2.5rem;
    color: #e55a13; /* Orange */
    margin-bottom: 0.5rem;
}

/* Main center circle */
.main-circle {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #e9f1f7;
    border: 8px solid #1c3664;
    z-index: 3;
}

/* Top left */
.left-circle {
    left: 10%;
    top: 20%;
    background: #fff;
}

/* Top right */
.right-circle {
    right: 10%;
    top: 20%;
    background: #fff;
}

/* Bottom left */
.bottom-left-circle {
    left: 22%;
    bottom: 10%;
    background: #fff;
}

/* Bottom right */
.bottom-right-circle {
    right: 22%;
    bottom: 10%;
    background: #fff;
}

@media (max-width: 991px) {
    .solutions-circles-bg {
        min-height: unset;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .solution-circle {
        position: static !important;
        width: 90vw;
        max-width: 400px;
        height: auto;
        min-height: 140px;
        margin: 0 auto;
        border-radius: 18px;
        box-shadow: 0 2px 12px rgba(28,54,100,0.08);
        font-size: 0.95rem;
        margin-bottom: 0;
        margin-top: 0;
        background: #fff;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .main-circle, .left-circle, .right-circle, .bottom-left-circle, .bottom-right-circle {
        left: unset !important;
        right: unset !important;
        top: unset !important;
        bottom: unset !important;
        transform: none !important;
    }
    .solutions-svg-lines {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .solutions-circles-bg {
        min-height: unset;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .solution-circle {
        width: 96vw;
        max-width: 360px;
        height: auto;
        min-height: 120px;
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
        border-radius: 14px;
    }
}
/* Custom Styles for Tab 2S - Brown & White Theme */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #ff7300;        /* Orange - Main brand color */
    --primary-light: #ff7300;        /* Orange - Light */
    --primary-dark: #ff7300;         /* Orange - Dark */
    --primary-accent: #ff7300;       /* Chocolate - Accent */

    /* White & Neutral Palette */
    --white: #FFFFFF;
    --off-white: #FAF9F7;            /* Warm off-white */
    --cream: #F5F3EF;                /* Cream background */
    --light-brown: #DEB887;          /* Burlywood - Light accents */

    /* Text Colors */
    --text-dark: #081742;            /* Very dark brown for text */
    --text-medium: #ffd6c2;          /* Medium brown for secondary text */
    --text-light: #8B7355;           /* Light brown for muted text */

    /* Accent Colors */
    --success-color: #6B8E23;        /* Olive green for success */
    --info-color: #8B4513;           /* Brown for info */
    --warning-color: #CD853F;        /* Peru for warnings */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    --gradient-accent: linear-gradient(135deg, #D2691E 0%, #A0522D 100%);
    --gradient-light: linear-gradient(135deg, #F5F3EF 0%, #FAF9F7 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(139, 69, 19, 0.08);
    --shadow-md: 0 4px 16px rgba(139, 69, 19, 0.12);
    --shadow-lg: 0 8px 32px rgba(139, 69, 19, 0.16);
    --shadow-xl: 0 16px 48px rgba(139, 69, 19, 0.2);
}

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

body {
    /* Modern Typography Stack */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--light-brown);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
}

h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-medium);
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    line-height: 1.1;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for fixed header */
    overflow-x: hidden;
}

/* Prevent horizontal scroll on all pages */
.container,
.container-fluid {
    overflow-x: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

/* Mobile overflow fixes */
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }

    section {
        overflow-x: hidden;
    }
}

/* Header Styles */
.top-bar {
    font-size: 0.875rem;
    background: var(--text-dark) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.navbar {
    transition: all 0.3s ease;
    background: var(--white) !important;
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    letter-spacing: -0.02em;
}

.navbar-nav .nav-link {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    color: var(--text-dark) !important;
    letter-spacing: 0.02em;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(-50%);
    border-radius: 2px;
}

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

/* Active Page Underline */
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

.navbar-nav .nav-link.active::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(139, 69, 19, 0.2), rgba(210, 105, 30, 0.2));
    transform: translateX(-50%);
    border-radius: 2px;
    animation: activeGlow 2s ease-in-out infinite;
}

@keyframes activeGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.1);
    }
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white) !important;
    letter-spacing: -0.03em;
}

.hero-section .lead {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.125rem;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px !important;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

.hero-main-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4) !important;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(10, 88, 202, 0.1) 100%);
    pointer-events: none;
}

/* Floating Badge on Hero Image */
.floating-badge {
    bottom: 20px;
    right: 20px;
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 10;
}

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

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

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

/* Feature Cards Section */
.feature-cards-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.feature-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(139, 69, 19, 0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary-light);
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.15;
}

/* About Section */
.about-image-section {
    position: relative;
}

.about-main-image {
    width: 100%;
    height: auto;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-main-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3) !important;
}

.about-badges-overlay {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    z-index: 10;
}

.about-badges-overlay .badge-item {
    transition: all 0.4s ease;
}

.about-badges-overlay .badge-item:hover {
    transform: translateX(10px);
}

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

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

.about-badges .badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: 12px;
    border: 1px solid rgba(139, 69, 19, 0.08);
}

/* About Page Images */
.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px !important;
    transition: all 0.4s ease;
    max-width: 100%;
    display: block;
}

.about-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2) !important;
}

.about-image-container img {
    transition: transform 0.6s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    transition: background-color 0.4s ease;
    pointer-events: none;
}

.about-image-container:hover .image-overlay {
    background-color: rgba(139, 69, 19, 0.05) !important;
}

/* Mobile fixes for about page */
@media (max-width: 768px) {
    .about-images {
        overflow: hidden;
        max-width: 100%;
    }

    .about-image-container {
        height: 300px !important;
        margin-bottom: 1rem;
    }

    .about-images .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem !important;
    }
}

/* About Cards with Images */
.card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(139, 69, 19, 0.08);
    border-radius: 12px;
    background: var(--white);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg) !important;
    border-color: rgba(139, 69, 19, 0.15);
}

.card img {
    transition: transform 0.6s ease, filter 0.4s ease;
}

.card:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.card-body {
    position: relative;
    z-index: 2;
}

.card .fas {
    transition: all 0.4s ease;
    color: var(--primary-color);
}

.card:hover .fas {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-accent);
}

.badge-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.badge-icon::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.5s;
}

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

.badge-icon:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-xl);
}

.feature-list li {
    font-size: 1.1rem;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--white);
    border: 1px solid rgba(139, 69, 19, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary-light);
}

/* Highlight service card when targeted via anchor link */
.col-lg-4:target .service-card,
.col-md-6:target .service-card {
    animation: highlightService 1.5s ease-in-out;
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.2) !important;
}

@keyframes highlightService {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(139, 69, 19, 0);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(139, 69, 19, 0.3);
    }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.25rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-card:hover .service-icon::before {
    width: 300px;
    height: 300px;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 35px rgba(245, 87, 108, 0.5);
}

/* Different colors for each service icon */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.service-card:nth-child(1):hover .service-icon {
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 10px 25px rgba(245, 87, 108, 0.3);
}

.service-card:nth-child(2):hover .service-icon {
    box-shadow: 0 15px 35px rgba(245, 87, 108, 0.5);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
}

.service-card:nth-child(3):hover .service-icon {
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.5);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 10px 25px rgba(67, 233, 123, 0.3);
}

.service-card:nth-child(4):hover .service-icon {
    box-shadow: 0 15px 35px rgba(67, 233, 123, 0.5);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 10px 25px rgba(250, 112, 154, 0.3);
}

.service-card:nth-child(5):hover .service-icon {
    box-shadow: 0 15px 35px rgba(250, 112, 154, 0.5);
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    box-shadow: 0 10px 25px rgba(48, 207, 208, 0.3);
}

.service-card:nth-child(6):hover .service-icon {
    box-shadow: 0 15px 35px rgba(48, 207, 208, 0.5);
}

/* Working Process Section */
.process-card {
    padding: 2rem;
    position: relative;
}

.process-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Solution Cards */
.solution-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(139, 69, 19, 0.08);
    background: var(--white);
}

.solution-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl) !important;
    border-color: var(--primary-light);
}

/* Solution Images */
.solution-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.solution-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.solution-card:hover .solution-image {
    transform: scale(1.15);
    filter: brightness(1.1);
}

/* Solution Overlay */
.solution-overlay {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.90) 0%, rgba(101, 67, 33, 0.90) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card:hover .solution-overlay {
    opacity: 1;
}

.solution-icon-overlay {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.5);
    transform: scale(0.5) rotate(-180deg);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.solution-card:hover .solution-icon-overlay {
    transform: scale(1) rotate(0deg);
}

.solution-icon-overlay i {
    font-size: 3rem;
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

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

/* Different gradient overlays for each solution card - Brown variations */
.solution-card:nth-child(1) .solution-overlay {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.90) 0%, rgba(160, 82, 45, 0.90) 100%);
}

.solution-card:nth-child(2) .solution-overlay {
    background: linear-gradient(135deg, rgba(160, 82, 45, 0.90) 0%, rgba(210, 105, 30, 0.90) 100%);
}

.solution-card:nth-child(3) .solution-overlay {
    background: linear-gradient(135deg, rgba(101, 67, 33, 0.90) 0%, rgba(139, 69, 19, 0.90) 100%);
}

.solution-card:nth-child(4) .solution-overlay {
    background: linear-gradient(135deg, rgba(210, 105, 30, 0.90) 0%, rgba(184, 134, 11, 0.90) 100%);
}

.solution-card:nth-child(5) .solution-overlay {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.90) 0%, rgba(160, 82, 45, 0.90) 100%);
}

.solution-card:nth-child(6) .solution-overlay {
    background: linear-gradient(135deg, rgba(160, 82, 45, 0.90) 0%, rgba(139, 69, 19, 0.90) 100%);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.solution-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotateZ(60deg) translate(-5em, 7.5em);
    transition: transform 0.6s;
}

.solution-card:hover .solution-icon::after {
    transform: rotateZ(60deg) translate(1em, -9em);
}

.solution-card:hover .solution-icon {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

/* Different colors for each solution icon */
.solution-card:nth-child(1) .solution-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.3);
}

.solution-card:nth-child(1):hover .solution-icon {
    box-shadow: 0 12px 30px rgba(245, 87, 108, 0.5);
}

.solution-card:nth-child(2) .solution-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
}

.solution-card:nth-child(2):hover .solution-icon {
    box-shadow: 0 12px 30px rgba(79, 172, 254, 0.5);
}

.solution-card:nth-child(3) .solution-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 8px 20px rgba(67, 233, 123, 0.3);
}

.solution-card:nth-child(3):hover .solution-icon {
    box-shadow: 0 12px 30px rgba(67, 233, 123, 0.5);
}

.solution-card:nth-child(4) .solution-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 8px 20px rgba(250, 112, 154, 0.3);
}

.solution-card:nth-child(4):hover .solution-icon {
    box-shadow: 0 12px 30px rgba(250, 112, 154, 0.5);
}

.solution-card:nth-child(5) .solution-icon {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    box-shadow: 0 8px 20px rgba(168, 237, 234, 0.3);
}

.solution-card:nth-child(5):hover .solution-icon {
    box-shadow: 0 12px 30px rgba(168, 237, 234, 0.5);
}

.solution-card:nth-child(6) .solution-icon {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    box-shadow: 0 8px 20px rgba(255, 154, 158, 0.3);
}

.solution-card:nth-child(6):hover .solution-icon {
    box-shadow: 0 12px 30px rgba(255, 154, 158, 0.5);
}

/* Career Page Images */
.career-image-container {
    position: relative;
    overflow: hidden;
}

.career-main-image {
    width: 100%;
    height: auto;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.career-image-container:hover .career-main-image {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3) !important;
}

.team-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(10, 88, 202, 0.05) 100%);
    pointer-events: none;
    transition: all 0.4s ease;
}

.career-image-container:hover .team-image-overlay {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(10, 88, 202, 0.1) 100%);
}

/* Team Stat Badges */
.team-stat-badge {
    transition: all 0.4s ease;
    z-index: 10;
    max-width: 150px;
}

.team-stat-badge:hover {
    transform: scale(1.1);
}

.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-stat-badge:hover .stat-icon {
    transform: rotate(360deg);
}

/* Mobile fixes for stat badges */
@media (max-width: 768px) {
    .career-image-container {
        overflow: hidden;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .career-main-image {
        max-width: 100%;
        height: auto;
    }

    .team-stat-badge {
        max-width: 120px;
        padding: 0.5rem !important;
        font-size: 0.85rem;
    }

    /* Adjust positioning for mobile */
    .team-stat-badge[style*="right"] {
        right: 10px !important;
        top: 10px !important;
    }

    .team-stat-badge[style*="left"] {
        left: 10px !important;
        bottom: 10px !important;
    }

    .team-stat-badge .stat-icon {
        width: 30px;
        height: 30px;
    }

    .team-stat-badge .stat-icon i {
        font-size: 0.8rem;
    }

    .team-stat-badge .fw-bold {
        font-size: 1rem;
    }

    .team-stat-badge small {
        font-size: 0.7rem;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Culture Cards */
.culture-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.culture-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2) !important;
}

.culture-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.culture-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.culture-card:hover .culture-image {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.culture-card .fas {
    transition: all 0.4s ease;
}

.culture-card:hover .fas {
    transform: scale(1.2) rotate(5deg);
}

/* Mobile fixes for culture cards */
@media (max-width: 768px) {
    .culture-card {
        margin-bottom: 1rem;
        max-width: 100%;
    }

    .culture-image-wrapper {
        height: 200px;
    }

    .culture-card:hover {
        transform: translateY(-5px);
    }
}

/* Cards General */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 8px;
    letter-spacing: 0.03em;
    font-size: 0.95rem;
    border: none;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #543210);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream);
}

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

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-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 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

/* Footer */
footer {
    background: var(--text-dark) !important;
    color: var(--off-white);
}

footer a {
    color: var(--light-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-accent) !important;
}

footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

footer h5, footer h6 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

/* Form Styles */
.form-control {
    font-family: 'Inter', sans-serif;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    border: 2px solid rgba(139, 69, 19, 0.15);
    transition: all 0.3s ease;
    font-size: 1rem;
    background: var(--white);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.1);
    background: var(--white);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    padding: 4rem 0 !important;
}

/* Badges */
.badge {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    letter-spacing: 0.02em;
}

.badge.bg-primary {
    background: var(--primary-color) !important;
}

.badge.bg-success {
    background: var(--success-color) !important;
}

.badge.bg-light {
    background: var(--cream) !important;
    color: var(--text-dark) !important;
}

/* Background Color Utilities */
.bg-light {
    background-color: var(--light-brown) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-dark {
    background-color: var(--text-dark) !important;
}

/* Text Color Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.text-muted {
    color: var(--text-light) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@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);
    }
}

.fade-in-up {
    /* Animation removed to prevent flickering */
}

.fade-in {
    /* Animation removed to prevent flickering */
}

/* Responsive */
@media (max-width: 1200px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0 !important;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .display-3 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .feature-cards-section {
        margin-top: 0;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .process-number {
        font-size: 3rem;
    }

    .feature-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.25rem;
    }

    .top-bar {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.5rem !important;
    }

    .lead {
        font-size: 1rem;
    }
}

/* Utility Classes */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-muted {
    color: #6c757d !important;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-dark), #543210);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Contact Page Styles */
.contact-info-card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s;
}

.contact-info-card:hover .contact-icon::before {
    transform: scale(1);
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

/* Different colors for each contact icon */
.contact-info-card:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.3);
}

.contact-info-card:nth-child(1):hover .contact-icon {
    box-shadow: 0 12px 30px rgba(245, 87, 108, 0.5);
}

.contact-info-card:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
}

.contact-info-card:nth-child(2):hover .contact-icon {
    box-shadow: 0 12px 30px rgba(79, 172, 254, 0.5);
}

.contact-info-card:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 8px 20px rgba(67, 233, 123, 0.3);
}

.contact-info-card:nth-child(3):hover .contact-icon {
    box-shadow: 0 12px 30px rgba(67, 233, 123, 0.5);
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover {
    text-decoration: underline !important;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    animation: dropdownSlideIn 0.3s ease-out;
}

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

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-item i {
    transition: all 0.3s ease;
}

.dropdown-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Special IT Services Dropdown */
.dropdown-menu-services {
    min-width: 280px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: servicesDropdownIn 0.3s ease-out;
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.125rem;
    z-index: 9999 !important;
    position: absolute;
}

/* Desktop: Show dropdown on hover */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        margin-top: 0.125rem;
    }
}

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

.dropdown-header {
    font-weight: 600;
    font-size: 0.875rem;
    color: #6c757d;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-menu-services .dropdown-item {
    font-weight: 400;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.dropdown-menu-services .dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
    padding-left: 1.25rem;
}

.dropdown-menu-services .dropdown-item:hover i {
    color: white;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Dropdown z-index fix for navbar */
.navbar {
    z-index: 1030;
}

.dropdown-menu {
    z-index: 9999;
}

/* Sticky Header */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

/* Social Links - Enhanced with Brand Colors */
.social-links {
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    color: white !important;
    font-size: 1.1rem;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.social-icon:hover::before {
    width: 200%;
    height: 200%;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.2);
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

/* ========================================
   ENHANCED ICON ANIMATIONS & EFFECTS
   ======================================== */

/* Floating animation for icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

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

/* Glow effect */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px currentColor, 0 0 10px currentColor;
    }
    50% {
        box-shadow: 0 0 20px currentColor, 0 0 30px currentColor;
    }
}

/* Social Media Brand Colors - Original Brand Styling */

/* Facebook - Blue */
.social-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-facebook:hover {
    background: linear-gradient(135deg, #4a9eff 0%, #1877f2 100%);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.7);
    transform: translateY(-8px) scale(1.15) rotate(-5deg);
}

/* X (Twitter) - Black */
.social-twitter {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.social-twitter:hover {
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
    transform: translateY(-8px) scale(1.15) rotate(5deg);
}

/* LinkedIn - Professional Blue */
.social-linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.social-linkedin:hover {
    background: linear-gradient(135deg, #0095db 0%, #0077b5 100%);
    box-shadow: 0 8px 30px rgba(0, 119, 181, 0.7);
    transform: translateY(-8px) scale(1.15) rotate(5deg);
}

/* Instagram - Gradient Rainbow */
.social-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
    animation: instagramGlow 3s ease-in-out infinite;
}

.social-instagram:hover {
    background: linear-gradient(135deg, #ffd600 0%, #ff6b00 25%, #ff0069 50%, #d300c5 75%, #7638fa 100%);
    box-shadow: 0 8px 30px rgba(225, 48, 108, 0.7);
    transform: translateY(-8px) scale(1.15) rotate(-5deg);
    animation: none;
}

@keyframes instagramGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(225, 48, 108, 0.5);
    }
}

/* Social Icon - No entrance animation to prevent flickering */
.social-icon {
    /* Removed animation to prevent flickering on page load */
}

@keyframes socialFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.5) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

/* Feature icons with animation on scroll */
.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.feature-icon:hover {
    animation: pulse 1s infinite;
    box-shadow: var(--shadow-lg);
}

/* Career/Job icons */
.job-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.job-icon:hover {
    transform: rotate(10deg) scale(1.1);
    box-shadow: var(--shadow-md);
}

/* Back to top button enhancement */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-dark), #543210);
}

.back-to-top:active {
    transform: translateY(-3px) scale(1.05);
}

/* Icon bounce on hover */
.icon-bounce:hover i {
    animation: bounce 0.6s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Gradient text for icons */
.gradient-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Icon with ripple effect */
.ripple-icon {
    position: relative;
    overflow: hidden;
}

.ripple-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple-icon:hover::after {
    width: 200%;
    height: 200%;
}

/* Navbar icons enhancement */
.navbar .fa, .navbar .fas, .navbar .far {
    transition: all 0.3s ease;
}

.navbar a:hover .fa,
.navbar a:hover .fas,
.navbar a:hover .far {
    transform: scale(1.2);
}

/* Button icons */
.btn i {
    transition: all 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-outline-light:hover i,
.btn-light:hover i {
    transform: scale(1.1);
}

