* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* change */
header {
    background: linear-gradient(to right, #93c5fd, #1e3a8a);
    color: white;
    position: relative;
    padding: 5px 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	display: flex;
    flex-direction: column;
	gap: 18px;
}
/**change**/
.header-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
	padding-top: 8px;   /* space above logo/nav row */
    padding-bottom: 8px; /* space below logo/nav row */
	padding-right: 15px;
}

/**change**/
.logo {
    height: 70px;
    width: auto;
    flex-shrink: 0;
}
/**change**/
.logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
    line-height: 1;
}
/**change**/
.logo-title {
	font-size: 2.6rem;
    font-weight: 800;

    font-family: "Poppins", system-ui, sans-serif;

    color: #111827;

    letter-spacing: 0.3px;
    line-height: 1;
}
/**change**/
.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 600;
    color: white;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
    white-space: nowrap;
}


.call-us {
	position: absolute;
    top: 10px;
    right: 80px;
    font-style: italic;
    font-size: 0.95rem;
	padding-top: 10px;
	opacity: 0.7;
}

.signIn-btn {
    background: rgba(255,255,255,0.15);
    border: 2px solid white;
    border-radius: 25px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.signIn-btn:hover {
    background: white;
    color: #1e3a8a;
}

/**change**/
nav {
    margin-top: 20px;
    padding-top: 20px;
    flex: 1;
}
/**change**/
nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end; /* pushes nav to right */
    align-items: center;
    gap: 25px;
    flex-wrap: nowrap; /* keeps it horizontal */
}
/**change**/
nav ul li {
    white-space: nowrap;
}
/**change**/
nav ul li a {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    padding: 8px 5px; /* gives all tabs equal height */
}


/**CHANGE**/
nav a {
    color: white;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 500;          /* locks weight */
    padding: 8px 5px;          /* same on normal + hover */
    display: inline-flex;
    align-items: center;
    line-height: 1;
    transition: color 0.2s ease;
}

nav a:hover,
nav a.active {
    color: #050b1a;
}

main {
    flex: 1;
    text-align: center;
    padding: 60px 20px 60px 20px;
}


/* FOOTER BASE */
footer {
    background: linear-gradient(to right, #93c5fd, #1e3a8a);
    color: white;
    padding: 40px 70px;
}

/* 3-COLUMN LAYOUT */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* LEFT NAV */
.footer-left h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-left ul {
    list-style: none;
    padding: 0;
}

.footer-left ul li {
    margin-bottom: 8px;
}

.footer-left ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s ease;
}

.footer-left ul li a:hover {
    opacity: 1;
    color: #475569;
}

/* CENTER */
.footer-center {
    text-align: center;
    flex: 1;
    font-size: 14px;
    opacity: 0.9;
	padding-left: 120px;
}

.footer-center p {
    margin: 5px 0;
}

/* RIGHT SIDE */
.footer-right {
    text-align: right;
    font-size: 14px;
    opacity: 0.85;
    max-width: 220px;
}

/* BACK TO TOP BUTTON */
.back-to-top {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: #93c5fd;
    text-decoration: none;
    transition: 0.2s ease;
}

.back-to-top:hover {
    color: white;
    text-decoration: underline;
}

.service-section {
	transition: .3s ease;
    display: flex;
    gap: 60px;
    align-items: center;

    background: #f8fafc;

    border-radius: 18px;

    padding: 50px;

    margin: 60px auto;

    box-shadow: 0 8px 24px rgba(0,0,0,.06);

    max-width: 1400px;
}
.service-section:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(30,58,138,.12);
}

.service-image {
    flex: 1.2;
}

.service-content {
    flex: 1;
}

.service-image img {
    width: 100%;
    max-width: 600px;
    object-fit: cover;
    border-radius: 14px;
	transition: transform .3s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
	padding: 8px;
	aspect-ratio: 16/10;
    background: white;
	 border: 4px solid #dbeafe;
}


.service-image img:hover {
    transform: scale(1.03);
}

.service-content h2 {
    position: relative;
    padding-top: 22px;
    margin-bottom: 15px;
    color: #0f172a;
    font-size: 30px;
}

.service-content h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 5px;
    border-radius: 4px;
    background: linear-gradient(to right, #93c5fd, #1e3a8a);
}

.service-content h2::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 70px;
    height: 3px;
    border-radius: 3px;
    background: #3b82f6;
}

.service-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #475569;
}

.service-content li::before {
    content: "▸";
    color: #3b82f6;
    position: absolute;
    left: 0;
}

@media (max-width: 900px) {

	.service-section {
		flex-direction: column;
	}

}

.cta-section {
    margin-top: 100px;

    background: linear-gradient(
        135deg,
        #eff6ff,
        #dbeafe
    );

    color: #0f172a;

    text-align: center;

    padding: 70px 40px;

    border-radius: 20px;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #0f172a;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    color: #475569;
}

