/* styles.css */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --accent-color: #ef233c;    /* Red accent color */
    --accent-hover: #d90429;    /* Darker red for hover */
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

/*  body {
    padding-top: 76px;   
 }  Bootstrap already handles fixed-navbar body padding */



/* Button Styles */
.btn-primary, 
.btn-outline-primary:hover,
a[href="#contact"].btn-lg {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--light-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
a[href="#contact"].btn-lg:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--light-color);
}

.btn-outline-primary {
    color: var(--accent-color);
    border-color: var(--accent-color);
}



/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('data-center.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;  
    text-align: center;
    margin-top: 0;
    margin-bottom: 4rem; /* Add space after hero */
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    margin-top: 56px;  /* Desktop */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 60px; 
    }
    .hero h1 {
        font-size: 2rem;
        margin-top: 106px;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
    
}

.hero .btn-primary.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(239, 35, 60, 0.3);
}

.hero .btn-primary.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 35, 60, 0.4);
}

/* Service Cards */
.service-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  /*  transition: transform 0.3s ease, box-shadow 0.3s ease; */
    height: 100%;
    border: 1px solid transparent;      /* Added this 16Dec24 for hoover border red effect */
    transition: transform 0.3s ease; box-shadow: 0.3s ease; border-color: 0.3s ease;  /* Added border-color 16Dec24 " " */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-color: var(--accent-color);              /*ADDED 16DEC24 - for red outline on hover */
}                                                   /*Didn't have an effect on any of the service cards. */

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.service-list i {
    color: var(--accent-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.service-card .btn-outline-primary {
    width: 100%;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-card .btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 35, 60, 0.3);
}


/* Process Cards */
.process-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
 /*    transition: transform 0.3s ease, box-shadow 0.3s ease;    Process Section Styles Updated */
    border: 1px solid transparent; /* Added this 16 Dec for red border on hover effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;  /* same as above */
}

/*  Process Section Styles Updated */
.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-color: var(--accent-color);          /* ADDED 16DEC24 attempt to get red border on hover. No effect */
}

/* For comparison - Testing. copied from bottom */
#support-packs .service-card:hover {
    border-color: var(--accent-color);
}

/* For comparison - Testing. copied from bottom */

.process-step {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.process-card h3 {
    color: #212529;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.process-card ul {
    padding-left: 0;  /* Remove default padding */
}



.process-card ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: start;
    gap: 0.5rem;
    color: #212529;
}

.process-card ul li i {
    color: var(--accent-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}



/* Engagement section title */
/* Base section styling */
#process.section {
    padding: 60px 0;
}

#process .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

#process h2 {
    color: #212529;
    text-align: center;
    margin-bottom: 40px;
}

/* Process timeline styling */
.process-timeline {
    position: relative;
    padding: 20px 0;
}


/* Row styling */
#process .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

/* Column styling */
#process .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

/* Process step styling */
#process-step {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}                               

#process-step h3 {
    color: #343a40;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

#process-step ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#process-step ul li {
    color: #6c757d;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

#process-step ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
}
                                

/* Responsive design */

@media (max-width: 768px) {
    #process .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    #process-step {
        margin-bottom: 30px;
    }
}

                                    
/* Add these new styles */
#process {
    padding: 60px 0;
    background-color: #ffffff;
}



#process .section-content {
    margin-top: 30px;
}

#process .engagement-item {
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
}

#process .engagement-item h3 {
    color: #343a40;
    margin-bottom: 15px;
}

#process .engagement-item p {
    color: #6c757d;
    line-height: 1.6;
}

#process .row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

#process .col {
    flex: 1;
    padding: 15px;
    min-width: 300px;
}

/* Add responsive design */
@media (max-width: 768px) {
    #process .col {
        flex: 100%;
    }
}


/* Background color for process section */
.bg-light {
    background-color: #f8f9fa;
}





/* Section title should be dark */
.section h2 {
    color: var(--dark-color);
}

/* Section Spacing */
.section {
    padding: 80px 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .process-card {
        margin-bottom: 30px;
    }
}


@media (max-width: 768px) {
    .process-card h3 {
        font-size: 1.25rem;
    }
}

/* Footer */
footer {
    padding: 40px 0;
}

/* Footer Links */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color) !important;
}

/* Navbar Links */
.navbar-nav .nav-link {
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}



/*         Support Card                         */

.support-card {
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    border: 1px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}



.pricing-header {
    text-align: center;
    margin: 1.5rem 0;
}

.contact-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0066cc;
}

.features-list {
    margin: 2rem 0;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.features-list i {
    color: #28a745;
    margin-right: 0.5rem;
}

.support-card-footer {
    text-align: center;
    margin-top: 2rem;
}


/*      HOUR BASED PACKS        */

.support-card--hourly {
    border-left: 4px solid var(--accent-color);
}



.alert-info {
    background-color: var(--light-color);
    border-color: var(--accent-color);
    color: var(--dark-color);
}

.alert-info .alert-heading {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.alert-info ul li {
    margin-bottom: 0.5rem;
}

.alert-info i {
    color: var(--accent-color);
}

/* Add spacing between icon and text in feature list */
.features-list li i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Enhance list spacing */
.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.features-list li:last-child {
    border-bottom: none;
}

/* Support Packs specific styles */
#support-packs .service-card {
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

#support-packs .service-card:hover {
    border-color: var(--accent-color);
}

#support-packs .service-icon {
    margin-bottom: 1.5rem;
}

#support-packs .service-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

#support-packs .service-list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

#support-packs .service-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

#support-packs .service-list i {
    color: var(--accent-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

#support-packs .btn-outline-primary {
    width: 100%;
    transition: all 0.3s ease;
}

#support-packs .btn-outline-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 35, 60, 0.3);
}


.navbar-logo {
    height: 60px; /* Adjust this value to match your desired logo size */
    width: auto;
    margin-right: 10px; /* Adds space between logo and icon/text */
    vertical-align: middle;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand i {
    margin-right: 8px; /* Space between Linux icon and text */
}

.navbar-slogan {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1;
    margin-top: 2px;
}

.navbar-text {
    text-align: center;
}
