/* Custom Variables */
:root {
    --primary-color: #000000;
    --secondary-color: #F0BB13;
    --accent-color: #27ae60;
    --dark-color: #000000;
    --light-color: #ecf0f1;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 80px;
}

/* Hero Section with Background Image */
.hero-section {
   background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), 
            url('../images/background.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    color: white;
    line-height: 1.2;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    opacity: 1;
}

/* Ensure typing word stays visible during animation */
.typing-word {
    color: #F0BB13 !important;
    display: inline-block;
    border-right: 3px solid #F0BB13;
    animation: blink 0.7s step-end infinite;
    opacity: 1 !important; /* Force visibility */
}

/* 👇 ADD THIS - Typing animation for the changing word */
.typing-word {
    color: #F0BB13; /* Yellow color for "Impact" */
    display: inline-block;
    border-right: 3px solid #F0BB13;
    animation: blink 0.7s step-end infinite;
}

/* Cursor blink animation */
@keyframes blink {
    50% { border-color: transparent; }
}

/* The actual text change animation will be done with JavaScript */

/* Hero Subtitle with Fade-in and Slide-up Animation */
.hero-subtitle {
    color: white;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    /* NEW: Better text control */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Fade-in and Slide-up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Button Container Animation */
.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

/* Add a subtle pulse effect to buttons on hover */
.btn-warning, .btn-outline-light {
    transition: all 0.3s ease;
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Navigation */
.custom-navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.8rem;
    transition: color 0.3s ease;
    color: white !important;
    font-size: 1rem;
}

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

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
}

.btn-warning {
    background-color: var(--secondary-color);
    color: #000000;
    font-weight: 700;
}

.btn-warning:hover {
    background-color: #d4a611;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 187, 19, 0.4);
    color: #000000;
}

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

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Cards */
.card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    border: none;
    height: 100%;
    background: white;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: #000000; /* BLACK background on hover */
    border: none !important; /* ADD THIS LINE */
    outline: none !important; /* ADD THIS LINE */
}

/* Turn text WHITE on hover */
.card:hover .card-title,
.card:hover .card-text {
    color: white;
}

/* Keep icons YELLOW on hover */
.card:hover .feature-icon i {
    color: #F0BB13 !important;
}

.feature-icon {
    margin-bottom: 1.5rem;
}

/* Feature Icons - All in Primary Yellow - MORE SPECIFIC */
.feature-icon .fa-paint-brush,
.feature-icon .fa-leaf,
.feature-icon .fa-globe {
    color: #F0BB13 !important;
}

.card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-text {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.bg-warning {
    background-color: var(--secondary-color) !important;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important;
    border-top: 4px solid var(--secondary-color);
}

footer h4,
footer h5 {
    color: var(--secondary-color) !important;
    font-weight: 700;
    position: relative;
}

footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Social Links - Perfect Circles */
.social-links .btn {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    border-radius: 50% !important;
    border-radius: 50% !important; /* Double it for safety */
    padding: 0;
    aspect-ratio: 1 / 1 !important; /* Forces perfect square */
}

.social-links .btn:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 187, 19, 0.4);
}

/* Quick Links Styling */
.hover-gold {
    transition: all 0.3s ease;
    padding: 5px 0;
    display: block;
}

.hover-gold:hover {
    color: var(--secondary-color) !important;
    transform: translateX(8px);
    text-decoration: none;
}

.hover-gold .fa-chevron-right {
    transition: transform 0.3s ease;
}

.hover-gold:hover .fa-chevron-right {
    transform: translateX(3px);
}

/* CONTACT ITEMS IN FOOTER - FIXED! */
footer .contact-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: transparent !important;
    border-left: none !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
}

footer .contact-item:last-child {
    border-bottom: none;
}

footer .contact-item:hover {
    transform: translateX(8px);
}

footer .contact-item i {
    width: 25px;
    text-align: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

footer .contact-item:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

footer .contact-item .text-light {
    transition: all 0.3s ease;
}

footer .contact-item:hover .text-light {
    color: var(--secondary-color) !important;
}

/* Contact Page Contact Items - Keep the card style */
.contact-info .contact-item {
    padding: 15px;
    border-left: 4px solid var(--secondary-color);
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.contact-info .contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Copyright Section */
.border-top {
    border-color: rgba(240, 187, 19, 0.3) !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer .row > div {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    footer .contact-item .d-flex {
        justify-content: center;
    }
    
    footer .contact-item:hover {
        transform: translateX(0);
    }
}

@media (max-width: 576px) {
    .container.py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        max-width: 500px !important;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .nav-link {
        margin: 0.5rem 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

/* Ensure content is above the overlay */
.hero-section .container {
    position: relative;
    z-index: 2;
}

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

/* About Page Image Styling */
.about-image-container {
    position: relative;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--secondary-color), transparent);
    border-radius: 20px;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.3;
}

.about-image-container img {
    border: 3px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

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

/* Square About Image - NO HOVER EFFECT */
.about-image-container-square {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image-container-square img {
    border: 3px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    /* NO HOVER EFFECT - removed transform */
}

/* Bullet points styling */
.bullet-point {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-right: 15px;
    margin-top: 10px;
    flex-shrink: 0;
}

/* Alternative Logo Styling - Keep original colors */
.navbar-brand {
    padding: 5px 0;
    margin-right: 1rem;
    height: 60px;
    display: flex;
    align-items: center;
}

.logo-img {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.logo-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(240, 187, 19, 0.5);
}

/* Ensure navbar has proper height */
.custom-navbar {
    min-height: 80px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

/* ===================================
   ENHANCED HOMEPAGE STYLES
   Add these to the end of your style.css
   =================================== */

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

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Solution Cards Enhancement */
.solution-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: white;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 187, 19, 0.1), transparent);
    transition: left 0.5s ease;
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #F0BB13;
}

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

.solution-card:hover .solution-icon {
    transform: scale(1.15);
}

/* Stats Section Enhancement */
.stat-item {
    transition: transform 0.3s ease;
}

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

.stat-item h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .stat-item h2 {
        font-size: 3rem;
    }
}

/* ===================================
   CLEAN CLIENT LOGOS SECTION - SIMPLE & VISIBLE
   =================================== */
#clients-section {
    background: #ffffff !important; /* Pure white background */
    position: relative;
}

#clients-section::before {
    display: none; /* Remove gradient line */
}

/* Clean logo container */
.client-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #ffffff;
    height: 150px; /* Big fixed height for larger logos */
}

/* Big, clean logo images */
.client-logo-container img {
    max-height: 90px !important; /* Much bigger logos */
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none !important;
    opacity: 1 !important;
}

/* REMOVE ALL HOVER EFFECTS */
.client-logo-container:hover {
    transform: none !important;
    box-shadow: none !important;
    background: #ffffff !important;
}

.client-logo-container:hover img {
    transform: none !important;
    filter: none !important;
}

/* Responsive sizing */
@media (max-width: 992px) {
    .client-logo-container {
        height: 130px;
        padding: 35px 15px;
    }
    
    .client-logo-container img {
        max-height: 80px !important;
    }
}

