/* ====================================
   ENHANCED STYLES FOR HAMTECH AUTOMATION
   ==================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* Apply Rajdhani font globally */
* {
    font-family: 'Rajdhani', sans-serif !important;
}

/* Modern Color Palette - Charcoal Grey/Black with Hot Orange */
:root {
    --primary-gradient: linear-gradient(135deg, #151515 0%, #252525 100%);
    --secondary-gradient: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    --tech-gradient: linear-gradient(135deg, #3a3a3a 0%, #151515 100%);
    --dark-gradient: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    --accent-color: #ff6b35;
    --accent-hover: #ff8c42;
    --charcoal: #252525;
    --dark-charcoal: #151515;
    --light-grey: #4a4a4a;
}

/* Circuit Board Background Image for Hero */
.masthead {
    background: #0a0a0a url('../assets/img/background.png') center center no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/* Greyer overlay to make background more subtle with fade to charcoal grey */
.masthead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.65) 0%,
        rgba(10, 10, 10, 0.68) 60%,
        rgba(45, 45, 45, 0.75) 90%,
        rgba(45, 45, 45, 0.85) 100%
    );
    z-index: 1;
}

/* Ensure masthead content is above background and overlay */
.masthead .container {
    position: relative;
    z-index: 2;
}

.masthead h1,
.masthead p,
.masthead img,
.masthead .divider-custom {
    position: relative;
    z-index: 3;
}

/* Hero Buttons */
.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-hero-primary {
    background: linear-gradient(135deg, #e6632f 0%, #e67d3a 100%);
    color: white;
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Typing Animation */
.typing-text {
    border-right: 3px solid white;
    animation: blink 0.75s step-end infinite;
    display: inline-block;
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: white; }
}

/* Service Cards - Matching Tech Stack Style */
.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(135deg, #252525 0%, #151515 100%);
    border: 2px solid transparent;
    height: 280px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

/* Animated state when visible */
.portfolio-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    border-color: #ff6b35;
}

.text-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 1.5rem;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.text-content h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.portfolio-item:hover .text-content h3 {
    transform: scale(1.05);
    letter-spacing: 1px;
    text-shadow:
        0 0 20px rgba(255, 107, 53, 0.8),
        0 0 40px rgba(255, 107, 53, 0.6),
        0 0 60px rgba(255, 107, 53, 0.4);
}

.portfolio-item-caption {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.98) 0%, rgba(255, 140, 66, 0.98) 100%);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Tech Stack Section */
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-item {
    text-align: center;
    padding: 1.5rem 0.75rem;
    background: linear-gradient(135deg, #252525 0%, #151515 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    border-color: #ff6b35;
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    color: #ff6b35;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

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

.tech-item h6 {
    margin: 0;
    font-weight: 600;
    color: #ff6b35;
    font-size: 0.9rem;
    line-height: 1.2;
}

/* Circuit Trace Activation Animation */
.tech-stack-grid {
    position: relative;
}

/* Circuit traces connecting cards */
.tech-item::before,
.tech-item::after {
    content: '';
    position: absolute;
    background: #ff6b35;
    opacity: 0;
}

/* Horizontal traces (connecting left-right) */
.tech-item::before {
    width: 0;
    height: 2px;
    top: 50%;
    right: -2rem;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.8);
}

.tech-item.active::before {
    animation: traceGrowH 0.4s ease-out forwards;
    animation-delay: calc(var(--item-index) * 0.15s);
}

/* Vertical traces (connecting top-bottom) */
.tech-item::after {
    width: 2px;
    height: 0;
    bottom: -2rem;
    left: 50%;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.8);
}

.tech-item.active::after {
    animation: traceGrowV 0.4s ease-out forwards;
    animation-delay: calc(var(--item-index) * 0.15s + 0.2s);
}

@keyframes traceGrowH {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 2rem;
        opacity: 1;
    }
}

@keyframes traceGrowV {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: 2rem;
        opacity: 1;
    }
}

/* Card activation with circuit glow - Initial state */
.glitch-in {
    opacity: 0;
    transform: scale(0.8);
}

/* Card activation animation - Only when visible */
.glitch-in.active {
    animation: circuitActivate 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(var(--item-index) * 0.15s);
}

@keyframes circuitActivate {
    0% {
        opacity: 0;
        transform: scale(0.8);
        box-shadow: 0 0 0 rgba(255, 107, 53, 0);
        border-color: transparent;
    }
    50% {
        box-shadow:
            0 0 30px rgba(255, 107, 53, 0.8),
            inset 0 0 20px rgba(255, 107, 53, 0.3);
        border-color: #ff6b35;
    }
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        border-color: transparent;
    }
}

