/* Root Variables */
:root {
    --deep-navy-blue: #1E2A38;    /* Deep Navy Blue (Primary) */
    --bright-cyan: #0ABAB5;       /* Bright Cyan (Primary) */
    --soft-orange: #F89B3B;       /* Soft Orange (Accent/CTA) */
    --light-gray: #F4F4F4;        /* Light Gray (Background) */
    --warm-white: #FFFFFF;        /* Warm White (Text contrast) */
    --dark-slate: #2C3E50;        /* Dark Slate (Body text) */
    --gradient-blue-cyan: linear-gradient(135deg, var(--deep-navy-blue), var(--bright-cyan));
    --logo-size: 80px;            /* Default logo size */
    --logo-border-color: var(--bright-cyan); /* Border color */
    --logo-border-width: 3px;     /* Border width */
}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--light-gray);
    color: var(--dark-slate);
}

/* Header Styles */
header {
    background: linear-gradient(to right, var(--bright-cyan), var(--deep-navy-blue));
    color: var(--warm-white);
    padding: 20px 0;
}

header .logo img {
    height: 50px;
}

header .d-flex {
    gap: 20px;
}

/* Logo Styles */
header .logo img {
    width: 100px; /* Increased size */
    height: 100px; /* Ensure it's a perfect circle */
    border-radius: 50%; /* Make it a circle */
    object-fit: cover; /* Ensure the image fills the space correctly */
    border: var(--logo-border-width) solid var(--logo-border-color); /* Add a border */
    transition: transform 0.3s ease;
    display: block; /* Ensure the image behaves properly */
    margin: 0 auto; /* Center the logo if needed */
}

header .logo img:hover {
    transform: scale(1.1); /* Slight increase on hover */
}


/* Navbar Styles */
.navbar {
    background-color: var(--deep-navy-blue) !important;
    padding: 10px 0;
}

.navbar .navbar-brand,
.navbar .nav-link {
    color: var(--warm-white) !important;
}

.navbar .nav-link:hover {
    color: var(--bright-cyan) !important;
}

.navbar .navbar-toggler {
    border-color: var(--warm-white);
}

.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Highlight active navigation link */
.navbar .nav-item .nav-link.active {
    background-color: var(--bright-cyan);
    color: var(--warm-white) !important;
    border-radius: 5px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

/* Hover effect for navigation links */
.navbar .nav-item .nav-link:hover {
    background-color: var(--soft-orange);
    color: var(--warm-white) !important;
    border-radius: 5px;
    padding: 8px 16px;
}

/* Button Styles */
.btn-primary {
    background-color: var(--bright-cyan);
    border-color: var(--bright-cyan);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--soft-orange);
    border-color: var(--soft-orange);
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    background: var(--deep-navy-blue);
    color: var(--warm-white);
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid var(--bright-cyan);
}

footer .social-icons a {
    color: var(--warm-white);
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: var(--bright-cyan);
}

/* Chat Button Styles */
.btn-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--soft-orange);
    border-radius: 50%;
    padding: 15px 20px;
    color: var(--warm-white);
    font-size: 18px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.btn-chat:hover {
    background-color: var(--bright-cyan);
    transform: scale(1.1);
}

/* Section Styles */
section {
    padding: 60px 0;
}

/* Home Section */
.home-section {
    position: relative;
    background-image: url('index.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--warm-white);
    padding: 100px 0;
    text-align: center;
}

.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
/* Home Section Paragraph */
.home-section p {
    font-size: 1.5rem; /* Current size */
    line-height: 1.6; /* Improve readability */
    margin-bottom: 30px; /* Spacing below the paragraph */
    max-width: 800px; /* Limit width for better readability */
    margin-left: auto; /* Center the paragraph */
    margin-right: auto;
}

.home-section .container {
    position: relative;
    z-index: 2;
}

/* Subscribe Section */
.subscribe-section {
    background: var(--gradient-blue-cyan);
    color: var(--warm-white);
}

.subscribe-section input[type="email"] {
    border: 2px solid var(--bright-cyan);
    border-radius: 5px;
    padding: 10px;
    width: 300px;
    max-width: 100%;
}

.subscribe-section button {
    margin-left: 10px;
}

/* Services Section */
.services-section {
    background-image: url('services-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: var(--warm-white);
    text-align: center;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.services-section p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

/* Service Boxes */
.service-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px;
    border-radius: 10px;
    color: var(--warm-white);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.service-item * {
    position: relative;
    z-index: 2;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Individual Service Backgrounds */
#web-dev {
    background-image: url('web-dev-bg.jpg');
}

#networking {
    background-image: url('networking-bg.jpg');
}

#it-admin {
    background-image: url('it-admin-bg.jpg');
}

/* Icons */
.service-item i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--bright-cyan);
}

/* About Us Section */
.about-us-section {
    background-image: url('about-us-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: var(--warm-white);
    text-align: center;
    position: relative;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.about-us-section .container {
    position: relative;
    z-index: 2;
}

.about-us-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-us-section h2 {
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-us-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Team Members */
.team-member {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .navbar .navbar-nav {
        text-align: center;
    }
}