@media (max-width: 768px) {
    .client-logo-container {
        height: 110px;
        padding: 30px 10px;
    }
    
    .client-logo-container img {
        max-height: 70px !important;
    }
}

@media (max-width: 576px) {
    .client-logo-container {
        height: 90px;
        padding: 20px 10px;
    }
    
    .client-logo-container img {
        max-height: 60px !important;
    }
}

/* ===================================
   FOOTER - PURE BLACK BACKGROUND
   =================================== */
footer {
    background: #000000 !important;
    background-color: #000000 !important;
    border-top: 4px solid #F0BB13 !important;
}

footer.bg-dark {
    background: #000000 !important;
    background-color: #000000 !important;
}

footer, footer * {
    background-color: #000000 !important;
}

footer .container,
footer .row,
footer .col-md-3,
footer .col-md-4 {
    background: transparent !important;
}

/* ===================================
   FINAL CTA SECTION - YELLOW BACKGROUND
   =================================== */
.py-5.bg-dark.text-white {
    background: #F0BB13 !important;
    color: #000000 !important;
}

.py-5.bg-dark.text-white h3,
.py-5.bg-dark.text-white p {
    color: #000000 !important;
}

.py-5.bg-dark.text-white .btn-warning {
    background-color: #000000 !important;
    color: #F0BB13 !important;
    border: 2px solid #000000;
}

.py-5.bg-dark.text-white .btn-warning:hover {
    background-color: #1a1a1a !important;
    color: #F0BB13 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Enhanced Feature Cards */
.card.border-0.shadow-sm {
    border-left: none !important;
    border: none !important;
    transition: all 0.4s ease;
}

.card.border-0.shadow-sm:hover {
    border-left: none !important;
    border: none !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Hero Section Parallax Effect */
.hero-section {
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
    }
}

/* Pulse Animation for CTA Buttons */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(240, 187, 19, 0.4);
    }
    50% {
        box-shadow: 0 5px 25px rgba(240, 187, 19, 0.6);
    }
}

.btn-warning:hover {
    animation: pulse 2s infinite;
}

/* Section Spacing Enhancement */
section {
    position: relative;
    overflow: hidden;
}

/* Smooth Section Transitions */
section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F0BB13, transparent);
    opacity: 0.3;
}

section:first-of-type::before {
    display: none;
}

/* Enhanced Typography */
.display-5, .display-6 {
    position: relative;
    padding-bottom: 15px;
}

.display-5::after, .display-6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #F0BB13;
    border-radius: 2px;
}

/* Accessibility Enhancement */
.btn:focus, 
.card:focus,
.solution-card:focus {
    outline: 3px solid #F0BB13;
    outline-offset: 2px;
}

/* Performance Optimization */
.card,
.solution-card,
.client-logo {
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Custom Scrollbar for Desktop */
@media (min-width: 768px) {
    ::-webkit-scrollbar {
        width: 12px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: #F0BB13;
        border-radius: 6px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #d4a611;
    }
}

/* ===================================
   SOLUTIONS PAGE STYLES
   Add these to the end of your style.css
   =================================== */

/* Solutions Hero Section */
.solutions-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), 
                url('../images/background.jpg') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
}

.solutions-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F0BB13, transparent);
}

/* Add this inside .solutions-hero or create a media query */
@media (max-width: 768px) {
    .solutions-hero {
        min-height: 60vh; /* Increase height */
        padding-top: 100px; /* Add extra top padding for mobile */
        padding-bottom: 40px; /* Balance bottom too */
    }
    
    .solutions-hero h1 {
        font-size: 2.5rem; /* Make heading smaller if needed */
        margin-top: 20px; /* Add space above heading */
    }
}

/* Solution Detail Cards */
.solution-detail-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-left: 4px solid transparent;
    overflow: hidden;
}

.solution-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 187, 19, 0.05), transparent);
    transition: left 0.6s ease;
}

.solution-detail-card:hover::before {
    left: 100%;
}

.solution-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-left-color: #F0BB13;
}

/* Solution Number Badge */
.solution-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F0BB13, #ffd54f);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(240, 187, 19, 0.3);
}

.solution-detail-card:hover .solution-number {
    transform: scale(1.1) rotate(10deg);
    transition: transform 0.3s ease;
}

/* Solution Icon */
.solution-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F0BB13, #ffd54f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.solution-icon-large i {
    font-size: 2.5rem;
    color: #000000;
}

.solution-detail-card:hover .solution-icon-large {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(240, 187, 19, 0.4);
}

/* Solution Title */
.solution-detail-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

/* Solution Description */
.solution-detail-description {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Solution Features List */
.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features li {
    padding: 12px 0;
    color: #444;
    font-size: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.solution-features li:last-child {
    border-bottom: none;
}

.solution-features li i {
    color: #F0BB13;
    margin-right: 12px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.solution-features li:hover {
    padding-left: 10px;
    color: #000000;
}

.solution-features li:hover i {
    transform: scale(1.2);
}

/* Solution CTA Button */
.solution-cta .btn-warning {
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.solution-cta .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 187, 19, 0.4);
}

/* Process Section */
.process-step {
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #F0BB13;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    background: linear-gradient(135deg, #F0BB13, #ffd54f);
    color: #000000;
    transform: scale(1.1);
}

.process-step h5 {
    margin-top: 20px;
    color: #000000;
}

.process-step p {
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .solution-detail-card {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .solution-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .solution-icon-large {
        width: 70px;
        height: 70px;
    }
    
    .solution-icon-large i {
        font-size: 2rem;
    }
    
    .solution-detail-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .solutions-hero {
        min-height: 40vh;
    }
    
    .solutions-hero h1 {
        font-size: 2.5rem;
    }
    
    .solution-detail-card {
        padding: 25px;
    }
    
    .process-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

/* Page Title Underline Effect */
.solutions-hero h1 {
    position: relative;
    padding-bottom: 20px;
}

.solutions-hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #F0BB13;
    border-radius: 2px;
}

/* Animation for cards on scroll */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-detail-card {
    animation: slideUp 0.6s ease-out;
}

/* Stagger animation for multiple cards */
.solution-detail-card:nth-child(1) { animation-delay: 0.1s; }
.solution-detail-card:nth-child(2) { animation-delay: 0.2s; }
.solution-detail-card:nth-child(3) { animation-delay: 0.3s; }
.solution-detail-card:nth-child(4) { animation-delay: 0.4s; }
.solution-detail-card:nth-child(5) { animation-delay: 0.5s; }
.solution-detail-card:nth-child(6) { animation-delay: 0.6s; }

/* ===================================
   PORTFOLIO PAGES STYLES
   Add these to the end of your style.css
   =================================== */

/* Portfolio Hero */
.portfolio-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), 
                url('../images/background.jpg') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F0BB13, transparent);
}

.portfolio-hero h1 {
    position: relative;
    padding-bottom: 20px;
}

.portfolio-hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #F0BB13;
    border-radius: 2px;
}

/* Filter Buttons */
.portfolio-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.filter-btn:hover {
    border-color: #F0BB13;
    color: #F0BB13;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #F0BB13;
    border-color: #F0BB13;
    color: #000000;
}

/* Portfolio Cards */
.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

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

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f0f0f0;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.portfolio-overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay-content {
    transform: translateY(0);
}

