:root {
    --primary-light: #ffffff;
    --primary-lighter: #f5f5f5;
    --accent-blue: #00cec9;
    --accent-purple: #8e44ad;
    --dark-text: #212529;
    --top-header-blue: #093c72;
    --footer-bg: #e9ecef;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-lighter);
    color: var(--dark-text);
    overflow-x: hidden;
}

/* ------------------ Top Header Bar Style ------------------ */
.top-header-bar {
    background-color: var(--top-header-blue);
}
@media (min-width: 320px) {
    .d-md-block {
        display: block !important;
    }
}

/* ------------------ Utility Classes ------------------ */
.gradient-text {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-gradient-purple {
    color: var(--accent-purple);
}

.rounded-3xl { border-radius: 1.5rem !important; }

/* ------------------ General Animations & Effects ------------------ */
.fade-in {
    animation: fadeIn 1s ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.expertise-card, .testimonial-card, .stat-box, .tech-badge, .industry-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.4s ease;
    cursor: pointer;
}

/* Button Pulse Animation */
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 206, 201, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 206, 201, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 206, 201, 0); }
}

/* Card Hover Effects */
.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-blue) !important;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.expertise-card .card-title{
    color: #ffffff;
}
/* Stat Box Hover Effects */
.stat-box {
    background: rgba(142, 68, 173, 0.05);
    border: 1px solid rgba(142, 68, 173, 0.2);
    box-shadow: 0 0 10px rgba(142, 68, 173, 0.1);
}

.stat-box:hover {
    background: rgba(142, 68, 173, 0.1);
    box-shadow: 0 0 20px rgba(142, 68, 173, 0.4);
    transform: scale(1.02);
}

/* Tech Badge Hover */
.tech-badge:hover {
    transform: scale(1.05);
    background-color: var(--accent-blue) !important;
    color: white !important;
    border-color: var(--accent-blue) !important;
}

/* Industry Card Specific Styles (New) */
/*.industry-card {*/
/*    background-color: var(--primary-light);*/
/*    border: 1px solid #dee2e6;*/
/*    padding: 1rem; !* Adjusting padding for card feel *!*/
/*    min-height: 120px; !* Ensure visual consistency *!*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

/*.industry-card:hover {*/
/*    transform: scale(1.05);*/
/*    box-shadow: 0 15px 30px rgba(142, 68, 173, 0.2);*/
/*    border-color: var(--accent-purple);*/
/*}*/

/* ------------------ Section Specific Styles ------------------ */
.navbar {
    background-color: var(--primary-light) !important;
    border-bottom: 1px solid #eee;
}

.hero-section {
    background-color: var(--primary-light);
    padding: 80px 0 60px;
    text-align: center;
    color: var(--dark-text) !important;
}

.expertise-gradient-bg {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.05) 0%, rgba(147, 112, 219, 0.15) 100%);
    color: var(--dark-text) !important;
}

.expertise-card {
    background-color: var(--primary-light);
    border: 1px solid #dee2e6 !important;
}

.leader-card {
    background-color: var(--primary-light);
    border: 1px solid var(--accent-purple);
    box-shadow: 0 0 15px rgba(142, 68, 173, 0.15);
    color: var(--dark-text) !important;
}

.testimonial-card {
    background-color: #ffffff;
    border-left: 5px solid var(--accent-purple);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


/* Custom CSS to match the image style (without icons) */

/* Set a dark background for the entire section (to simulate the page background) */
.expertise-section {
    background-color: #000000; /* Pure black or very dark gray */
    color: #ffffff; /* Light text color */
    padding: 50px 0; /* Add some vertical padding */
}

/* Style for the title and subtitle */
.expertise-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
}
.expertise-section p.subtitle {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Style for the individual dark expertise cards */
.expertise-card {
    background-color: #1a1a1a; /* Very dark gray for the cards */
    color: #ffffff; /* White text on the cards */
    border-radius: 12px; /* Match the rounded corners */
    min-height: 180px; /* Ensure a consistent height for the boxes (approximate) */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: transform 0.3s ease-in-out;
    border: 1px solid transparent;
}

/* Card hover effect */
.expertise-card:hover {
    transform: translateY(-5px);
    border-color: #333333;
}

/* Icon styling */
.expertise-card i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
    color: #ffffff; /* Ensure icons are white */
}

