/* Custom CSS for IObit Solutions Website */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: #393E46;
    background-color: #ebebea;
}

/* Social Media Links */
.social-icon {
    background-color: rgba(248, 180, 0, 0.1);
    border-radius: 9999px;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Top Header Bar */
.top-header-bar {
    background: #F8B400;
    background: linear-gradient(90deg, rgba(248, 180, 0, 1) 0%, rgba(35, 41, 49, 1) 35%);
    border-radius: 20px 20px 0px 0px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

p {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;     
}

/* Button Styles */
.btn-primary {
    background: #F8B400;
    background-image: linear-gradient(90deg, rgba(248, 180, 0, 1) 0%, rgba(35, 41, 49, 1) 35%);
    background-size: 200% auto;
    background-position: 0% center;
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all 0.5s ease;
}

.btn-primary:hover {
    background-position: 100% center;
    background-image: linear-gradient(90deg, rgba(248, 180, 0, 1) 0%, rgba(35, 41, 49, 1) 100%);
}

.btn-lg {
    padding: 15px 40px;
}

.btn-md {
    padding: 10px 30px;
}

.btn-secondary {
    background: #F8B400;
    background: linear-gradient(90deg, rgba(248, 180, 0, 1) 6%, rgba(35, 41, 49, 1) 5%);
    background-size: 200% auto;
    background-position: 0% center;
    color: white;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all 0.5s ease;
}

.btn-secondary:hover {
    background: #F8B400;
    background: linear-gradient(90deg, rgba(248, 180, 0, 1) 96%, rgba(35, 41, 49, 1) 96%);
    background-position: 100% center;
}

/* Section Styles */
.section {
    padding: 5rem 0;
    background-color: #fff;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

/* Background Patterns */
.bg-circuit-pattern {
    background-image: url('data:image/svg+xml,%3Csvg width=%27100%27 height=%27100%27 viewBox=%270 0 100 100%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27none%27 stroke=%27%23F8B400%27 stroke-opacity=%270.8%27 stroke-width=%271%27%3E%3Cpath d=%27M10 10h80v80H10z%27/%3E%3Cpath d=%27M10 50h80M50 10v80M30 10v20M70 10v20M30 70v20M70 70v20M10 30h20M10 70h20M70 30h20M70 70h20%27/%3E%3Ccircle cx=%2730%27 cy=%2730%27 r=%273%27 fill=%27%23F8B400%27 fill-opacity=%270.5%27/%3E%3Ccircle cx=%2770%27 cy=%2730%27 r=%273%27 fill=%27%23F8B400%27 fill-opacity=%270.5%27/%3E%3Ccircle cx=%2730%27 cy=%2770%27 r=%273%27 fill=%27%23F8B400%27 fill-opacity=%270.5%27/%3E%3Ccircle cx=%2770%27 cy=%2770%27 r=%273%27 fill=%27%23F8B400%27 fill-opacity=%270.5%27/%3E%3Cpath d=%27M30 30h20v20H30zM50 50h20v20H50z%27/%3E%3C/g%3E%3C/svg%3E');
    background-size: 200px 200px;
}

/* Animation Styles */
.animated-gradient {
    background: linear-gradient(225deg, rgba(248, 180, 0, 0.05) 0%, rgba(78, 204, 163, 0.05) 50%, rgba(35, 41, 49, 0.05) 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Container Styles */
.container {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
}

/* Custom Padding Class */
.weird-padding {
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .weird-padding {
        padding: 10px;
    }
}

/* Navigation Styles */
nav {
    border-bottom: 5px solid #ffaf01;
}

/* Navigation Background Pattern */
.nav-bg-pattern {
    background-image: url('images/circuit.svg');
    z-index: -1;
}

/* Default List Styling with Font Awesome Tick Marks */
ul {
    margin-left: 2em;
    list-style-type: none;
    padding-left: 0;
}

ul li {
    position: relative;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    margin-top: 10px;
}

ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #F8B400;
    background: #F8B400;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.2s ease;
}

ul li:hover:before {
    transform: scale(1.2);
}

/* Alternative check styles */
ul.fa-ul.check-circle li:before {
    content: "\f058";
}

ul.fa-ul.check-square li:before {
    content: "\f14a";
}

.service-icon {
    background: linear-gradient(90deg, rgba(248, 180, 0, 0.2) 0%, rgba(35, 41, 49, 0.2) 100%);
}

.service-icon i {
    background: linear-gradient(90deg, rgba(248, 180, 0, 1) 0%, rgba(35, 41, 49, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading {
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #F8B400 0%, #232931 100%);
}

.sidebar-service {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-service:hover {
    border-left: 3px solid #F8B400;
    background-color: rgba(248, 180, 0, 0.05);
}

.content-section h2 {
    color: #232931;
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-section h3 {
    color: #232931;
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.content-section ul {
    margin-bottom: 1.5rem;
}

.content-section ul li {
    margin-bottom: 0.5rem;
}

.service-card {
    border-top: 4px solid #F8B400;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    background: linear-gradient(90deg, rgba(248, 180, 0, 0.2) 0%, rgba(35, 41, 49, 0.2) 100%);
    color: #F8B400;
}

.service-icon i {
    background: linear-gradient(90deg, rgba(248, 180, 0, 1) 0%, rgba(35, 41, 49, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading {
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #F8B400 0%, #232931 100%);
}

.decorative-divider {
    height: 3px;
    background: linear-gradient(90deg, #F8B400, #232931);
    width: 100px;
    border-radius: 2px;
    margin: 2rem auto;
}