.portfolio-overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-overlay-content p {
    margin-bottom: 15px;
    color: #F0BB13;
    font-weight: 600;
}

/* Portfolio Info */
.portfolio-info {
    padding: 20px;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.portfolio-client {
    font-size: 0.95rem;
    margin: 0;
}

/* No Projects State */
.no-projects {
    padding: 60px 20px;
}

/* ===================================
   PROJECT DETAIL PAGE
   =================================== */

/* Project Hero */
.project-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background-attachment: fixed;
}

.project-category .badge {
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
}

/* Project Info Card */
.project-info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    top: 100px;
}

.project-info-card h4 {
    color: #000000;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 3px solid #F0BB13;
    margin-bottom: 20px;
}

.info-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item h6 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.info-item p {
    margin: 0;
    color: #333;
    font-size: 1rem;
}

/* Project Content Sections */
.project-section {
    animation: fadeInUp 0.6s ease-out;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #F0BB13;
    border-radius: 2px;
}

.project-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Gallery */
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
    background: #f0f0f0;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: #F0BB13;
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author h6 {
    font-weight: 700;
    color: #000000;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .project-info-card {
        position: relative !important;
        top: 0;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .project-text {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .portfolio-hero,
    .project-hero {
        min-height: 40vh;
        background-attachment: scroll;
    }
    
    .portfolio-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .portfolio-overlay-content h4 {
        font-size: 1.25rem;
    }
    
    .project-hero h1 {
        font-size: 2rem;
    }
    
    .project-info-card {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

/* ===================================
   CONTACT PAGE WITH CALENDLY STYLES
   Add these to the end of your style.css
   =================================== */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F0BB13, transparent);
}

/* Contact Form Enhancements */
.contact-info .contact-item {
    padding: 20px;
    border-left: 4px solid #F0BB13;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

/* Contact Page Social Buttons - PERFECT CIRCLES */
.contact-info .social-links .btn {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    border-radius: 50% !important;
    padding: 0 !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Override Bootstrap's btn-lg class for perfect circles */
.btn-lg.rounded-circle {
    border-radius: 50% !important;
    width: 45px !important;
    height: 45px !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.contact-info .contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: white;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-info .social-links .btn {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-info .social-links .btn:hover {
    background: #F0BB13;
    border-color: #F0BB13;
    color: #000000;
    transform: translateY(-3px);
}

/* Form Styling */
.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #F0BB13;
    box-shadow: 0 0 0 0.2rem rgba(240, 187, 19, 0.25);
}

/* Calendly Container */
.calendly-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid #F0BB13;
}

/* Calendly Widget Wrapper */
.calendly-inline-widget {
    border-radius: 8px;
}

/* Smooth scroll for Book a Call button */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .calendly-inline-widget {
        height: 600px !important;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-info .contact-item {
        padding: 15px;
    }
}

/* ===================================
   CONTACT & ABOUT PAGE HERO STYLES
   Add these to the end of your style.css
   =================================== */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), 
                url('../images/background.jpg') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F0BB13, transparent);
}

.contact-hero h1 {
    position: relative;
    padding-bottom: 20px;
}

.contact-hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #F0BB13;
    border-radius: 2px;
}

/* About Hero */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), 
                url('../images/background.jpg') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F0BB13, transparent);
}

.about-hero h1 {
    position: relative;
    padding-bottom: 20px;
}

.about-hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #F0BB13;
    border-radius: 2px;
}



.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}


/* Form Styling */
.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #F0BB13;
    box-shadow: 0 0 0 0.2rem rgba(240, 187, 19, 0.25);
}

/* Calendly Container */
.calendly-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid #F0BB13;
}

/* Calendly Widget Wrapper */
.calendly-inline-widget {
    border-radius: 8px;
}

/* Smooth scroll for Book a Call button */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero,
    .about-hero {
        min-height: 40vh;
    }
    
    .contact-hero h1,
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .calendly-inline-widget {
        height: 600px !important;
    }
    
    .contact-info .contact-item {
        padding: 15px;
    }
}

/* ===================================
   POPUP BANNER & ANIMATION STYLES
   =================================== */

/* Popup Banner Container */
.popup-banner-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.popup-banner {
    transition: transform 0.5s ease;
}

.popup-banner-container:hover .popup-banner {
    transform: scale(1.05);
}

.popup-overlay {
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 16px;
}

.popup-banner-container:hover .popup-overlay {
    opacity: 1;
}

.zoom-in-btn {
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.popup-banner-container:hover .zoom-in-btn {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(240, 187, 19, 0.5);
}

/* Modal Animation */
.modal-content {
    animation: modalSlideUp 0.4s ease-out;
}

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

/* Mobile Optimization - Reduce Boldness */
@media (max-width: 768px) {
    /* Reduce font sizes for mobile */
    .hero-title {
        font-size: 2.2rem !important;
        font-weight: 700 !important; /* Slightly reduced */
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    .display-5, .display-6 {
        font-size: 1.8rem !important;
        font-weight: 700 !important;
    }
    
    .display-4 {
        font-size: 2.5rem !important;
        font-weight: 800 !important;
    }
    
    .lead {
        font-size: 1rem !important;
        font-weight: 400 !important;
    }
    
    .card-title {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
    }
    
    .card-text {
        font-size: 0.95rem !important;
    }
    
    /* Reduce boldness in features section */
    .feature-icon i {
        font-size: 2.5rem !important;
    }
    
    /* Make buttons more balanced */
    .btn-lg {
        padding: 10px 20px !important;
        font-size: 1rem !important;
    }
    
    /* Client logos spacing */
    .client-logo {
        margin: 10px 0;
        max-height: 50px !important;
    }
}

/* Zoom-in animation for various elements */
.zoom-in {
    animation: zoomIn 0.6s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pop-up animation */
.pop-up {
    animation: popUp 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes popUp {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations to solution cards */
.solution-card {
    animation: fadeIn 0.8s ease-out;
}

/* Make solution icons consistent with feature icons */
.solution-icon i {
    transition: all 0.3s ease;
}

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

/* Ensure all icons have the same size in solutions section */
.fa-3x {
    font-size: 3em !important;
}

/* ===================================
   FIX FEATURE ICON COLORS - MAKE THEM YELLOW
   =================================== */
.feature-icon .fas {
    color: #F0BB13 !important;
}

/* ===================================
   ULTIMATE FORCE FIX FOR FEATURE ICONS
   This WILL override ANYTHING else
   =================================== */
.card.border-0.shadow-sm .card-body .feature-icon i.fas,
.card.border-0.shadow-sm .card-body .feature-icon i.fa-paint-brush,
.card.border-0.shadow-sm .card-body .feature-icon i.fa-leaf,
.card.border-0.shadow-sm .card-body .feature-icon i.fa-globe,
.feature-icon i[class*="fa-"] {
    color: #F0BB13 !important;
    fill: #F0BB13 !important;
    stroke: #F0BB13 !important;
}

/* Default changing text style (white) */
#changing-text {
    color: white;
    display: inline-block;
}

/* Yellow style for "Impact" - will be added by JavaScript */
.typing-word {
    color: #F0BB13 !important;
    border-right: 3px solid #F0BB13;
    animation: blink 0.7s step-end infinite;
}

/* Cursor blink animation */
@keyframes blink {
    50% { border-color: transparent; }
}

/* ===================================
   LOGO IMAGE 100% FILL MODAL STYLES
   =================================== */

/* Use fullscreen modal */
.modal-fullscreen .modal-dialog {
    max-width: 100% !important;
    margin: 0 !important;
    height: 100vh !important;
}

.modal-fullscreen .modal-content {
    height: 100vh !important;
    border-radius: 0 !important;
    background: rgba(0, 0, 0, 0.9) !important; /* Dark overlay background */
    border: none !important;
}

/* Center the image perfectly */
#bannerModal .modal-body {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100vh !important;
    padding: 0 !important;
    background: transparent !important;
}

/* Logo image styling - 100% visible */
#bannerModal img {
    object-fit: contain !important;
    max-width: 90% !important;
    max-height: 90vh !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    border: 3px solid #F0BB13 !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
}

/* Close button */
#bannerModal .btn-close {
    z-index: 1050;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background-color: white !important;
    opacity: 1 !important;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    padding: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #bannerModal img {
        max-width: 95% !important;
        max-height: 85vh !important;
    }
    
    #bannerModal .btn-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        padding: 8px;
    }
}