/* Text styles */
.expertise-card h5 {
    font-size: 1.1rem;
    font-weight: 700 !important;
    margin-top: 0;
    margin-bottom: 0.5rem !important;
}

.expertise-card p {
    font-size: 0.85rem !important;
    line-height: 1.5;
}





.trust-bar-section {
    background-color: #1a1a1a; /* Dark background similar to the image */
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.trust-bar-content {
    display: flex;
    justify-content: center; /* Center the whole row */
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 15px; /* Spacing between items */
    padding: 5px 0;
    min-width: 100px; /* Ensure some minimum width for each item */
}

.rating-score {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffc107; /* Star color (yellow/gold) */
    margin-bottom: 2px;
}

.rating-score i {
    margin-right: 3px;
}

.rating-logo {
    font-size: 1.5rem; /* Larger font size for logo names */
    font-weight: bold;
    /* Using text for logos, styled to look like image */
}

.logo-google { color: #4285F4; } /* Google Blue */
.logo-glassdoor { color: #00A391; } /* Glassdoor Green */
.logo-clutch { color: #ffffff; } /* Clutch White */
.logo-goodfirms { color: #1e88e5; } /* GoodFirms Blue */

.iso-seal {
    /* Placeholder for the ISO seal image/icon */
    margin: 0 20px;
    font-size: 4rem;
    color: #aaaaaa;
    opacity: 0.8;
}

/* Download Brochure Button */
.download-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50px; /* Highly rounded corners */
    padding: 12px 30px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    margin-left: 30px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #f0f0f0;
    color: #000000;
}

.download-btn i {
    margin-left: 10px;
}


/* --- Footer CSS (from previous block) --- */
.footer-artcon {
    background-color: #0d1222;
    color: #ffffff;
    padding: 30px 0;
    font-family: Arial, sans-serif;
}
.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #4da3ff;
    text-decoration: none;
}
.footer-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}
.footer-nav li {
    margin: 0 15px;
}
.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-nav a:hover {
    color: #4da3ff;
}
.footer-social-links a {
    color: #ffffff;
    font-size: 1.1rem;
    margin-left: 20px;
    transition: color 0.2s;
}
.footer-social-links a:hover {
    color: #4da3ff;
}
.footer-bottom-row {
    text-align: center;
    font-size: 0.8rem;
    color: #aaaaaa;
    padding-top: 20px;
    border-top: 1px solid #333333;
}


/* Gradient Frame Container */
.image-frame-container {
    position: relative;
    width: 100%;
    max-width: 450px; /* Control image size on desktop */
}

/* The actual image container (to hold the clipping) */
.image-wrapper {
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* The core image */
.team-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px; /* Restrict height for a clean look */
    object-fit: cover;
}

/* The decorative L-shaped gradient background */
.gradient-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    /* Using Tailwind colors to define the gradient stops */
    background: linear-gradient(to bottom right, #ff7e5f, #feb47b); /* Example gradient */
}

/* Adjusting the frame's position and clipping to create the L-shape effect seen in the image */
.frame-pink-top {
    background: linear-gradient(to bottom right, #ff6b6b, #ff007f); /* Pink/Red gradient */
    width: 100%;
    height: 150px;
    position: absolute;
    top: -20px;
    left: -20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 20px, 20px 20px, 20px 100%, 0 100%);
}

.frame-orange-bottom {
    background: linear-gradient(to bottom right, #ff9933, #ff5e00); /* Orange gradient */
    width: 100%;
    height: 150px;
    position: absolute;
    bottom: -20px;
    right: -20px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20px 100%, 20px 20px, 0 20px);
}

.frame-pink-top, .frame-orange-bottom {
    /* Adjusting position to mimic the L shape around the image */
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
}

/* The exact L-shape style is complex with pure CSS,
so we'll approximate the visible corners and background displacement */

.frame-container-complex {
    position: relative;
    padding-left: 20px; /* Space for the left part of the frame */
    padding-bottom: 20px; /* Space for the bottom part of the frame */
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Style the floating pink block on the left */
.frame-left-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to bottom,var(--accent-blue) , var(--accent-purple)); /* Pink gradient */
    z-index: 1;
    border-radius: 0.75rem;
}

/* Style the floating orange block on the bottom */
.frame-bottom-floating {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to right, var(--accent-blue) , var(--accent-purple)); /* Orange gradient */
    z-index: 1;
    border-radius: 0.75rem;
}

