/*
    Gold Key Licensing - Main Stylesheet
    Colors:
    Primary Blue: #1c3265
    Secondary Blue: #217d93
    Light Grey: #f8f9fa
    Medium Grey: #5f6576
    Accent Orange: #e39f41
    Green: #19c618
    Text Grey: #acb1c1
*/

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1c3265;
    --secondary-blue: #217d93;
    --light-grey: #f8f9fa;
    --medium-grey: #5f6576;
    --accent-green: #19c618;
    --text-grey: #acb1c1;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--medium-grey);
    line-height: 1.6;
    background-color: var(--light-grey);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #1c3265;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
    text-transform: uppercase;
    color: #19c618;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #1c3265;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #19c618;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    background-color: var(--accent-green);
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
}

section {
    padding: 60px 0;
}

.section-subtitle {
    position: relative;
    display: inline-block;
    padding-left: 35px;
    margin-bottom: 0.5rem;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 4px;
    background-color: #19c618;
    transform: translateY(-50%);
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
}

.logo {
    max-width: 180px;
    padding: 0;
}

.logo img {
    max-width: 100%;
    height: auto;
}

nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 40px;
}

nav ul li a {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0;
    padding: 10px 0;
    transition: color 0.3s ease;
    text-transform: none;
}

nav ul li a:hover {
    color: var(--accent-green);
}

.cta-button {
    margin-left: 40px;
}

.cta-button .btn-primary {
    background-color: #27ae60;
    font-size: 1rem;
    letter-spacing: 0;
    padding: 12px 24px;
    text-transform: none;
    font-weight: 500;
    border-radius: 4px;
}

.cta-button .btn-primary:hover {
    background-color: #219653;
    transform: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background: url('../images/it-support-usa.webp') no-repeat center center;
    background-size: cover;
    color: #fff;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(28, 50, 101, 0.92), rgba(28, 50, 101, 0.92));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.pre-heading {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    color: #19c618;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero h1 {
    color: #fff;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.hero-buttons .btn-primary {
    padding: 15px 30px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
}

.phone-number i {
    color: #19c618;
    font-size: 1.25rem;
}

/* Industry Section */
.industry {
    padding: 80px 0;
    background-color: #fff;
}

.industry h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.industry-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.icon-item {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.icon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.icon-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.icon-item:hover i {
    transform: scale(1.1);
    color: var(--accent-green);
}

.icon-item p {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background-color: #fff;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.services-overview h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 2px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a4580 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.service-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.service-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.service-card-header h3 {
    color: #fff;
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.3;
}

.service-card-content {
    padding: 30px;
}

.service-card-content p {
    color: var(--medium-grey);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--medium-grey);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--accent-green);
    margin-right: 12px;
    font-size: 1rem;
}

.service-card-footer {
    padding: 0 30px 30px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-secondary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: #fff;
}