@media (max-width: 576px) {
    #bannerModal img {
        max-width: 98% !important;
        max-height: 80vh !important;
        border-width: 2px !important;
        border-radius: 15px !important;
    }
    
    #bannerModal .btn-close {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        padding: 7px;
    }
}

/* ===================================
   ABOUT PAGE - CEO SECTION STYLES
   =================================== */

/* CEO Image Container */
.ceo-image-container {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 3px solid transparent;
}

.ceo-image-container img {
    transition: transform 0.5s ease;
}

/* Quote Container */
.quote-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #F0BB13;
    position: relative;
}

.quote-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Social Buttons */
.social-btn {
    transition: all 0.3s ease;
    border-width: 2px;
    padding: 10px 25px;
}

.social-btn:hover {
    background-color: #F0BB13;
    border-color: #F0BB13;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(240, 187, 19, 0.3);
}

/* Animations */
.zoom-in {
    animation: zoomIn 1s ease-out;
}

.pop-up {
    animation: popUp 1s ease-out 0.3s both;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes popUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    70% {
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .quote-container {
        padding: 30px;
    }
    
    .quote-container h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .ceo-image-container {
        margin-bottom: 30px;
    }
    
    .quote-container {
        padding: 25px;
    }
    
    .quote-container h3 {
        font-size: 1.75rem;
    }
    
    .social-btn {
        padding: 8px 20px;
        font-size: 1rem;
    }
}

/* ===================================
   ENHANCED MOBILE OPTIMIZATION
   =================================== */
@media (max-width: 768px) {
    /* Reduce ALL heading boldness */
    h1, h2, h3, h4, h5, h6 {
        font-weight: 600 !important;
    }
    
    /* Lighten hero title specifically */
    .hero-title {
        font-size: 2rem !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
    }
    
    /* Reduce spacing for tighter mobile layout */
    section.py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    /* Smaller card padding */
    .card-body {
        padding: 1.5rem !important;
    }
    
    /* Reduce solution card icon size */
    .solution-icon i {
        font-size: 2rem !important;
    }
    
    /* Lighter button font */
    .btn {
        font-weight: 500 !important;
    }
    
    /* Reduce stats numbers */
    .stat-item h2 {
        font-size: 2.5rem !important;
        font-weight: 700 !important;
    }
}

@media (max-width: 576px) {
    /* Even lighter for smaller phones */
    .hero-title {
        font-size: 1.75rem !important;
        font-weight: 600 !important;
    }
    
    h1, h2, h3 {
        font-weight: 600 !important;
    }
    
    h4, h5, h6 {
        font-weight: 500 !important;
    }
}

/* ===================================
   CEO QUOTE FIXES (FINAL & COMPLETE)
   =================================== */

/* Opening Quote - Hanging on the left (Desktop/Large Tablet) */
.opening-quote {
    position: absolute;
    left: -50px; /* Desktop: Pulls quote far left away from the text */
    top: -10px;
    font-size: 5rem;
    color: #000000;
    font-family: Georgia, serif;
    font-weight: bold;
    line-height: 1;
}

/* Closing Quote - Inline with text (No change needed here) */
.closing-quote {
    display: inline-block;
    font-family: Georgia, serif;
    font-weight: bold;
    font-size: 5rem;
    color: #000000;
    line-height: 0;      
    position: relative;
    top: 30px;           
    margin-left: 10px;   
}

/* Responsive Styles for Mobile and Tablet */
@media (max-width: 768px) {
    /* Adjust padding to prevent quote from being cut off */
    .quote-container > div {
        padding: 40px 20px 30px 30px !important; /* Ensure enough left padding */
    }

    /* Shrink and reposition Opening Quote */
    .opening-quote {
        left: -30px; /* Tablet: Pulls quote left relative to smaller padding */
        top: -5px;
        font-size: 3.5rem;
    }

    /* Shrink Closing Quote and realign */
    .closing-quote {
        font-size: 3.5rem;
        top: 20px;
        margin-left: 5px;
    }
}

@media (max-width: 576px) {
    /* Even smaller for phones */
    .opening-quote {
        left: -25px; /* Phone: Final adjustment to pull quote left */
        font-size: 3rem;
    }

    .closing-quote {
        font-size: 3rem;
        top: 15px;
    }
}

/* ===================================
   CLIENT LOGOS FIXES - BIG ON ALL DEVICES WITH GOOD SPACING
   =================================== */

/* Container spacing - MORE SPACE between logos */
.client-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 25px !important; /* MORE PADDING for spacing */
    background: #ffffff;
    height: 160px !important; /* Tall container */
    min-height: 160px !important;
    margin: 10px !important; /* Add margin for spacing between logos */
    border-radius: 12px; /* Optional: rounded corners */
    transition: all 0.3s ease;
}