.cta-btn {
    display: inline-block;

    background: linear-gradient(to right, #93c5fd, #1e3a8a);

    color: white;

    text-decoration: none;

    font-weight: 600;

    padding: 14px 28px;

    border-radius: 8px;

    transition: .3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
}


.blue-section {
    background: linear-gradient(to right, #93c5fd, #1e3a8a);
}

.blue-section h2,
.blue-section p,
.blue-section li {
    color: white;
}

.blue-section li::before {
    color: white;
}

.blue-section h2::before {
    background: rgba(255,255,255,.95);
}

.blue-section h2::after {
    background: rgba(255,255,255,.75);
}
.blue-section .accordion-btn {
    color: #0f172a;
}

.blue-section .accordion-content p {
    color: #475569;
}

.blue-section .accordion-content {
    background: white;
}

.blue-section .service-image img {
    background: rgba(255,255,255,.15);
	border: 4px solid rgba(255,255,255,.3);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    background: white;
    width: 320px;

    list-style: none;
    padding: 10px 0;
    margin: 0;

    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);

    z-index: 1000;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;

    color: #1e3a8a;
    text-decoration: none;
    font-size: 14px;
	white-space: normal;
}

.dropdown-menu li a:hover {
    background: #eff6ff;
    color: #1e3a8a;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.value-card {
	max-width: 1310px;
    margin: 10px auto 0 auto;
    padding: 20px 40px 40px 40px;
    background: linear-gradient(
        135deg,
        #eff6ff,
        #dbeafe
    );
    border-radius: 14px;
    border-left: 5px solid #3b82f6;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.value-card h1 {
    margin-bottom: 12px; /* was 18px+ */
    font-size: 30px;
	color: #1e3a8a;
	margin-top: 15px;
}

/* remove the blue lines */
.value-card h1::before,
.value-card h1::after {
    display: none;
}
.value-card p {
	color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.nav-arrow {
    display: inline-block;
    width: 7px;
    height: 7px;

    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;

    transform: rotate(45deg);

    margin-left: 6px;
    margin-bottom: 4.5px;

    transition: transform 0.3s ease, color 0.3s ease;
}

.dropdown:hover .nav-arrow {
    transform: rotate(-135deg);
}

.accordion {
    margin-top: 25px;
}


.accordion-btn {
    width: 100%;
    background: white;
    border: 1px solid #dbeafe;
    padding: 16px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;

    border-radius: 8px;
    margin-bottom: 0; /* changed */
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;

    background: white;

    border-left: 1px solid #dbeafe;
    border-right: 1px solid #dbeafe;
    border-bottom: 1px solid #dbeafe;

    border-radius: 0 0 8px 8px;

    margin-bottom: 8px; /* space after expanded content */
}

.accordion-content p {
    padding: 15px 20px;
    margin: 0;
}


.service-header-image {
    background:
        linear-gradient(
            rgba(15, 23, 42, 0.65),
            rgba(15, 23, 42, 0.65)
        ),
        url("../images/networking.jpg");

    background-size: cover;
    background-position: center;

    padding: 60px 40px;
    border-radius: 14px;

    margin-bottom: 25px;

    text-align: left;
}

.service-header-image h2 {
    color: white;
    margin-bottom: 20px;
}

.service-header-image p {
    color: white;
    max-width: 900px;
    margin-bottom: 0;
}

/* make title lines white */
.service-header-image h2::before {
    background: white;
}

.service-header-image h2::after {
    background: rgba(255,255,255,0.7);
}


.benefits-section {
    margin-top: 40px;
    padding-top: 30px;
    padding-bottom: 40px;
    border-top: 4px solid #3b82f6;
}

.benefits-section h3 {
    color: #1e3a8a;
    margin-bottom: 22px;
    font-size: 1.4rem;
}

.benefit-items {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 40px;
    line-height: 2;
	justify-content: center;
}

.benefit-items span {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
}

.commitment-section {
    margin-top: 15px;
    padding-top: 30px;
    border-top: 2px solid #dbeafe;
}

.commitment-section h3 {
    color: #1e3a8a;
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.commitment-section p {
    color: #475569;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.software-header {
    background:
        linear-gradient(
            rgba(15, 23, 42, 0.65),
            rgba(15, 23, 42, 0.65)
        ),
        url("../images/software.jpg");

    background-size: cover;
    background-position: center;
}

.consulting-header {
    background:
        linear-gradient(
            rgba(15, 23, 42, 0.65),
            rgba(15, 23, 42, 0.65)
        ),
        url("../images/consulting.jpg");

    background-size: cover;
    background-position: center;
}

.security-header {
    background:
        linear-gradient(
            rgba(15, 23, 42, 0.65),
            rgba(15, 23, 42, 0.65)
        ),
        url("../images/security.jpg");

    background-size: cover;
    background-position: center;
}

.maintenance-header {
	background:
        linear-gradient(
            rgba(15, 23, 42, 0.65),
            rgba(15, 23, 42, 0.65)
        ),
        url("../images/maintenance.jpg");

    background-size: cover;
    background-position: center;
}

.quick-links {
    max-width: 1310px;
    margin: 20px auto 40px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.quick-links a {
    background: white;
    border: 1px solid #dbeafe;
    color: #1e3a8a;
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.25s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.quick-links a:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
}

/* =========================
   RESPONSIVE OVERRIDES
   ========================= */
@media (max-width: 1350px) {
	.nav-arrow {
        display: none;
    }
	
    header {
        padding: 10px 30px;
    }
	.logo {
		padding-left: 20px;
	}

    nav ul {
        gap: 15px;
    }

    nav a {
        font-size: 0.85rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-right {
        text-align: center;
    }

    .content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-center {
        padding-left: 0;
    }
	nav ul li:nth-child(4) {
		margin-right: 15px; 
	}
}
	
	
	
	
/* tablets + small laptops */
@media (max-width: 1024px) {
	
	.nav-arrow {
        display: none;
    }
	
    header {
        padding: 10px 30px;
    }
	.logo {
		padding-left: 20px;
	}

    nav ul {
        gap: 15px;
    }

    nav a {
        font-size: 0.85rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-right {
        text-align: center;
    }

    .content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-center {
        padding-left: 0;
    }

}

    /* tablets */
@media (max-width: 768px) {

    header {
        padding: 15px;
    }
	
	.hero-left {
        text-align: center;
    }

    .hero-btn,
    .hero-link {
        display: block;
        margin: 12px auto 0 auto;
        width: fit-content;
    }
	.nav-arrow {
        display: none;
    }

    .call-us {
        top: 10px;
        right: 15px;
        font-size: 0.75rem;
		white-space: nowrap;
    }

    nav ul {
        justify-content: center;
        gap: 12px;
    }

    nav a {
        font-size: 0.85rem;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .hero-left p {
        font-size: 14px;
    }

    .services-showcase {
        flex-direction: column;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-points {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
        padding-left: 0;
        max-width: none;
        width: 100%;
    }

    .footer-left ul {
        padding: 0;
    }

    .footer-left ul li {
        text-align: center;
    }
	
}

@media (max-width: 1100px) {

    header {
        position: relative;
        padding: 15px 20px;
    }
	.services-showcase {
        flex-direction: column;
    }

    .call-us {
        position: absolute;
        top: 3px;
        right: 12px;
        margin: 0;
        text-align: right;
        font-size: 0.85rem;
		white-space: nowrap;
    }

    /* logo + text stay together */
    .header-brand {
		padding-top: 40px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }

    .logo {
        height: 60px;
        padding-left: 0;
    }
	
	.logo-title {
        font-size: 2.2rem; 
    }

    .logo-subtitle {
        font-size: 0.8rem; 
    }

    .logo-text {
        text-align: left;
    }

    /* FORCE NAV TO NEXT LINE */
    nav {
        flex-basis: 100%;
        width: 100%;
        margin-top: 15px;
		padding-top: 0;
    }
	
	.nav-arrow {
        display: none;
    }

    nav ul {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;   /* DON'T WRAP */
        gap: 10px;
    }

    nav a {
        font-size: 0.75rem;
    }

    nav ul li:nth-child(3),
    nav ul li:nth-child(4) {
        margin-right: 0 !important;
    }
	.footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
        padding-left: 0;
        max-width: none;
        width: 100%;
    }

    .footer-left ul {
        padding: 0;
    }

    .footer-left ul li {
        text-align: center;
    }
	.dropdown-menu {
		display: none !important;
	}
}

@media (max-width: 480px) {

    .call-us {
        position: absolute;
        top: 3px;
        right: 12px;
        margin: 0;
        text-align: right;
        font-size: 0.7rem;
		white-space: nowrap;
    }

    .logo-title {
        font-size: 1.9rem;
    }

    .logo-subtitle {
        font-size: 0.70rem;
    }

   

    nav a {
        font-size: 0.75rem;
    }

    .nav-arrow {
        display: none;
    }

	.footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
        padding-left: 0;
        max-width: none;
        width: 100%;
    }

    .footer-left ul {
        padding: 0;
    }

    .footer-left ul li {
        text-align: center;
    }
	.services-showcase {
        flex-direction: column;
    }
	nav ul {
        display: grid !important;
        grid-template-columns: repeat(4, auto);
        justify-content: center;
        gap: 8px 12px;
		flex-wrap: wrap;   /* IMPORTANT FIX */
    }
	
	nav ul li {
		text-align: center;
	}

    nav ul li:nth-child(5) {
        grid-column: 2;
        grid-row: 2;
    }
	.dropdown-menu {
		display: none !important;
	}

    nav ul li:nth-child(6) {
        grid-column: 3;
        grid-row: 2;
    }
	
	
}