
        :root {
            --primary-orange: #FF6B35;
            --secondary: #1a237e;
            --light-blue: #0d6efd;
            --light-text: #666666;
            --section-padding: 100px 0;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
        }
        
        
        /* Navbar */
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
            background-color: transparent;
        }
        
        .navbar.scrolled {
            background-color: rgb(255, 255, 255);
            /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
            padding: 2px 0;
        }
            .navbar.scrolled .btn-primary-custom:hover
            {
                color: #0a0a0a;
            }
         /* Logo Styles */
        .logo-white {
            display: block;
        }
        
        .logo-dark {
            display: none;
        }
        
        .navbar.scrolled .logo-white {
            display: none;
        }
        
        .navbar.scrolled .logo-dark {
            display: block;
        }
        
        
        .navbar-brand {
            font-weight: 700;
            font-size: 24px;
            color: var(--primary-orange) !important;
        }
        
        .navbar-nav .nav-link {
            font-weight: 300;
            margin: 0 10px;
            color: rgb(88, 88, 88) !important;
            transition: color 0.3s ease;
        }
        
        .navbar.scrolled .navbar-nav .nav-link {
            color: var(--dark-text) !important;
        }
        
        .navbar-nav .nav-link:hover {
            color: #1b1b1b !important;
            border-bottom: 1px solid var(--primary-orange);
        }
        
        .navbar-toggler {
            border: none;
            color: rgb(255, 255, 255);
            background-color: #ffffff2c;
        }
        
        .navbar.scrolled .navbar-toggler {
            color: var(--dark-text);
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
             /* Hero Section with Chat Bubble Design */
.hero-section {
    background-color: var(--white);
    color: var(--secondary);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/designss.png') no-repeat center center;
    background-size: contain;
    animation: rotateBackground 75s linear infinite;
    transform-origin: center center;
}

/* Simple Rotation Animation */
@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Alternative: More Complex Rotation with Scale */
/* @keyframes rotateBackgroundAdvanced {
    0% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        transform: rotate(180deg) scale(1.8);
    }
    75% {
        transform: rotate(270deg) scale(0.9);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
} */

/* Alternative: Slow Subtle Rotation */
@keyframes rotateBackgroundSubtle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* For a more modern look with opacity changes */
@keyframes rotateBackgroundModern {
    0% {
        transform: rotate(0deg);
        opacity: 0.9;
    }
    50% {
        transform: rotate(180deg);
        opacity: 0.4;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0.8;
    }
}

        
        /* Chat Bubble Background Elements */
        .chat-bubble-bg {
            position: absolute;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 1;
        }
        
        /* .chat-bubble-1 {
            width: 300px;
            height: 200px;
            top: 10%;
            right: 5%;
            transform: rotate(15deg);
            border-top-right-radius: 0;
        }
        
        .chat-bubble-2 {
            width: 250px;
            height: 180px;
            bottom: 15%;
            left: 8%;
            transform: rotate(-10deg);
            border-top-left-radius: 0;
        } */
        
        /* .chat-bubble-3 {
            width: 180px;
            height: 120px;
            top: 40%;
            right: 20%;
            transform: rotate(5deg);
            border-bottom-right-radius: 0;
        }
        
        .chat-bubble-4 {
            width: 220px;
            height: 150px;
            bottom: 25%;
            right: 15%;
            transform: rotate(-5deg);
            border-bottom-left-radius: 0;
        } */
        
        /* Chat message elements */
.chat-message {
    position: absolute;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 2s forwards ease-in-out;
    color: rgb(0, 0, 0);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
        .chat-message p{
            font-size: 0.9rem;
            margin-top: 10px;
        }
        
        /* .chat-message::after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-style: solid;
        } */
        
        .message-1 {
            top: 25%;
            right: 15%;
            animation-delay: 0.5s;
              max-width: 300px;
        }
        
        .message-1::after {
            border-width: 20px 0 15px 20px;
            border-color: transparent transparent transparent rgba(255, 255, 255, 0.25);
            z-index: 999;
            right: -21px;
            top: 20px;
        }
        
        
        .message-3 {
            top: 55%;
            right: 20%;
            animation-delay: 1.5s;
            max-width: 280px;

        }
  .message-3::after {
    border-width: 25px 20px 0 15px;
    border-color: rgba(255, 255, 255, 0.25) transparent transparent transparent;
    bottom: -px;
    left: 40px;
    top: auto;
}


        
        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 3;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 500;
            margin-bottom: 2rem;
            /* text-shadow: 2px 2px 4px rgba(0,0,0,0.2); */
        }
        
        .hero-subtitle {
            font-size: 1.8rem;
            font-weight: 200;
            margin-bottom: 2rem;
            color: rgb(0, 0, 0);
        }
        
        .hero-description {
            font-size: 1rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            max-width: 700px;
        }
       
        
        /* Animations */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.5rem;
            }
            
            .chat-bubble-bg {
                display: none;
            }
            
            .chat-message {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 150px 0 80px;
                text-align: center;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .hero-description {
                font-size: 1.1rem;
            }
             .navbar ul
             {
               background-color: rgba(255, 255, 255, 0.192);
                text-align: center;
                padding: 20px 0;
             }
        }
        .btn-primary-custom {
            background-color: var(--primary-orange);
            border-color: #fff;
            padding: 8px 30px;
            font-weight: 500;
            border-radius: 30px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.6s both;
            color: #ffff;
        }
        
        .btn-primary-custom:hover {
            background-color: #ffffff00;
            border: 1px solid var(--primary-orange);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
            color: #000000;
        }
        
        /* Section Styling */
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--primary-orange);
        }
        
        .section-subtitle {
            color: var(--light-text);
            margin-bottom: 60px;
            font-size: 1.1rem;
        }
        
        .section-padding {
            padding: var(--section-padding);
        }
        
        /* About Section */
  /* Parallax About Section */
        .about-section {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            color: rgb(0, 0, 0);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M500,97 C300,150 150,150 0,97 L0,0 L1000,0 L1000,97 Z" fill="rgba(255,255,255,0.05)"></path></svg>');
            background-size: 100% auto;
            background-repeat: no-repeat;
            background-position: bottom;
        }
        
        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            /* background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80') center/cover fixed; */
            opacity: 0.15;
            z-index: 1;
        }
        
        .about-content {
            position: relative;
            z-index: 2;
        }
        
        /* Chat Box Styling */
        .chat-box {
            background: rgba(243, 243, 243, 0.15);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.042);
            position: relative;
            overflow: hidden;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

    
        
        .chat-box-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .chat-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.5rem;
            color: rgb(0, 0, 0);
        }
        
        .chat-box h3 {
            font-weight: 700;
            margin-bottom: 5px;

        }
        
        .chat-box p {
            opacity: 0.9;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        /* Section Titles */
        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            font-weight: 400;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        /* Feature List */
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-list li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .feature-list i {
            color: var(--accent);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        /* Management Focus Badges */
        .management-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }
        
        .management-badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 12px 20px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .management-badge:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }
        
        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .delay-1 { transition-delay: 0.2s; }
        .delay-2 { transition-delay: 0.4s; }
        .delay-3 { transition-delay: 0.6s; }
        .delay-4 { transition-delay: 0.8s; }
        
        /* Stats Section */
        .stats-section {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 40px;
            margin-top: 50px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 0;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-subtitle {
                font-size: 1.2rem;
            }
            
            .chat-box {
                padding: 25px;
            }
        }

        /* Photo Grid Styles */