/* Hover effect - subtle */
.client-logo-container:hover {
    background: #f9f9f9 !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* BIG logos for laptop/desktop */
.client-logo-container img {
    max-height: 95px !important; /* VERY BIG for desktop */
    max-width: 200px !important; 
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    filter: none !important;
    opacity: 1 !important;
    transition: transform 0.3s ease;
}

/* Hover effect on logos */
.client-logo-container:hover img {
    transform: scale(1.05);
}

/* Fix HDInc Logo specifically */
.client-logo-container img[alt="HDInc Logo"] {
    max-height: 100px !important; /* Even bigger */
    max-width: 180px !important;
}

/* Tablet view (768px - 992px) - STILL BIG */
@media (max-width: 992px) {
    .client-logo-container {
        height: 150px !important;
        padding: 35px 20px !important;
        margin: 8px !important;
    }
    
    .client-logo-container img {
        max-height: 85px !important; /* STILL BIG on tablet */
        max-width: 180px !important;
    }
    
    .client-logo-container img[alt="HDInc Logo"] {
        max-height: 90px !important;
        max-width: 160px !important;
    }
}

/* Mobile Landscape (576px - 768px) - STILL BIG */
@media (max-width: 768px) {
    .client-logo-container {
        height: 130px !important;
        padding: 30px 18px !important;
        margin: 6px !important;
    }
    
    .client-logo-container img {
        max-height: 75px !important; /* BIG on mobile landscape */
        max-width: 160px !important;
    }
    
    .client-logo-container img[alt="HDInc Logo"] {
        max-height: 80px !important;
        max-width: 140px !important;
    }
}

/* Mobile Portrait (under 576px) - STILL BIG */
@media (max-width: 576px) {
    .client-logo-container {
        height: 110px !important;
        padding: 25px 15px !important;
        margin: 5px !important;
    }
    
    .client-logo-container img {
        max-height: 65px !important; /* BIG on mobile portrait */
        max-width: 140px !important;
    }
    
    .client-logo-container img[alt="HDInc Logo"] {
        max-height: 70px !important;
        max-width: 120px !important;
    }
}

/* Small phones - STILL BIG */
@media (max-width: 400px) {
    .client-logo-container {
        height: 100px !important;
        padding: 20px 12px !important;
        margin: 4px !important;
    }
    
    .client-logo-container img {
        max-height: 55px !important; /* STILL BIG on small phones */
        max-width: 120px !important;
    }
    
    .client-logo-container img[alt="HDInc Logo"] {
        max-height: 60px !important;
        max-width: 100px !important;
    }
}

/* IMPORTANT: Make the grid spacing better */
#clients-section .row {
    margin-left: -10px !important;
    margin-right: -10px !important;
}

#clients-section .row > div {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

/* ===================================
   NEW SOLUTIONS STYLES FOR ADDED SERVICES
   =================================== */

/* Fix for Digital Marketing icon color */
.solution-detail-card:nth-child(7) .solution-icon-large i.fa-chart-line {
    color: #000000 !important;
}

/* Fix for Sustainable Website Development icon color */
.solution-detail-card:nth-child(8) .solution-icon-large i.fa-leaf {
    color: #000000 !important;
}

/* Animation delays for new cards */
.solution-detail-card:nth-child(7) { animation-delay: 0.7s; }
.solution-detail-card:nth-child(8) { animation-delay: 0.8s; }

/* Responsive adjustments for 8 cards */
@media (max-width: 992px) {
    .solution-detail-card {
        margin-bottom: 30px;
    }
}

/* Ensure all solution icons are properly colored */
.solution-icon-large i {
    color: #000000 !important;
}


/* ===================================
   CONSISTENT MOBILE FONT SIZES ACROSS ALL PAGES
   =================================== */

@media (max-width: 768px) {
    /* Standardize all H1 headings */
    h1, 
    .hero-title,
    .display-3,
    .display-4 {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
    }
    
    /* Standardize all H2 headings */
    h2,
    .display-5 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    /* Standardize all H3 headings */
    h3 {
        font-size: 1.5rem !important;
        line-height: 1.4 !important;
    }
    
    /* Standardize all H4-H6 headings */
    h4, h5, h6 {
        font-size: 1.2rem !important;
    }
    
    /* Standardize all paragraphs */
    p,
    .lead,
    .fs-5 {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    /* Standardize all buttons */
    .btn {
        font-size: 1rem !important;
        padding: 10px 20px !important;
    }
    
    .btn-lg {
        font-size: 1.1rem !important;
        padding: 12px 25px !important;
    }
}

/* ===================================
   PORTFOLIO PAGE FIXES & ENHANCEMENTS
   =================================== */

/* Portfolio Grid Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-item {
    animation: fadeIn 0.5s ease-out;
}

/* Fix for when filtering hides items */
.portfolio-item[style*="display: none"] {
    animation: none;
}

/* Improve filter buttons for mobile */
@media (max-width: 768px) {
    .portfolio-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Project Detail Page Improvements */
.project-info-card {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Make gallery images look better */
.gallery-item img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

/* Testimonial styling */
.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 5px solid #F0BB13;
}

/* Responsive project hero */
@media (max-width: 768px) {
    .project-hero {
        min-height: 40vh;
        background-attachment: scroll !important;
    }
    
    .project-hero h1 {
        font-size: 2rem !important;
    }
}

/* ===================================
   FEATURES CAROUSEL FOR MOBILE
   =================================== */

.features-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 40px; /* Space for arrows */
}

.features-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    max-width: 100%;
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(240, 187, 19, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:hover {
    background: #000;
    color: #F0BB13;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-prev {
    left: 0;
}

.carousel-arrow-next {
    right: 0;
}

.carousel-dots {
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #F0BB13;
    transform: scale(1.2);
}

.dot:hover {
    background: #F0BB13;
}

/* ===================================
   IMAGE BANNER STYLES - DIFFERENT IMAGES FOR LAPTOP & MOBILE
   =================================== */

.image-banner-container {
    margin: 20px 0;
}

.image-banner-link {
    display: block;
    cursor: default; /* No pointer cursor */
    text-decoration: none;
}

/* Remove ALL hover effects */
.image-banner-link:hover {
    transform: none; /* No movement */
    text-decoration: none;
}

/* Common styles for both banners */
.image-banner {
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.image-banner:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); /* Keep original shadow */
    border-color: transparent; /* No border change */
    transform: none; /* No zoom */
}

/* Desktop banner - Show on tablets and larger */
.desktop-banner {
    display: block;
    max-height: 250px;
}

/* Mobile banner - Hide by default */
.mobile-banner {
    display: none;
}

/* Mobile view - Switch banners */
@media (max-width: 767px) {
    .desktop-banner {
        display: none; /* Hide desktop banner */
    }
    
    .mobile-banner {
        display: block; /* Show mobile banner */
        max-height: 250px !important; 
    }
}

@media (max-width: 576px) {
    .mobile-banner {
        max-height: 220px !important; /* Even shorter on small phones */
    }
}

/* ===================================
   SOLUTIONS ACCORDION STYLES (Updated)
   =================================== */

/* Accordion Container */
#solutionsAccordion {
    border: none;
    background: transparent;
}

/* Individual Accordion Items */
.solution-accordion-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.solution-accordion-item:hover {
    border-color: #F0BB13;
    box-shadow: 0 8px 25px rgba(240, 187, 19, 0.1);
    transform: translateY(-2px);
}

/* Accordion Button */
.solution-accordion-item .accordion-button {
    background: white;
    border: none;
    padding: 20px 25px;
    font-size: 1rem;
    color: #000000;
    box-shadow: none !important;
    border-radius: 12px 12px 0 0 !important;
}

.solution-accordion-item .accordion-button:not(.collapsed) {
    background: white;
    color: #000000;
    border-bottom: 2px solid #F0BB13;
}

.solution-accordion-item .accordion-button:focus {
    box-shadow: none !important;
    border-color: #F0BB13;
}

/* Accordion Number */
.accordion-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #F0BB13, #ffd54f);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Accordion Icon */
.accordion-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-icon i {
    font-size: 1.2rem;
    color: #000000;
}