/* Particle flow effect on traces */
.tech-item .circuit-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ff8c42;
    border-radius: 50%;
    box-shadow:
        0 0 10px rgba(255, 140, 66, 0.8),
        0 0 20px rgba(255, 140, 66, 0.6);
    opacity: 0;
}

/* Animated particles moving along traces - only when active */
.tech-item.active::before {
    animation: traceGrowH 0.4s ease-out forwards, particleFlowH 2s linear infinite;
    animation-delay:
        calc(var(--item-index) * 0.15s),
        calc(var(--item-index) * 0.15s + 0.5s);
}

@keyframes particleFlowH {
    0%, 100% {
        box-shadow:
            0 0 8px rgba(255, 107, 53, 0.8),
            0 0 0 rgba(255, 140, 66, 0);
    }
    50% {
        box-shadow:
            0 0 8px rgba(255, 107, 53, 0.8),
            1rem 0 15px rgba(255, 140, 66, 1);
    }
}

/* Index-based delays for sequential activation */
.tech-item:nth-child(1) { --item-index: 0; }
.tech-item:nth-child(2) { --item-index: 1; }
.tech-item:nth-child(3) { --item-index: 2; }
.tech-item:nth-child(4) { --item-index: 3; }
.tech-item:nth-child(5) { --item-index: 4; }
.tech-item:nth-child(6) { --item-index: 5; }
.tech-item:nth-child(7) { --item-index: 6; }
.tech-item:nth-child(8) { --item-index: 7; }
.tech-item:nth-child(9) { --item-index: 8; }
.tech-item:nth-child(10) { --item-index: 9; }
.tech-item:nth-child(11) { --item-index: 10; }
.tech-item:nth-child(12) { --item-index: 11; }
.tech-item:nth-child(13) { --item-index: 12; }
.tech-item:nth-child(14) { --item-index: 13; }
.tech-item:nth-child(15) { --item-index: 14; }
.tech-item:nth-child(16) { --item-index: 15; }
.tech-item:nth-child(17) { --item-index: 16; }
.tech-item:nth-child(18) { --item-index: 17; }
.tech-item:nth-child(19) { --item-index: 18; }
.tech-item:nth-child(20) { --item-index: 19; }
.tech-item:nth-child(21) { --item-index: 20; }
.tech-item:nth-child(22) { --item-index: 21; }

/* Experience Timeline */
.experience-timeline {
    position: relative;
    padding-left: 50px;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ff6b35, #ff8c42);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.15);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 2rem;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ff6b35;
    border: 3px solid #ff8c42;
    box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.3);
}

/* Animated Statistics Counter */
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-box {
    background: rgba(255,255,255,0.1) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.achievement-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
}

.achievement-item {
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(255,255,255,0.1);
}

/* Certifications Section */
.cert-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    background: linear-gradient(135deg, #252525 0%, #151515 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    z-index: 1000;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

/* Enhanced Modal */
.modal-content {
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, #151515 0%, #0a0a0a 100%);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.8),
        0 0 40px rgba(255, 107, 53, 0.6),
        0 0 80px rgba(255, 107, 53, 0.3);
    animation: modalGlowIn 0.5s ease-out forwards;
    backdrop-filter: blur(20px);
}

@keyframes modalGlowIn {
    0% {
        box-shadow:
            0 20px 60px rgba(0,0,0,0.3),
            0 0 0 rgba(255, 107, 53, 0);
        transform: scale(0.95);
        opacity: 0;
    }
    50% {
        box-shadow:
            0 20px 60px rgba(0,0,0,0.8),
            0 0 60px rgba(255, 107, 53, 0.9),
            0 0 120px rgba(255, 107, 53, 0.5);
    }
    100% {
        box-shadow:
            0 20px 60px rgba(0,0,0,0.8),
            0 0 40px rgba(255, 107, 53, 0.6),
            0 0 80px rgba(255, 107, 53, 0.3);
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
    color: white;
    border-radius: 24px 24px 0 0;
    padding: 2rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.5);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        inset 0 -2px 10px rgba(255, 107, 53, 0.2);
}

.modal-body {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
    border-radius: 0 0 24px 24px;
}

.modal-body h6 {
    color: #ff8c42;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.modal-body ul {
    list-style: none;
    padding: 0;
}

.modal-body ul li {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.modal-body ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-body ul li strong {
    color: #ff8c42;
    font-weight: 600;
}

/* Section Dividers */
.divider-custom {
    margin: 2rem 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-custom .divider-custom-line {
    width: 100%;
    max-width: 7rem;
    height: 0.25rem;
    background-color: rgba(255,255,255,0.5);
    border-radius: 1rem;
}

.divider-custom-light .divider-custom-line {
    background-color: rgba(255,255,255,0.5);
}

/* About Section Enhancement */
.about-highlight {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    border: 2px solid #ff6b35;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
}

/* Services Section */
#services {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

#services .page-section-heading {
    color: #252525 !important;
}

#services .divider-custom-line {
    background-color: #ff6b35 !important;
}

/* Tech Stack Section */
#techstack {
    background: linear-gradient(135deg, #151515 0%, #252525 100%);
}

#techstack .page-section-heading {
    color: #ff6b35 !important;
}

