/* IEEE Blue Theme Override */
:root {
    --primary-color: #00A3E0 !important;
    --ieee-blue: #00629B;
    --ieee-light-blue: #00A3E0;
    --ieee-dark-blue: #003F87;
    --border-color: rgba(0, 163, 224, 0.6) !important;
    --button-border: #00A3E0 !important;
}

/* Button Override */
.theme-btn {
    background: linear-gradient(135deg, #00A3E0 0%, #00629B 100%) !important;
    border: 2px solid #00A3E0 !important;
    color: #fff !important;
}

.theme-btn:hover {
    background: linear-gradient(135deg, #00629B 0%, #003F87 100%) !important;
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(0, 163, 224, 0.5) !important;
}

.theme-btn.call-to-action-button {
    background: linear-gradient(135deg, #00A3E0 0%, #00629B 100%) !important;
    color: #fff !important;
}

.theme-btn.call-to-action-button:hover {
    background: linear-gradient(135deg, #00629B 0%, #003F87 100%) !important;
    color: #fff !important;
}

/* Links */
a:hover {
    color: #00A3E0 !important;
}

/* Accent Colors */
.ri-star-fill,
.portfolio-category i,
.stat-icon,
i[class*="ri-"] {
    color: #00A3E0 !important;
}

/* Borders and Outlines */
.border-primary,
.border-accent {
    border-color: #00A3E0 !important;
}

/* Background Accents */
.bg-primary,
.bg-accent {
    background-color: #00A3E0 !important;
}

/* Text Accents */
.text-primary,
.text-accent {
    color: #00A3E0 !important;
}

/* Hover Effects */
.hover-primary:hover {
    color: #00A3E0 !important;
    border-color: #00A3E0 !important;
}

/* Counter and Animated Numbers */
.count-text {
    color: #00A3E0 !important;
}

/* Hero Counter Area */
.hero-counter-area .counter-item .count-text {
    background: linear-gradient(135deg, #00A3E0 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Portfolio Category Badge */
.portfolio-category {
    background: linear-gradient(135deg, #00A3E0 0%, #00629B 100%) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Navigation Active State */
.nav-link-click.active {
    color: #00A3E0 !important;
}

/* Social Icons */
.about-social a:hover {
    color: #00A3E0 !important;
    border-color: #00A3E0 !important;
}

/* Form Elements - Rounded Corners */
.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="url"],
textarea,
select {
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

/* Form Focus */
.form-control:focus,
input:focus,
textarea:focus {
    border-color: #00A3E0 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 163, 224, 0.25) !important;
}

/* Checkbox and Radio */
input[type="checkbox"]:checked,
input[type="radio"]:checked {
    background-color: #00A3E0 !important;
    border-color: #00A3E0 !important;
}

/* Scrollbar */
::-webkit-scrollbar-thumb {
    background: #00A3E0 !important;
}

::-webkit-scrollbar-thumb:hover {
    background: #00629B !important;
}

/* Progress Bar */
.progress-circle path {
    stroke: #00A3E0 !important;
}

/* Selection */
::selection {
    background-color: #00A3E0 !important;
    color: #fff !important;
}

::-moz-selection {
    background-color: #00A3E0 !important;
    color: #fff !important;
}