.solution-accordion-item .accordion-button:not(.collapsed) .accordion-icon {
    background: linear-gradient(135deg, #F0BB13, #ffd54f);
}

/* Accordion Title */
.accordion-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-left: 10px;
    text-align: left;
}

/* Accordion Arrow */
.accordion-arrow i {
    font-size: 1.1rem;
    color: #666;
    transition: transform 0.3s ease;
}

.solution-accordion-item .accordion-button:not(.collapsed) .accordion-arrow i {
    transform: rotate(180deg);
    color: #F0BB13;
}

/* Accordion Body */
.solution-accordion-item .accordion-body {
    padding: 20px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

/* Features List */
.solution-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.solution-features li {
    padding: 8px 0;
    color: #444;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.solution-features li:last-child {
    border-bottom: none;
}

.solution-features li i {
    color: #F0BB13;
    margin-right: 10px;
    font-size: 1rem;
}

.solution-detail-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .solution-accordion-item .accordion-button {
        padding: 15px;
    }
    
    .accordion-icon {
        width: 35px;
        height: 35px;
    }
    
    .accordion-icon i {
        font-size: 1.1rem;
    }
    
    .accordion-title {
        font-size: 1rem;
        margin-left: 8px;
    }
    
    .solution-accordion-item .accordion-body {
        padding: 15px;
    }
    
    .solution-features li {
        font-size: 0.9rem;
    }
    
    .solution-detail-description {
        font-size: 0.95rem;
    }
    
    .accordion-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* ===================================
   AUTO-SCROLLING LOGO SLIDER
   =================================== */
.logo-slider {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    animation: scroll-left 40s linear infinite;
    width: fit-content;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.logo-item img {
    max-height: 80px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0%); /* REMOVE invert(0%) */
    opacity: 1;
    transition: all 0.3s ease;
}

.logo-item img:hover {
    filter: brightness(100%); /* REMOVE invert(0%) */
    opacity: 1;
    transform: scale(1.1);
}

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

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo-item {
        padding: 0 30px;
        min-width: 150px;
    }
    
    .logo-item img {
        max-height: 60px;
        max-width: 140px;
        filter: brightness(0%); /* ADD THIS LINE */
        opacity: 1; /* ADD THIS LINE */
    }
    
    .logo-track {
        animation: scroll-left 30s linear infinite;
    }
    
    /* ADD THIS SECTION for VA logo on mobile */
    .light-logo {
        filter: none !important;
        border: none !important;
        box-shadow: none !important;
    }
}

@media (max-width: 576px) {
    .logo-item {
        padding: 0 25px;
        min-width: 120px;
    }
    
    .logo-item img {
        max-height: 50px;
        max-width: 120px;
        filter: brightness(0%); /* ADD THIS LINE */
        opacity: 1; /* ADD THIS LINE */
    }
    
    /* ADD THIS SECTION for VA logo on small mobile */
    .light-logo {
        filter: none !important;
        border: none !important;
        box-shadow: none !important;
    }
}