#techstack .lead {
    color: #ffffff;
}

#techstack .divider-custom-line {
    background-color: #ff6b35 !important;
}

/* Certifications Section */
#certifications {
    background: linear-gradient(135deg, #252525 0%, #151515 100%);
}

#certifications .page-section-heading {
    color: #ff6b35 !important;
}

#certifications .lead {
    color: #ffffff;
}

#certifications .divider-custom-line {
    background-color: #ff6b35 !important;
}

#certifications .glass {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ff6b35;
}

#certifications .text-primary {
    color: #ff6b35 !important;
}

#certifications h6,
#certifications h5 {
    color: #ffffff;
}

#certifications p {
    color: #cccccc;
}

/* Copyright Section */
.copyright {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
}

/* Navbar Styling */
#mainNav {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%) !important;
    font-family: 'Rajdhani', sans-serif;
}

#mainNav .navbar-brand img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

#mainNav .nav-link {
    color: #ffffff !important;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#mainNav .nav-link:hover {
    color: #ff6b35 !important;
}

/* Experience Section Enhancements */
#experience {
    background: linear-gradient(135deg, #151515 0%, #252525 100%) !important;
}

#experience .divider-custom-line {
    background-color: #ff6b35 !important;
}

/* About Section Enhancements */
#about {
    background: linear-gradient(135deg, #252525 0%, #151515 100%) !important;
}

#about .divider-custom-line {
    background-color: #ff6b35 !important;
}

/* Mobile Menu Styling */
.navbar-toggler {
    border-color: #ff6b35 !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.5);
}

/* Icon Enhancements */
.fas,
.fab {
    transition: all 0.3s ease;
}

/* Logo in modals */
.modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-logo {
    filter: brightness(1.1) drop-shadow(0 2px 8px rgba(255, 107, 53, 0.5));
    max-width: 70px;
    max-height: 70px;
    width: auto;
    height: auto;
    flex-shrink: 0;
}

.modal-title {
    flex: 1;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.modal-title:hover {
    text-shadow:
        0 0 20px rgba(255, 107, 53, 0.8),
        0 0 40px rgba(255, 107, 53, 0.6),
        0 0 60px rgba(255, 107, 53, 0.4);
}

.modal-header .close {
    color: #ff6b35;
    opacity: 1;
    font-size: 2.5rem;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.modal-header .close:hover {
    color: #ff8c42;
    opacity: 1;
    transform: rotate(90deg);
    text-shadow: 0 0 20px rgba(255, 140, 66, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tech-stack-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }

    .tech-item {
        padding: 1rem 0.5rem;
        min-height: 120px;
    }

    .tech-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .tech-item h6 {
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        width: 100%;
        max-width: 300px;
    }

    .experience-timeline {
        padding-left: 30px;
    }

    .timeline-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .modal-logo {
        max-width: 50px;
        max-height: 50px;
    }

    .modal-title {
        font-size: 1rem;
    }

    .modal-header {
        gap: 0.5rem;
    }
}

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

.animate-on-load {
    animation: fadeInUp 0.8s ease forwards;
}

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Pulse Animation for Icons */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

/* Navbar Scroll Effect */
.navbar-scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%) !important;
}

/* Additional Contact Section Enhancements */
#contact {
    background: linear-gradient(135deg, #252525 0%, #151515 100%);
}

#contact .lead {
    color: #ffffff;
}

#contact .text-muted {
    color: #cccccc !important;
}

#contact .btn-social {
    transition: all 0.3s ease;
    border-color: #ff6b35 !important;
    color: #ff6b35 !important;
}

#contact .btn-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    background: #ff6b35 !important;
    color: white !important;
}

#contact .page-section-heading {
    color: #ff6b35 !important;
}

#contact .divider-custom-line {
    background-color: #ff6b35 !important;
}

#contact .divider-custom-icon {
    color: #ff6b35 !important;
}

#contact img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
}