.image-content-box {
    position: relative;
    z-index: 5;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .frame-container-complex {
        padding-left: 50px;
        padding-bottom: 50px;
    }
}

.industry-section {
    background-color: #ffffff; /* White background */
    font-family: 'Inter', sans-serif;
    padding: 60px 0;
}

/* Title and Subtitle Styling */
.main-title {
    color: #2c3e50; /* Dark text color */
    font-size: 2.5rem;
    font-weight: 800; /* Extra bold */
    text-align: center;
    margin-bottom: 0.5rem;
}

.sub-heading {
    color: var(--accent-blue); /* Orange color for the main accent */
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.sub-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--accent-blue);
    margin: 8px auto 0;
}

/* Card Styling */
.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    /*margin-bottom: 1rem; !* Added margin for Bootstrap row gaps *!*/
}

.industry-card:hover {
    border-color: var(--accent-blue); /* Orange border on hover */
    box-shadow: 0 10px 15px -3px rgba(230, 126, 34, 0.15); /* Stronger shadow with orange tint */
    transform: translateY(-5px);
}

/* Title in Card */
.card-title {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
}

/* Left Content Area Styling */
.content-area {
    padding: 40px;
    position: relative;
}

.content-area .title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.content-area .subtitle {
    color: #5d6d7e;
    margin-bottom: 30px;
}



.view-more-btn {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.view-more-btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Carousel and Review Card Styling */
#testimonialCarousel {
    height: 100%;
    display: flex;
    align-items: center;
}

.carousel-inner {
    padding-bottom: 50px; /* Space for controls */
}

.review-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    min-height: 320px; /* Ensure card has height */
}

.rating .fa-star {
    color: #ffc107; /* Yellow stars */
    margin-right: 3px;
}

.review-text {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.reviewer-name {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0;
}

.reviewer-title {
    font-size: 0.85rem;
    color: #7f8c8d;
}

/* Custom Carousel Controls (Styled to match image, using smaller circles) */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    bottom: 0;
    top: auto;
}

.carousel-control-prev {
    left: 50%;
    transform: translateX(-50%) translateX(-25px); /* Center and offset */
}

.carousel-control-next {
    left: 50%;
    transform: translateX(-50%) translateX(25px); /* Center and offset */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    color: #2c3e50; /* Dark icon color */
    font-size: 1rem;
    font-weight: bold;
    line-height: 2;
}
.carousel-control-prev-icon::after { content: '\276e'; } /* Left chevron */
.carousel-control-next-icon::after { content: '\276f'; } /* Right chevron */


/* Floating Profile Images (Added for visual flair like the image) */
.floating-profile {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    box-shadow: 0 0 0 4px white, 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    z-index: 5;
}
/* Specific positions for 3 floating images */
.profile-top-left { top: 20%; left: 10%; transform: translate(-50%, -50%); background-image: url('https://placehold.co/100x100/A0BFE3/ffffff?text=U1'); animation: float1 8s infinite ease-in-out; }
.profile-mid-right { top: 60%; right: 5%; transform: translate(50%, -50%); background-image: url('https://placehold.co/100x100/F3A0E3/ffffff?text=U2'); animation: float2 9s infinite ease-in-out; }
.profile-bottom-right { bottom: 10%; right: 20%; transform: translate(50%, 50%); background-image: url('https://placehold.co/100x100/A0E3B3/ffffff?text=U3'); animation: float3 7s infinite ease-in-out; }
.profile-top-right { top: 15%; right: 15%; transform: translate(50%, -50%); background-image: url('https://placehold.co/100x100/E3A0A0/ffffff?text=U4'); animation: float4 10s infinite ease-in-out; }