.photo-grid-container {
    position: relative;
    height: 700px;
}

.photo-grid {
    position: relative;
    height: 100%;
    width: 100%;
}

.grid-item {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 3px solid rgba(255,255,255,0.1);
}

.grid-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.main-item {
    width: 75%;
    height: 60%;
    top: 10%;
    left: 5%;
    z-index: 1;
}

.secondary-item {
    width: 45%;
    height: 45%;
    top: 5%;
    right: 5%;
    z-index: 2;
}

.tertiary-item {
    width: 40%;
    height: 40%;
    bottom: 15%;
    left: 15%;
    z-index: 1;
}

.quaternary-item {
    width: 50%;
    height: 35%;
    bottom: 10%;
    right: 10%;
    z-index: 2;
}

/* Enhanced Chat Box Styles */
.value-proposition {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 25px;
}

.accent-text {
    color: var(--accent) !important;
    font-weight: 600;
    font-size: 1rem;
}

.value-points {
    display: grid;
    gap: 20px;
    margin-top: 25px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.value-item i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 5px;
}

.value-item h5 {
    margin-bottom: 5px;
    color: rgb(0, 0, 0);
    font-weight: 600;
}

.value-item p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--accent);
}

.service-card h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.service-card p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

/* Quick Action Box */
.quick-action-box {
    background: linear-gradient(135deg, var(--accent), #ff8c00);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.3);
}

.quick-action-box h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
}