.btn-secondary:hover i {
    transform: translateX(5px);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--accent-green);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.service-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.service-list {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-list li {
    position: relative;
    padding-left: 25px;
    font-weight: 500;
    color: var(--primary-blue);
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-green);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.service-description {
    font-size: 1.1rem;
    color: var(--medium-grey);
    line-height: 1.7;
    margin-top: 30px;
}

.service-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-box {
    background-color: var(--light-grey);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-box i {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.service-box h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-box p {
    color: var(--medium-grey);
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    color: var(--accent-green);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: inline-block;
    position: relative;
}

.read-more::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

.deliver-box {
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
}

.deliver-box h6 {
    color: #fff;
    opacity: 0.9;
    margin-bottom: 15px;
}

.deliver-box h4 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.deliver-box .btn-primary {
    background-color: #fff;
    color: var(--primary-blue);
}

.deliver-box .btn-primary:hover {
    background-color: var(--accent-green);
    color: #fff;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.service-item img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    border-radius: 50%;
    background-color: #fff;
    padding: 15px;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-item h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.5rem;
}

/* Strong Suits Section */
.strong-suits {
    background-color: #fff;
    padding: 70px 0;
}

.features {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.feature {
    margin-bottom: 2rem;
}

.feature h5 {
    color: #1c3265;
    margin-bottom: 1rem;
}

/* Business Need Section */
.business-need {
    background-color: #f8f9fa;
    padding: 70px 0;
}

.business-need .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.content-col {
    width: 60%;
}

.image-col {
    width: 35%;
    position: relative;
}

.image-col img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.side-icons {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-icon {
    width: 40px;
    height: 40px;
}

.benefits {
    margin-top: 2rem;
}

.benefit {
    margin-bottom: 2rem;
}

.benefit h6 {
    color: #1c3265;
    margin-bottom: 0.5rem;
}

/* Services We Provide Section */
.services-we-provide {
    background-color: #1c3265;
    color: #fff;
    padding: 70px 0;
    background-image: url('https://www.goldkeylicensing.net/wp-content/uploads/2020/10/pattern-v.png');
    background-repeat: no-repeat;
    background-position: right center;
}

.services-we-provide h2,
.services-we-provide h3,
.services-we-provide h6 {
    color: #fff;
}

.services-we-provide h6 {
    color: #19c618;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    margin: 3rem 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
}

.service-item img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    border-radius: 50%;
    background-color: #fff;
    padding: 15px;
}

.service-item h3 {
    margin-bottom: 15px;
    color: #fff;
}

.service-item p {
    color: rgba(255, 255, 255, 0.8);
}

.support-banner {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    background-color: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 5px;
}

.banner-item {
    font-weight: 600;
    text-align: center;
    color: #fff;
}

.support-text {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials Section */
.testimonials {
    background-color: #fff;
    padding: 70px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials h6 {
    text-align: center;
    display: block;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    max-width: 300px;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: #1c3265;
    margin-right: 20px;
    line-height: 1;
}

.rating-stars {
    display: flex;
    flex-direction: column;
}

.rating-score {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1c3265;
}

.stars {
    color: #e39f41;
    font-size: 1.5rem;
    margin: 5px 0;
}

.rating-count {
    font-size: 0.9rem;
    color: #5f6576;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: #f8f9fa;
        padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    top: -30px;
    left: 25px;
    border: 4px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.testimonial-item p {
    font-style: italic;
    margin: 20px 0 15px;
    color: #5f6576;
    line-height: 1.7;
}

.rating-mini {
    color: #e39f41;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.rating-mini:after {
    content: "★★★★★";
    margin-left: 5px;
    color: #e39f41;
    font-size: 0.9rem;
}

.author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 15px;
    margin-top: 15px;
}

.name {
    font-weight: 700;
    color: #1c3265;
}

.position {
    font-size: 0.9rem;
    color: #5f6576;
}

/* Business IT Section */
.business-it {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.business-it h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1c3265;
}

/* Quote Section */
.quote {
    background-color: #1c3265;
    color: #fff;
    padding: 70px 0;
}

.quote h3,
.quote h6 {
    color: #fff;
    text-align: center;
}

.quote h6 {
    color: #19c618;
}

.quote-form {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
}

.form-group textarea {
    height: 150px;
}

/* FAQ Section */
.faq {
    background-color: #fff;
    padding: 70px 0;
}

.faq h2,
.faq > h5 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    margin-top: 0.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.faq-item h5 {
    text-align: left;
    cursor: pointer;
    position: relative;
    padding: 15px 30px 15px 0;
    color: #1c3265;
    font-weight: 600;
    margin: 0;
    --faq-icon: "+";
}

.faq-item h5::after {
    content: var(--faq-icon, "+");
    position: absolute;
    right: 0;
    top: 15px;
    font-size: 1.5rem;
    color: #19c618;
}

.faq-item h5.active {
    color: #19c618;
}

.faq-answer {
    display: none;
    margin: 0 0 15px 0;
    padding-right: 30px;
}

/* Join Community Section */
.join-community {
    background-color: #f8f9fa;
    padding: 50px 0;
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    border-radius: 0 5px 5px 0;
}

/* Footer */
footer {
    background-color: #1c3265;
    color: #fff;
    padding: 70px 0 20px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-column {
    width: 30%;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-column a {
    color: #fff;
}

.footer-column a:hover {
    color: #19c618;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}

/* About Page Styles */
.about-hero {
    background-color: var(--primary-blue);
    color: #fff;
    text-align: left;
    padding: 140px 0 80px;
    margin-top: 80px;
}

.about-hero h1 {
    color: #fff;
}

.about-hero p {
    color: #fff;
    max-width: 800px;
    margin-top: 20px;
}

.about-content {
    padding: 70px 0;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-card {
    display: flex;
    background-color: #f4f4f8;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 50px;
}

.card-logo {
    width: 40%;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-logo img {
    max-width: 100%;
}

.card-info {
    width: 60%;
    padding: 30px;
}

.card-info h3 {
    color: #1c3265;
    margin-bottom: 10px;
}

.signature {
    margin-top: 20px;
}

.signature img {
    max-width: 150px;
}

.vision-section {
    display: flex;
    margin: 50px 0;
}

.vision-left {
    width: 30%;
    padding-right: 30px;
}

.vision-right {
    width: 70%;
}

.vision-right h4 {
    color: #1c3265;
    font-style: italic;
    margin-bottom: 20px;
}

.services-lists {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.services-column {
    width: 48%;
}

.services-column h5 {
    margin-bottom: 20px;
}

.services-column ul {
    list-style: none;
}

.services-column ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.services-column ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #19c618;
    font-size: 1.5rem;
}

/* Contact Page Styles */
.contact-hero {
    background-color: #1c3265;
    color: #fff;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero h1 {
    color: #fff;
}

.contact-hero p {
    color: #fff;
    max-width: 800px;
    margin-top: 20px;
}

.contact-content {
    padding: 70px 0;
}

.contact-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-left {
    width: 45%;
}

.contact-right {
    width: 45%;
}

.contact-divider {
    width: 60px;
    height: 4px;
    background-color: #19c618;
    margin: 20px 0;
}

.visit-link {
    display: inline-block;
    color: #19c618;
    font-weight: 600;
    margin-bottom: 10px;
}

.location-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    margin-right: 15px;
    color: #1c3265;
        font-size: 1.2rem;
    }

.map-container {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.view-map {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-form-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-box h4 {
    margin-bottom: 5px;
}

.schedule-btn {
    display: inline-block;
    color: #19c618;
    font-weight: 600;
    margin: 15px 0 25px;
    text-transform: uppercase;
}

.send-btn {
    background-color: #19c618;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background-color: #1c3265;
}

.it-support-team {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.team-divider {
    width: 60px;
    height: 4px;
    background-color: #19c618;
    margin: 20px 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .service-boxes,
    .features {
        grid-template-columns: 1fr;
    }

    .service-box {
        width: 100%;
        margin-bottom: 30px;
    }

    .content-col,
    .image-col {
        width: 100%;
    }

    .image-col {
        margin-top: 30px;
        text-align: center;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-card,
    .vision-section,
    .services-lists,
    .contact-columns {
        flex-direction: column;
    }

    .card-logo,
    .card-info,
    .vision-left,
    .vision-right,
    .services-column,
    .contact-left,
    .contact-right {
        width: 100%;
    }

    .vision-left {
        margin-bottom: 30px;
    }

    .services-column:first-child {
        margin-bottom: 30px;
    }

    .contact-right {
        margin-top: 50px;
    }

    .industry-icons {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 20px;
    }

    nav ul {
        justify-content: center;
    }

    .cta-button {
        margin-top: 20px;
    }

    .hero {
        padding: 160px 0 80px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .industry-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .icon-item {
        width: 25%;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: 5px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom p:last-child {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 140px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .hero-buttons .btn-primary {
        margin-bottom: 15px;
    }

    .icon-item {
        width: 33%;
    }

    .service-item {
        flex-direction: column;
    }

    .service-item img {
        margin-bottom: 20px;
    }

    .support-banner {
        flex-direction: column;
    }

    .banner-item {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .industry-icons {
        grid-template-columns: 1fr;
    }
    
    .icon-item {
        min-height: 140px;
    }
}

/* Services Page Specific Styles */
.services-hero {
    background-color: var(--primary-blue);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 0;
}

.services-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.services-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-hero .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

/* Footer Styles */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col {
    color: rgba(255, 255, 255, 0.9);
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--accent-green);
}

.footer-col p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Update Responsive Styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    main {
        padding-top: 60px;
    }

    .services-hero {
        padding: 60px 0;
    }

    .services-hero h1 {
        font-size: 2.2rem;
    }

    .services-hero p {
        font-size: 1.1rem;
    }

    .services-hero .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    main {
        padding-top: 50px;
    }

    .services-hero {
        padding: 40px 0;
    }

    .services-hero h1 {
        font-size: 1.8rem;
    }

    .services-hero p {
        font-size: 1rem;
    }
}

/* Education Page Styles */
.edu-hero {
    background: url('../images/education-hero.webp') no-repeat center center;
    background-size: cover;
    padding: 200px 0 120px;
    margin-top: 0;
}

.edu-hero .hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.edu-hero h1 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
}

.edu-hero p {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.edu-services {
    background-color: #fff;
    padding: 80px 0;
}

.edu-services .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.edu-services .service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.edu-services .service-card:hover {
    transform: translateY(-5px);
}

.edu-services .service-card i {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}

.core-services {
    background-color: var(--light-grey);
    padding: 80px 0;
}

.core-services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.service-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-column {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-column h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-column ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-column ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 1rem;
    color: var(--medium-grey);
}

.service-column ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-green);
    position: absolute;
    left: 0;
}

.why-choose-us {
    background: #fff;
    padding: 80px 0;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
}

.feature i {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}

.feature h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature p {
    color: var(--medium-grey);
}

.cta-section {
    background: linear-gradient(rgba(28, 50, 101, 0.95), rgba(28, 50, 101, 0.95)), url('../images/edu-cta-bg.jpg') center/cover;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.cta-buttons .phone-number {
    color: #fff;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .edu-hero {
        padding: 160px 0 80px;
    }

    .edu-hero h1 {
        font-size: 2.5rem;
    }

    .edu-hero p {
        font-size: 1.1rem;
    }

    .edu-hero .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .edu-hero {
        padding: 140px 0 60px;
    }

    .edu-hero h1 {
        font-size: 2rem;
    }

    .edu-hero p {
        font-size: 1rem;
    }

    .edu-services .service-grid {
        grid-template-columns: 1fr;
    }
}

/* Solutions Portfolio Styles */
.solutions-portfolio {
    padding: 80px 0;
    background-color: #fff;
}

.solutions-portfolio h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
    display: block;
    width: 100%;
    max-width: 100%;
}

.solutions-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    font-size: 0.9rem;
}

.solutions-table th,
.solutions-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.solutions-table th {
    background-color: var(--primary-blue);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.solutions-table tr:last-child td {
    border-bottom: none;
}

.solutions-table td {
    vertical-align: top;
}

.solutions-table td strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.solutions-table td ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.solutions-table td ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--medium-grey);
}

.solutions-table td ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

.solutions-table tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

@media (max-width: 992px) {
    .solutions-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .solutions-table td {
        min-width: 200px;
    }
    
    .solutions-table td:first-child {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .solutions-table {
        font-size: 0.85rem;
    }
    
    .solutions-table td,
    .solutions-table th {
        padding: 10px;
    }
}

.edu-hero .btn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.edu-hero .btn-secondary:hover {
    background-color: #fff;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.edu-hero .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 2rem;
}

.edu-hero .hero-buttons .btn-primary,
.edu-hero .hero-buttons .btn-secondary {
    min-width: 200px;
    text-align: center;
}

@media (max-width: 576px) {
    .edu-hero .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .edu-hero .hero-buttons .btn-primary,
    .edu-hero .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Spreadsheet Section Styles */
.spreadsheet-section {
    padding: 80px 0;
    background-color: #fff;
}

.spreadsheet-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.error-message {
    text-align: center;
    color: #dc3545;
    padding: 2rem;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin: 1rem 0;
}

/* DataTables Custom Styling */
.table-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.search-box {
    flex: 1;
    max-width: 300px;
}

.search-box input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--accent-green);
    outline: none;
    box-shadow: 0 0 0 2px rgba(25, 198, 24, 0.2);
}

.export-buttons {
    display: flex;
    gap: 1rem;
}

.export-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    background-color: var(--primary-blue);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.export-buttons button:hover {
    background-color: var(--accent-green);
    transform: translateY(-2px);
}

/* DataTables Overrides */
.dataTables_wrapper {
    margin-top: 2rem;
}

table.dataTable {
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    width: 100% !important;
}

table.dataTable thead th {
    background-color: var(--primary-blue);
    color: #fff;
    font-weight: 600;
    padding: 15px;
    border-bottom: none;
}

table.dataTable tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

table.dataTable tbody tr:hover {
    background-color: rgba(25, 198, 24, 0.05) !important;
}

.dataTables_paginate {
    margin-top: 1rem !important;
}

.dataTables_paginate .paginate_button {
    padding: 0.5rem 1rem !important;
    margin: 0 2px !important;
    border: 1px solid #ddd !important;
    background: #fff !important;
    border-radius: 4px !important;
}

.dataTables_paginate .paginate_button:hover {
    background: var(--accent-green) !important;
    color: #fff !important;
    border-color: var(--accent-green) !important;
}

.dataTables_paginate .paginate_button.current {
    background: var(--primary-blue) !important;
    color: #fff !important;
    border-color: var(--primary-blue) !important;
}

.dataTables_info {
    margin-top: 1rem !important;
    color: var(--medium-grey);
}

@media (max-width: 768px) {
    .table-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .export-buttons {
        width: 100%;
    }
    
    .export-buttons button {
        flex: 1;
    }
    
    .dataTables_wrapper {
        overflow-x: auto;
    }
}