@keyframes float1 { 0%, 100% { transform: translate(-50%, -50%) translateY(0); } 50% { transform: translate(-50%, -50%) translateY(-15px); } }
@keyframes float2 { 0%, 100% { transform: translate(50%, -50%) translateY(0); } 50% { transform: translate(50%, -50%) translateY(10px); } }
@keyframes float3 { 0%, 100% { transform: translate(50%, 50%) translateY(0); } 50% { transform: translate(50%, 50%) translateY(-20px); } }
@keyframes float4 { 0%, 100% { transform: translate(50%, -50%) translateY(0); } 50% { transform: translate(50%, -50%) translateY(12px); } }

/* Custom Styles for Colors and Typography (Equivalent to former Tailwind classes) */
.text-indigo-600 { color: #4f46e5 !important; } /* Tailwind indigo-600 */
.bg-indigo-600 { background-color: #4f46e5 !important; }
.hover-bg-indigo-700:hover { background-color: #4338ca !important; } /* Tailwind indigo-700 */
.text-gray-900 { color: #1f2937 !important; } /* Tailwind gray-900 */
.text-gray-600 { color: #4b5563 !important; } /* Tailwind gray-600 */
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-extrabold { font-weight: 800; }
.tracking-tight { letter-spacing: -0.025em; }
.rounded-xl { border-radius: 0.75rem; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.hover-scale-101:hover { transform: scale(1.01); transition: transform 0.5s; }

/* Responsive Typography */
@media (min-width: 768px) { /* md breakpoint */
    .md-text-5xl { font-size: 3rem; }
}

/* 1. KEYFRAMES FOR HORIZONTAL DOT MOVEMENT (Back and Forth) */
@keyframes moveHorizontal {
    0% { background-position: 0 0; }
    100% { background-position: 400px 0; }
}

/* 2. STYLING FOR THE ANIMATED DOTS CONTAINER */
.animated-dot-pattern {
    background-image: radial-gradient(rgba(53, 0, 255, 0.4) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    position: absolute;
    top: 0;
    left: 0; /* Fill the whole parent div */
    width: 100%; /* Fill the whole width of the parent column */
    height: 100%; /* Fill the whole height of the parent column */
    opacity: 0.5;
    z-index: 1; /* Placed below the image */
    animation: moveHorizontal 10s linear infinite alternate;
}

/*@keyframes move {*/
/*    100% {*/
/*        transform: translate3d(0, 0, 1px) rotate(360deg);*/
/*    }*/
/*}*/
/*header.hero-section {*/
/*    position: relative;*/
/*    overflow: hidden;*/

/*}*/
/*.background {*/
/*    top: 0;*/
/*    left: 0;*/
/*    !*background: linear-gradient(135deg, #e0f7fab5, #e1bee752);*!*/
/*    overflow: hidden;*/
/*    z-index: -1;*/
/*}*/

/*!* Common ball style *!*/
/*.ball {*/
/*    position: absolute;*/
/*    width: 7vmin;*/
/*    height: 7vmin;*/
/*    border-radius: 50%;*/
/*    backface-visibility: hidden;*/
/*    animation: move linear infinite;*/
/*    !*opacity: 0.80;*!*/
/*    !*filter: blur(5px);*!*/
/*}*/

/*!* Randomized vibrant colors *!*/
/*.ball:nth-child(1)  { color: #ff4d4d; }*/
/*.ball:nth-child(2)  { color: #ff8c1a; }*/
/*.ball:nth-child(3)  { color: #ffd11a; }*/
/*.ball:nth-child(4)  { color: #33cc33; }*/
/*.ball:nth-child(5)  { color: #00b3b3; }*/
/*.ball:nth-child(6)  { color: #1a75ff; }*/
/*.ball:nth-child(7)  { color: #b366ff; }*/
/*.ball:nth-child(8)  { color: #ff66b3; }*/
/*.ball:nth-child(9)  { color: #66ffcc; }*/
/*.ball:nth-child(10) { color: #ff9933; }*/
/*.ball:nth-child(11) { color: #ff1a8c; }*/
/*.ball:nth-child(12) { color: #39ac73; }*/
/*.ball:nth-child(13) { color: #6699ff; }*/
/*.ball:nth-child(14) { color: #9933ff; }*/
/*.ball:nth-child(15) { color: #ff5050; }*/
/*.ball:nth-child(16) { color: #00cc99; }*/
/*.ball:nth-child(17) { color: #ffcc00; }*/
/*.ball:nth-child(18) { color: #ff6699; }*/
/*.ball:nth-child(19) { color: #33cccc; }*/
/*.ball:nth-child(20) { color: #cc33ff; }*/

/*!* Motion randomness for each *!*/
/*.ball:nth-child(1)  { top: 80%; left: 20%; animation-duration: 12s; transform-origin: 25vw -10vh; box-shadow: 40vmin 0 5vmin currentColor; }*/
/*.ball:nth-child(2)  { top: 50%; left: 90%; animation-duration: 14s; transform-origin: -20vw -10vh; box-shadow: -40vmin 0 6vmin currentColor; }*/
/*.ball:nth-child(3)  { top: 70%; left: 50%; animation-duration: 13s; transform-origin: 30vw 20vh; box-shadow: 40vmin 0 7vmin currentColor; }*/
/*.ball:nth-child(4)  { top: 40%; left: 30%; animation-duration: 16s; transform-origin: -25vw -5vh; box-shadow: -40vmin 0 5vmin currentColor; }*/
/*.ball:nth-child(5)  { top: 10%; left: 10%; animation-duration: 11s; transform-origin: 20vw 10vh; box-shadow: 40vmin 0 6vmin currentColor; }*/
/*.ball:nth-child(6)  { top: 60%; left: 5%;  animation-duration: 10s; transform-origin: -10vw 5vh; box-shadow: -40vmin 0 5vmin currentColor; }*/
/*.ball:nth-child(7)  { top: 25%; left: 80%; animation-duration: 15s; transform-origin: 25vw -20vh; box-shadow: 40vmin 0 6vmin currentColor; }*/
/*.ball:nth-child(8)  { top: 75%; left: 60%; animation-duration: 13s; transform-origin: -30vw 15vh; box-shadow: -40vmin 0 5vmin currentColor; }*/
/*.ball:nth-child(9)  { top: 15%; left: 55%; animation-duration: 12s; transform-origin: 10vw -20vh; box-shadow: 40vmin 0 6vmin currentColor; }*/
/*.ball:nth-child(10) { top: 35%; left: 40%; animation-duration: 17s; transform-origin: -20vw 10vh; box-shadow: -40vmin 0 5vmin currentColor; }*/
/*.ball:nth-child(11) { top: 60%; left: 75%; animation-duration: 14s; transform-origin: 15vw 5vh;  box-shadow: 40vmin 0 6vmin currentColor; }*/
/*.ball:nth-child(12) { top: 20%; left: 25%; animation-duration: 12s; transform-origin: -15vw 10vh; box-shadow: -40vmin 0 6vmin currentColor; }*/
/*.ball:nth-child(13) { top: 85%; left: 70%; animation-duration: 11s; transform-origin: 25vw -15vh; box-shadow: 40vmin 0 7vmin currentColor; }*/
/*.ball:nth-child(14) { top: 45%; left: 15%; animation-duration: 15s; transform-origin: -30vw 5vh; box-shadow: -40vmin 0 5vmin currentColor; }*/
/*.ball:nth-child(15) { top: 5%;  left: 85%; animation-duration: 16s; transform-origin: 20vw -10vh; box-shadow: 40vmin 0 6vmin currentColor; }*/
/*.ball:nth-child(16) { top: 55%; left: 50%; animation-duration: 13s; transform-origin: -10vw -20vh; box-shadow: -40vmin 0 5vmin currentColor; }*/
/*.ball:nth-child(17) { top: 75%; left: 25%; animation-duration: 10s; transform-origin: 25vw 10vh;  box-shadow: 40vmin 0 5vmin currentColor; }*/
/*.ball:nth-child(18) { top: 25%; left: 5%;  animation-duration: 14s; transform-origin: -15vw -15vh; box-shadow: -40vmin 0 6vmin currentColor; }*/
/*.ball:nth-child(19) { top: 50%; left: 60%; animation-duration: 12s; transform-origin: 30vw 15vh;  box-shadow: 40vmin 0 5vmin currentColor; }*/
/*.ball:nth-child(20) { top: 30%; left: 90%; animation-duration: 11s; transform-origin: -25vw -10vh; box-shadow: -40vmin 0 6vmin currentColor; }*/

.tech-banner {
    position: relative;
    overflow: hidden;
    padding: 6rem 0; /* py-24 */
    background-color: #181d2a; /* bg-[#181d2a] */
    /*min-height: 100vh; !* min-h-screen *!*/
    /* FIX: Enforce strict containment to prevent icon bleed */
    clip-path: inset(0);
}

/* Container Styles (Replaces Tailwind classes) */
.tech-banner .container {
    max-width: 1200px;
    margin: 0 auto; /* mx-auto */
    padding: 0 1rem; /* px-4 */
    position: relative; /* relative */
    z-index: 10; /* z-10 */
}

/* The keyframe animation for circular movement and rotation is global */
@keyframes move {
    100% {
        transform: translate3d(0, 0, 1px) rotate(360deg);
    }
}

/* Container for the background elements, scoped to the section */
.tech-banner .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Common ICON style, scoped to the section */
.tech-banner .tech-icon {
    position: absolute;
    width: 7vmin;
    height: 7vmin;
    display: flex; /* For centering the icon text/symbol */
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    animation: move linear infinite;
    opacity: 0.8;
    filter: blur(0.5px);
    z-index: 0;
    font-size: 3vmin;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Use ::after to display the icon content from data-icon and apply the glow */
.tech-banner .tech-icon::after {
    content: attr(data-icon);
    color: currentColor;
    box-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
    border-radius: 0.5rem;
    padding: 0.5vmin;
    line-height: 1;
    display: block;
    background: rgba(0, 0, 0, 0.2);
}

/* --- TYPOGRAPHY STYLES (Replaces Tailwind) --- */

/* Content Layer styles */
.tech-banner .content-layer p {
    font-size: 1.125rem; /* text-lg */
    font-weight: 500; /* font-medium */
    color: #9ca3af; /* text-gray-400 */
    margin-bottom: 0.5rem; /* mb-2 */
}

.tech-banner .content-layer h1 {
    font-size: 3rem; /* text-4xl (base) */
    font-weight: 800; /* font-extrabold */
    margin-bottom: 2rem; /* mb-8 */
    color: #ffffff; /* text-white */
    line-height: 1.2;
}
/* Responsive H1 font size for larger screens (md:text-6xl) */
@media (min-width: 768px) {
    .tech-banner .content-layer h1 {
        font-size: 4rem;
    }
}

.tech-banner .content-layer h1 span {
    color: #22d3ee; /* text-cyan-400 */
}

/* --- BUTTON STYLES (Replaces Tailwind) --- */

.tech-banner .cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem; /* px-6 py-3 */
    background-color: #0891b2; /* bg-cyan-600 */
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    transition: all 0.3s ease; /* transition duration-300 */
    text-decoration: none;
}

.tech-banner .cta-button:hover {
    background-color: #067490; /* hover:bg-cyan-700 */
    transform: scale(1.05); /* hover:scale-105 */
}

.tech-banner .cta-button svg {
    margin-left: 0.5rem; /* ml-2 */
    width: 1.25rem; /* w-5 h-5 */
    height: 1.25rem;
}

/* --- Brand Colors and Motion randomness - now all prefixed with .tech-banner --- */

/* Group 1: React */
.tech-banner .tech-icon:nth-child(1), .tech-banner .tech-icon:nth-child(6), .tech-banner .tech-icon:nth-child(11), .tech-banner .tech-icon:nth-child(16)  { color: #61DAFB; }
/* Group 2: Laravel */
.tech-banner .tech-icon:nth-child(2), .tech-banner .tech-icon:nth-child(7), .tech-banner .tech-icon:nth-child(12), .tech-banner .tech-icon:nth-child(17)  { color: #FF2D20; }
/* Group 3: Angular */
.tech-banner .tech-icon:nth-child(3), .tech-banner .tech-icon:nth-child(8), .tech-banner .tech-icon:nth-child(13), .tech-banner .tech-icon:nth-child(18)  { color: #DD0031; }
/* Group 4: Photoshop */
.tech-banner .tech-icon:nth-child(4), .tech-banner .tech-icon:nth-child(9), .tech-banner .tech-icon:nth-child(14), .tech-banner .tech-icon:nth-child(19)  { color: #31A8FF; }
/* Group 5: JavaScript */
.tech-banner .tech-icon:nth-child(5), .tech-banner .tech-icon:nth-child(10), .tech-banner .tech-icon:nth-child(15), .tech-banner .tech-icon:nth-child(20) { color: #F7DF1E; }

/* Motion randomness - now all prefixed with .tech-banner */
.tech-banner .tech-icon:nth-child(1)  { top: 80%; left: 20%; animation-duration: 12s; transform-origin: 25vw -10vh; box-shadow: 40vmin 0 5vmin currentColor; }
.tech-banner .tech-icon:nth-child(2)  { top: 50%; left: 90%; animation-duration: 14s; transform-origin: -20vw -10vh; box-shadow: -40vmin 0 6vmin currentColor; }
.tech-banner .tech-icon:nth-child(3)  { top: 70%; left: 50%; animation-duration: 13s; transform-origin: 30vw 20vh; box-shadow: 40vmin 0 7vmin currentColor; }
.tech-banner .tech-icon:nth-child(4)  { top: 40%; left: 30%; animation-duration: 16s; transform-origin: -25vw -5vh; box-shadow: -40vmin 0 5vmin currentColor; }
.tech-banner .tech-icon:nth-child(5)  { top: 10%; left: 10%; animation-duration: 11s; transform-origin: 20vw 10vh; box-shadow: 40vmin 0 6vmin currentColor; }
.tech-banner .tech-icon:nth-child(6)  { top: 60%; left: 5%;  animation-duration: 10s; transform-origin: -10vw 5vh; box-shadow: -40vmin 0 5vmin currentColor; }
.tech-banner .tech-icon:nth-child(7)  { top: 25%; left: 80%; animation-duration: 15s; transform-origin: 25vw -20vh; box-shadow: 40vmin 0 6vmin currentColor; }
.tech-banner .tech-icon:nth-child(8)  { top: 75%; left: 60%; animation-duration: 13s; transform-origin: -30vw 15vh; box-shadow: -40vmin 0 5vmin currentColor; }
.tech-banner .tech-icon:nth-child(9)  { top: 15%; left: 55%; animation-duration: 12s; transform-origin: 10vw -20vh; box-shadow: 40vmin 0 6vmin currentColor; }
.tech-banner .tech-icon:nth-child(10) { top: 35%; left: 40%; animation-duration: 17s; transform-origin: -20vw 10vh; box-shadow: -40vmin 0 5vmin currentColor; }
.tech-banner .tech-icon:nth-child(11) { top: 60%; left: 75%; animation-duration: 14s; transform-origin: 15vw 5vh;  box-shadow: 40vmin 0 6vmin currentColor; }
.tech-banner .tech-icon:nth-child(12) { top: 20%; left: 25%; animation-duration: 12s; transform-origin: -15vw 10vh; box-shadow: -40vmin 0 6vmin currentColor; }
.tech-banner .tech-icon:nth-child(13) { top: 85%; left: 70%; animation-duration: 11s; transform-origin: 25vw -15vh; box-shadow: 40vmin 0 7vmin currentColor; }
.tech-banner .tech-icon:nth-child(14) { top: 45%; left: 15%; animation-duration: 15s; transform-origin: -30vw 5vh; box-shadow: -40vmin 0 5vmin currentColor; }
.tech-banner .tech-icon:nth-child(15) { top: 5%;  left: 85%; animation-duration: 16s; transform-origin: 20vw -10vh; box-shadow: 40vmin 0 6vmin currentColor; }
.tech-banner .tech-icon:nth-child(16) { top: 55%; left: 50%; animation-duration: 13s; transform-origin: -10vw -20vh; box-shadow: -40vmin 0 5vmin currentColor; }
.tech-banner .tech-icon:nth-child(17) { top: 75%; left: 25%; animation-duration: 10s; transform-origin: 25vw 10vh;  box-shadow: 40vmin 0 5vmin currentColor; }
.tech-banner .tech-icon:nth-child(18) { top: 25%; left: 5%;  animation-duration: 14s; transform-origin: -15vw -15vh; box-shadow: -40vmin 0 6vmin currentColor; }
.tech-banner .tech-icon:nth-child(19) { top: 50%; left: 60%; animation-duration: 12s; transform-origin: 30vw 15vh;  box-shadow: 40vmin 0 5vmin currentColor; }
.tech-banner .tech-icon:nth-child(20) { top: 30%; left: 90%; animation-duration: 11s; transform-origin: -25vw -10vh; box-shadow: -40vmin 0 6vmin currentColor; }

#container{
    /*background: #00adef;*/
    /*background: -moz-linear-gradient(-45deg, #00adef 0%, #0076e5 100%);*/
    /*background: -webkit-linear-gradient(-45deg, #00adef 0%,#0076e5 100%);*/
    /*background: linear-gradient(135deg, #00adef 0%,#0076e5 100%);*/
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00adef', endColorstr='#0076e5',GradientType=1 );
    position: relative;
}

#container-inside {
    position: relative;
    min-width: 960px;
    max-width: 1280px;
    height: auto;
    min-height: 100%;
    margin: 0px auto;
    padding: 0px auto;
    overflow: visible;
}

#circle-small {
    -webkit-animation: circle-small-scale 3s ease-in-out infinite alternate;
    animation: circle-small-scale 3s ease-in-out infinite alternate;
    animation-timing-function: cubic-bezier(.6, 0, .4, 1);
    animation-delay: 0s;
    position: absolute;
    top: -100px;
    left: -220px;
    background: #ff0000;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.4;
}

#circle-medium {
    -webkit-animation: circle-small-scale 3s ease-in-out infinite alternate;
    animation: circle-small-scale 3s ease-in-out infinite alternate;
    animation-timing-function: cubic-bezier(.6, 0, .4, 1);
    animation-delay: 0.3s;
    position: absolute;
    top: 150px;
    left: -200px;
    background: #7c3131;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.3;
}

#circle-large {
    -webkit-animation: circle-small-scale 3s ease-in-out infinite alternate;
    animation: circle-small-scale 3s ease-in-out infinite alternate;
    animation-timing-function: cubic-bezier(.6, 0, .4, 1);
    animation-delay: 0.6s;
    position: absolute;
    top: 230px;
    right: -295px;
    background: #0048ff;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.2;
}

#circle-xlarge {
    -webkit-animation: circle-small-scale 3s ease-in-out infinite alternate;
    animation: circle-small-scale 3s ease-in-out infinite alternate;
    animation-timing-function: cubic-bezier(.6, 0, .4, 1);
    animation-delay: 0.9s;
    position: absolute;
    top: -100px;
    right: 40px;
    background: #9c00ff;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    opacity: 0.2;
}

#circle-xxlarge {
    -webkit-animation: circle-small-scale 3s ease-in-out infinite alternate;
    animation: circle-small-scale 3s ease-in-out infinite alternate;
    animation-timing-function: cubic-bezier(.6, 0, .4, 1);
    animation-delay: 1.2s;
    position: absolute;
    top: 0px;
    left: -50px;
    background: #b5a515;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    opacity: 0.3;
}

@-webkit-keyframes circle-small-scale {
    0% {
        -webkit-transform: scale(1.0);
    }
    100% {
        -webkit-transform: scale(1.1);
    }
}

@keyframes circle-small-scale {
    0% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.1);
    }
}

@media (max-width: 900px) {
    #circle-large, #circle-xlarge {
        display: none;
    }
    #circle-xxlarge{
        width: 400px;
        height: 400px;
    }
}