.quick-action-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.btn-action {
    background: white;
    color: var(--accent);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 992px) {
    .photo-grid-container {
        height: 400px;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .value-proposition h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .photo-grid-container {
        height: 350px;
    }
    
    .quick-action-box .text-end {
        text-align: left !important;
        margin-top: 20px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
}
        /* Services Section */
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 4px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-top: 4px solid var(--primary-orange);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
        }
        
        /* Team Section */
        .team-section {
            background-color: #f8f9fa;
        }
        
        .team-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .team-img {
            height: 350px;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .team-content {
            padding: 25px;
        }
        
        .team-name {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }
        
        .team-position {
            color: var(--primary-orange);
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        /* Vision Mission Section */
        .vision-mission-section {
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                        url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
        }
        
        .vision-card, .mission-card {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .vision-card:hover, .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .vision-icon, .mission-icon {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
        }
        
        /* Contact Section */
        .contact-info {
            margin-bottom: 30px;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary-orange);
            margin-right: 15px;
        }
        
        .contact-form {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 5px;
            border: 1px solid #e0e0e01a;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
        }
        
        /* Footer */
        .footer {
            background-color: #7b7b7b0f;
            color: rgb(50, 50, 50);
            padding: 60px 0 30px;
        }
        
    
        
        .footer-links h5 {
            color: rgb(13, 13, 13);
            margin-bottom: 20px;
            font-size: 1rem;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #7c7c7c;
            text-decoration: none;
            font-size: .9rem;
            transition: color 0.3s ease;
        }
        .service-footer-list li
        {
              color: #7c7c7c;
                 text-decoration: none;
            font-size: .9rem;
        }
        
        .footer-links a:hover {
            color: var(--primary-orange);
        }
        
        .copyright {
            border-top: 1px solid #34495e;
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            font-size: .7rem;
            color: #ababab;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            .profile-popup
            {
                display: none;
            }
       
        }

        /* Industries Section Styles */
.industries-section {
    background-color: #f8f9fa;
}

.industry-card {
    padding: 30px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-icon {
    font-size: 2.5rem;
    color: #0d6efd;
}

/* Methodology Section Styles */
.methodology-step {
    position: relative;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0d6efd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Our Edge Section Styles */
.edge-section {
    background-color: #f8f9fa;
}

.edge-point {
    display: flex;
    align-items: flex-start;
}

.edge-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-right: 20px;
    flex-shrink: 0;
}

.edge-content h4 {
    margin-bottom: 10px;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 35px;
  height: 35px;
  border: 1px solid var(--primary, #00000085);
  color: #515151;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
}
.scroll-top i {
  font-size: 1rem;
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}
.scroll-top:hover {
  background: var(--secondary, #1a3a6c);
  transform: translateY(-3px);
  color: #fff;
}

.profile-hover-box {
  position: relative;
  cursor: pointer;
}

.profile-thumb {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid  var(--primary-orange);
  padding: 2px 2px;
  object-fit: cover;
  transition: transform .3s ease;
  animation: pulseZoom 2s infinite;
}

.profile-thumb:hover {
  transform: scale(1.5);
}

/* Hover Popup */
.profile-popup {
  position: absolute;
  top: -10px;
  left: 70px;
  width: 200px;
  padding: 5px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0px 5px 12px rgba(0,0,0,0.15);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: .50s ease-in-out;
  z-index: 10;
}

.profile-hover-box:hover .profile-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(-55%);
}

.popup-img {
  width: 100%;
  border-radius: 8px;
}

/* Glow Animation */
@keyframes pulseZoom {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0px rgba(13,110,253,0.7); }
  50% { transform: scale(1.06); box-shadow: 0 0 2px rgba(13,110,253,0.9); }
}

  
      
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent);
        }
        
        .section-title.center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .profile-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 35px 30px;
            box-shadow: 0px 8px 28px rgba(0,0,0,0.12);
            position: relative;
            overflow: hidden;
            border: 1px solid #e8e8e8;
            margin-bottom: 40px;
        }

        .profile-card:before {
            content: "";
            position: absolute;
            top: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, #0072ff, #40c4ff);
            opacity: 0.12;
            border-radius: 50%;
        }

        .profile-name {
            font-size: 2rem;
            font-weight: 700;
            color: #0a0a0a;
        }

        .profile-title {
            font-size: 1rem;
            font-weight: 600;
            background: linear-gradient(90deg, #0072ff, #0dd3ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .badge-custom {
            padding: 10px 14px;
            font-size: 0.85rem;
            border-radius: 30px;
            font-weight: 600;
            transition: .3s;
        }

        .badge-custom:hover {
            transform: translateY(-3px);
        }
        
        .timeline-section {
            background-color: #e1e1e121;
            border-radius: 50px;
            padding: 10px 0;
        }
        
        .timeline-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            margin-top: 60px;
            margin-bottom: 60px;
        }

        .timeline {
            position: relative;
            max-width: 1100px;
            margin: auto;
        }

        .timeline::before {
            content: "";
            position: absolute;
            width: 4px;
            background: #0078ff;
            top: 0;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .timeline-item {
            width: 50%;
            position: relative;
            margin-bottom: 60px;
        }

        .timeline-item:nth-child(odd) { left: -2%; }
        .timeline-item:nth-child(even) { left: 52%; }

        .timeline-content {
            background: #fff;
            border-radius: 14px;
            padding: 22px 28px;
            box-shadow: 0px 7px 20px rgba(0,0,0,0.1);
            border-left: 1px solid #0078ff;
        }

        .timeline-icon {
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
            left: calc(50% + 2px);
            width: 55px;
            height: 55px;
            background: #d5d5d5;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1;
            opacity: 0.4;
            font-size: 18px;
        }

        /* Animation hidden state */
        .reveal {
            opacity: 0;
            filter: blur(4px);
            transition: 1s ease;
        }

        .slide-left { transform: translateX(-80px); }
        .slide-right { transform: translateX(80px); }

        .reveal.active {
            opacity: 1;
            filter: blur(0);
            transform: translateX(0);
        }

        .consultant-image {
            position: relative;
            min-width: 250px;
            min-height: 340px;
            z-index: 3;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }
        
        .consultant-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .consultant-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .consultant-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 58, 108, 0.85);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .consultant-image .consultant-overlay {
            transform: translateY(0);
        }
        
        .consultant-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .consultant-title {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Mobile responsive */
        @media(max-width: 767px) {
            .timeline::before { left: 20px; }
            .timeline-item {
                width: 100%;
                left: 0!important;
                padding-left: 50px;
            }
            .timeline-icon { left: 20px; }
        }

        .whatsapp-btn {
    position: fixed;
    bottom: 100px; 
    right: 20px; 
    background-color: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    z-index: 999;
}

.whatsapp-btn img {
    width: 30px;
    height: 30px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}
  /* Skills Section */
        .skills-section {
            padding: 80px 0;
            background-color: white;

        }
        
        .skill-category {
            margin-bottom: 40px;
        }
        
        .skill-category h3 {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 20px;
            border-left: 4px solid var(--accent);
            padding-left: 15px;
        }
        
        .skill-item {
            background: var(--light);
            padding: 15px 20px;
            border-radius: 10px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .skill-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .skill-item i {
            color: var(--secondary);
            margin-right: 15px;
            font-size: 1.2rem;
        }

        /* Hide arrows in number input */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide arrows in Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