/* Fix for VA logo that's already black */
.light-logo {
    filter: none !important; /* CHANGE from brightness(50%) to none */
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* Solutions page instruction text */
.instruction-text {
    color: #000000 !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0;
    padding: 10px 0;
    border-bottom: 2px solid #F0BB13;
    display: inline-block;
}

/* ===================================
   SOCIAL MEDIA BUTTONS - PERFECT CIRCLES FIX
   =================================== */

/* Force all social media buttons to be perfect circles */
.social-links .btn,
.contact-info .social-links .btn,
.btn-outline-dark.btn-lg.rounded-circle {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    border-radius: 50% !important; /* Duplicate for extra force */
    padding: 0 !important;
    line-height: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 45px !important;
    min-height: 45px !important;
}

/* Remove Bootstrap's default button padding */
.social-links .btn.btn-lg {
    padding: 0 !important;
}

/* Ensure icons are centered */
.social-links .btn i {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

/* Fix for contact page specifically */
.contact-info .social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.contact-info .social-links .btn {
    flex-shrink: 0;
}

/* ===================================
   SIMPLE SOCIAL BUTTON CLASS - PERFECT CIRCLES
   =================================== */

.social-btn {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #000000 !important;
    color: #000000 !important;
    transition: all 0.3s ease !important;
}

.social-btn:hover {
    background-color: #F0BB13 !important;
    border-color: #F0BB13 !important;
    color: #000000 !important;
    transform: translateY(-3px) !important;
}

/* Optional: Add specific colors for each social platform */
.social-btn.instagram:hover {
    background-color: #E4405F !important;
    border-color: #E4405F !important;
}

.social-btn.whatsapp:hover {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
}

.social-btn.linkedin:hover {
    background-color: #0A66C2 !important;
    border-color: #0A66C2 !important;
}

.social-btn.facebook:hover {
    background-color: #1877F2 !important;
    border-color: #1877F2 !important;
}

/* ONE LINE FIX for oval buttons */
.rounded-circle { aspect-ratio: 1 / 1 !important; }

/* ===================================
   SIMPLE FIX: Move social icons to the LEFT
   =================================== */
.contact-info .social-section.text-start h5 {
    text-align: left !important;
    margin-left: 0 !important;
}

.contact-info .social-section.text-start .social-links {
    justify-content: flex-start !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* ===================================
   IPHONE 13 & SIMILAR DEVICES FIX
   =================================== */

/* Fix for iPhone 13, 12, X, XR (390px width) */
@media (max-width: 430px) and (min-width: 375px) {
    /* Contact Hero - Ensure full visibility */
    .contact-hero {
        min-height: 50vh !important;
        padding-top: 120px !important;
        padding-bottom: 60px !important;
    }
    
    .contact-hero h1 {
        font-size: 2rem !important;
        margin-top: 20px !important;
        line-height: 1.3 !important;
    }
    
    .contact-hero p {
        font-size: 0.95rem !important;
        margin-top: 15px !important;
    }
    
    /* Hero sections for all pages */
    .hero-section,
    .about-hero,
    .portfolio-hero,
    .solutions-hero,
    .project-hero {
        min-height: 60vh !important;
        padding-top: 100px !important;
    }
    
    /* Ensure navbar doesn't overlap */
    body {
        padding-top: 75px !important;
    }
    
    /* Contact form adjustments */
    .contact-info .contact-item {
        padding: 12px !important;
        font-size: 0.9rem !important;
    }
    
    /* CTA section text */
    .contact-hero .lead {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
    
    /* Fix for "Let's Create Something Amazing" section */
    .contact-hero .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Extra small phones (iPhone SE, etc.) */
@media (max-width: 374px) {
    .contact-hero {
        min-height: 55vh !important;
        padding-top: 100px !important;
    }
    
    .contact-hero h1 {
        font-size: 1.8rem !important;
    }
}

/* Landscape mode for iPhones */
@media (max-height: 450px) and (orientation: landscape) {
    .contact-hero,
    .hero-section,
    .about-hero {
        min-height: 100vh !important;
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }
}

/* ===================================
   IPHONE 13 PRO SPECIFIC FIXES
   =================================== */

/* Fix for iPhone 13 Pro display issues */
@media only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3),
       only screen and (device-width: 428px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3) {
    
    /* Contact Hero Fix for iPhone 13 */
    .contact-hero {
        min-height: 60vh !important;
        padding-top: 120px !important;
        padding-bottom: 40px !important;
    }
    
    .contact-hero .container {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    .contact-hero h1.display-3 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
        padding-top: 10px !important;
    }
    
    .contact-hero .lead {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        padding: 0 10px !important;
    }
    
    /* Ensure text doesn't overflow */
    .text-center {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Fix contact form section spacing */
    section.py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Additional iPhone notch safe area support */
@supports (padding: max(0px)) {
    .contact-hero,
    .hero-section,
    .about-hero {
        padding-left: env(safe-area-inset-left) !important;
        padding-right: env(safe-area-inset-right) !important;
    }
    
    .contact-hero h1 {
        padding-top: env(safe-area-inset-top) !important;
    }
}

/* ===================================
   CONTACT PAGE SPECIFIC MOBILE FIXES
   =================================== */

/* Fix for contact info items on mobile */
@media (max-width: 768px) {
    .contact-info .contact-item {
        padding: 15px !important;
        margin-bottom: 20px !important;
        text-align: left !important;
    }
    
    .contact-item .contact-icon {
        width: 45px !important;
        height: 45px !important;
        margin-right: 15px !important;
    }
    
    .contact-item h5 {
        font-size: 1rem !important;
        margin-bottom: 5px !important;
    }
    
    .contact-item p.text-muted {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
}

/* Fix for long email address display */
.contact-item p.text-muted {
    word-break: break-all !important;
    overflow-wrap: break-word !important;
}

/* Ensure all hero sections have consistent spacing */
.contact-hero,
.about-hero {
    display: flex !important;
    align-items: center !important;
    min-height: 50vh !important;
}

.contact-hero .container,
.about-hero .container {
    width: 100% !important;
    max-width: 100% !important;
}

/* Fix for the line break issue in contact hero */
.contact-hero .lead span.d-none.d-md-inline {
    display: inline !important;
}

@media (max-width: 768px) {
    .contact-hero .lead span.d-none.d-md-inline {
        display: none !important;
    }
    
    .contact-hero .lead span.d-md-none {
        display: inline !important;
    }
}

/* ===================================
   UNIVERSAL IPHONE FIX
   =================================== */

/* This will fix ALL iPhones including 13 Pro */
@media (max-width: 430px) {
    /* Hero text adjustments */
    .display-3 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        padding: 0 10px !important;
    }
    
    /* Prevent text overflow */
    .text-white h1,
    .text-white p {
        max-width: 100% !important;
        overflow: visible !important;
    }
    
    /* Contact form container */
    .card-body.p-5 {
        padding: 1.5rem !important;
    }
    
    /* Button sizing */
    .btn-lg {
        padding: 12px 20px !important;
        font-size: 1rem !important;
        width: 100% !important;
    }
    
    /* Social buttons fix */
    .social-links .btn {
        width: 40px !important;
        height: 40px !important;
    }
}

/* Fix for blue tap highlight on iPhone */
* {
    -webkit-tap-highlight-color: transparent !important;
}

a[href^="tel:"] {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
}

.contact-info .contact-item {
    -webkit-tap-highlight-color: transparent !important;
}

/* ===================================
   CEO SECTION - SWITCH ORDER ON MOBILE
   =================================== */

/* On mobile: Image on top, Quote below */
@media (max-width: 991px) {
    .order-1 {
        order: 1 !important;
    }
    
    .order-2 {
        order: 2 !important;
    }
    
    /* Adjust quote container padding for mobile */
    .quote-container .position-relative.z-2 {
        padding: 30px 20px 20px 30px !important;
    }
    
    /* Make CEO image look good on mobile */
    .ceo-image-container {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===================================
   NEW SOLUTIONS CARD GRID LAYOUT
   =================================== */

/* Filter Buttons */
.solution-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 20px 0;
}

.solution-filter-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.solution-filter-btn:hover {
    border-color: #F0BB13;
    color: #F0BB13;
    transform: translateY(-2px);
}

.solution-filter-btn.active {
    background: #F0BB13;
    border-color: #F0BB13;
    color: #000000;
}

.solution-filter-btn i {
    margin-right: 8px;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Individual Solution Card */
.solution-card-new {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.solution-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #000000; /* BLACK background on hover */
}

/* Turn text WHITE on hover */
.solution-card-new:hover .solution-card-title,
.solution-card-new:hover .solution-card-description,
.solution-card-new:hover .solution-card-features li {
    color: white;
}

/* Make "Learn More" button white border with yellow text on hover */
.solution-card-new:hover .solution-learn-more {
    background: transparent;
    border-color: #F0BB13;
    color: #F0BB13;
}

.solution-card-new:hover .solution-learn-more:hover {
    background: #F0BB13;
    color: #000000;
}

/* Card Image */
.solution-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #f0f0f0;
}

.solution-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card-new:hover .solution-card-image img {
    transform: scale(1.1);
}

/* Black Overlay Effect on Hover */
.solution-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.9));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

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

.solution-overlay-content h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Card Content */
.solution-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Category Badge */
.solution-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F0BB13;
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    width: fit-content;
}

.solution-category-badge i {
    font-size: 1rem;
}

/* Card Title */
.solution-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Card Description */
.solution-card-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Card Features List */
.solution-card-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px 0;
}

.solution-card-features li {
    padding: 6px 0;
    color: #444;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.solution-card-features li i {
    color: #F0BB13;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Learn More Button */
.solution-learn-more {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #000000;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.solution-learn-more:hover {
    background: #F0BB13;
    border-color: #F0BB13;
    color: #000000;
    transform: translateY(-2px);
    text-decoration: none;
}


/* Tablet View (2 columns) */
@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .solution-card-image {
        height: 220px;
    }
    
    .solution-card-title {
        font-size: 1.25rem;
    }
}

/* Mobile View (1 column) */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-filters {
        gap: 10px;
        padding: 15px 0;
    }
    
    .solution-filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .solution-card-image {
        height: 200px;
    }
    
    .solution-card-content {
        padding: 20px;
    }
    
    .solution-card-title {
        font-size: 1.2rem;
    }
    
    .solution-card-description {
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .solution-card-image {
        height: 180px;
    }
    
    .solution-overlay-content {
        padding: 20px;
    }
    
    .solution-overlay-content h4 {
        font-size: 1.25rem;
    }
}

/* Filtering Animation */
.solution-card-new.hide {
    display: none;
}

.solution-card-new.show {
    animation: fadeInUp 0.5s ease-out;
}

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

/* ===================================
   ABOUT PAGE - VALUES & MILESTONES SECTIONS
   =================================== */

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

/* Value Card */
.value-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid #e0e0e0;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #000000; /* BLACK on hover */
    border-color: #F0BB13;
}

/* Value Icon */
.value-icon {
    width: 80px;
    height: 80px;
    background: #F0BB13;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-icon i {
    font-size: 2.5rem;
    color: #000000;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(240, 187, 19, 0.4);
}

/* Value Title */
.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.value-card:hover .value-title {
    color: white; /* WHITE text on hover */
}

/* Value Description */
.value-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.value-card:hover .value-description {
    color: white; /* WHITE text on hover */
}

/* Milestones Section - BLACK Background */
.milestones-section {
    background: #000000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.milestones-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F0BB13, transparent);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Vertical Line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #333;
    top: 0;
}

/* Timeline Item */
.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

/* Left Side Items */
.timeline-item.left {
    justify-content: flex-end;
}

.timeline-item.left .timeline-content {
    text-align: right;
    padding-right: 50px;
}

/* Right Side Items */
.timeline-item.right {
    justify-content: flex-start;
}

.timeline-item.right .timeline-content {
    text-align: left;
    padding-left: 50px;
}

/* Timeline Content */
.timeline-content {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    width: 45%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.timeline-content:hover {
    background: #222;
    border-color: #F0BB13;
    transform: translateY(-5px);
}

/* Timeline Dot */
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #F0BB13;
    border-radius: 50%;
    border: 4px solid #000;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 20px rgba(240, 187, 19, 0.6);
}

/* Year Badge */
.milestone-year {
    font-size: 2rem;
    font-weight: 800;
    color: #F0BB13;
    margin-bottom: 10px;
}

/* Milestone Title */
.milestone-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

/* Milestone Description */
.milestone-description {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .value-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
    }
    
    .value-icon i {
        font-size: 2rem;
    }
    
    .value-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    /* Stack timeline vertically on mobile */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start !important;
    }
    
    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        text-align: left;
        padding-left: 60px;
        padding-right: 20px;
        width: 100%;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .milestone-year {
        font-size: 1.5rem;
    }
    
    .milestone-title {
        font-size: 1.1rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .values-section {
        padding: 60px 0;
    }
    
    .milestones-section {
        padding: 60px 0;
    }
}

/* ===================================
   MISSION & VISION CARDS - FINAL VERSION
   =================================== */

.mission-vision-card-new {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    min-height: 380px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mission-vision-card-new.black-bg {
    background: #000000;
}

/* Icon Box - Yellow Square */
.mv-icon-box {
    width: 70px;
    height: 70px;
    background: #F0BB13;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-icon-box i {
    font-size: 2rem;
    color: #000000;
}

/* Title */
.mv-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.black-bg .mv-title {
    color: white;
}

/* Description */
.mv-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.black-bg .mv-description {
    color: #d0d0d0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .mission-vision-card-new {
        padding: 40px 30px;
        min-height: 340px;
    }
    
    .mv-icon-box {
        width: 65px;
        height: 65px;
    }
    
    .mv-icon-box i {
        font-size: 1.8rem;
    }
    
    .mv-title {
        font-size: 1.6rem;
    }
    
    .mv-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .mission-vision-card-new {
        padding: 35px 25px;
        min-height: auto;
        margin-bottom: 20px;
    }
    
    .mv-icon-box {
        width: 60px;
        height: 60px;
    }
    
    .mv-icon-box i {
        font-size: 1.6rem;
    }
    
    .mv-title {
        font-size: 1.5rem;
    }
    
    .mv-description {
        font-size: 0.95rem;
    }
}

/* ===================================
   FAQ SECTION STYLES
   =================================== */

.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-label {
    color: #F0BB13;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(240, 187, 19, 0.1);
}

.faq-question {
    background: white;
    border: none;
    padding: 25px 30px;
    width: 100%;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question.active {
    background: #f8f9fa;
    border-bottom: 2px solid #F0BB13;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: #F0BB13;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-icon i {
    font-size: 1rem;
    color: #000000;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafafa;
}

.faq-answer.active {
    max-height: 500px;
    padding: 25px 30px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1.05rem;
    }
    
    .faq-icon {
        width: 25px;
        height: 25px;
        margin-left: 15px;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: 18px;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 18px;
    }
}

/* ===================================
   CONTACT FORM ONLY - REMOVE HOVER EFFECTS (INFO SIDE KEEPS EFFECTS)
   =================================== */

/* Remove hover effects from form button ONLY */
.contact-form-card .btn-warning {
    background-color: #F0BB13;
    color: #000000;
    font-weight: 700;
    border: none;
    transition: none !important;
    transform: none !important;
    animation: none !important;
}

.contact-form-card .btn-warning:hover {
    background-color: #F0BB13 !important;
    color: #000000 !important;
    transform: none !important;
    box-shadow: none !important;
    animation: none !important;
}

/* Remove transitions from form fields */
.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 2px solid #e0e0e0;
    transition: none !important;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: #F0BB13;
    box-shadow: 0 0 0 0.2rem rgba(240, 187, 19, 0.25);
    outline: none;
}

/* Remove hover effect from form card */
.contact-form-card {
    transition: none !important;
}

.contact-form-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Keep ALL contact info hover effects INTACT */
/* DO NOT TOUCH .contact-info .contact-item:hover - Keep it! */
/* DO NOT TOUCH .contact-info .social-links .btn:hover - Keep it! */

/* ===================================
   MODERN FORM CARD DESIGN - ADD THIS
   =================================== */

/* Modern Form Card Container */
.contact-form-card {
    background: white;
    border-radius: 24px !important;  /* Larger curve for modern look */
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);  /* Soft shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);  /* Subtle border */
    position: relative;
    overflow: hidden;
}

/* Form title styling */
.contact-form-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #F0BB13;
    border-radius: 2px;
}

/* Form fields - Modern styling */
.contact-form-card .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 12px !important;  /* Rounded corners */
    padding: 14px 18px;
    font-size: 1rem;
    transition: none !important;
    background-color: #fafafa;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: #F0BB13;
    box-shadow: 0 0 0 4px rgba(240, 187, 19, 0.1);
    background-color: white;
    outline: none;
}

/* Modern button styling */
.contact-form-card .btn-warning {
    background: linear-gradient(135deg, #F0BB13, #ffd54f);
    color: #000000;
    font-weight: 700;
    padding: 16px 35px;
    border-radius: 50px !important;  /* Pill shape button */
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border: none;
    transition: none !important;
    transform: none !important;
    box-shadow: 0 10px 20px rgba(240, 187, 19, 0.2);
}

.contact-form-card .btn-warning i {
    margin-right: 10px;
}

/* Remove hover effects completely */
.contact-form-card .btn-warning:hover {
    background: linear-gradient(135deg, #F0BB13, #ffd54f) !important;
    color: #000000 !important;
    transform: none !important;
    box-shadow: 0 10px 20px rgba(240, 187, 19, 0.2) !important;
}

/* Placeholder styling */
.contact-form-card .form-control::placeholder,
.contact-form-card .form-select::placeholder {
    color: #999;
    font-size: 0.95rem;
}

/* Input group spacing */
.contact-form-card .row.g-3 {
    margin-top: 0;
}

.contact-form-card .row.g-3 > div {
    margin-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 30px 25px;
        border-radius: 20px !important;
    }
    
    .contact-form-card h3 {
        font-size: 1.5rem;
    }
    
    .contact-form-card .form-control,
    .contact-form-card .form-select {
        padding: 12px 16px;
    }
    
    .contact-form-card .btn-warning {
        padding: 14px 30px;
        width: 100%;  /* Full width button on mobile */
    }
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 25px 20px;
        border-radius: 16px !important;
    }
}