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

body {
  font-family: Arial, sans-serif;
  background: #02153b;
  color: white;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-area img {
  width: 88px;
  max-width: 90vw;
}

.logo-area h1 {
  font-size: 42px;
  background: linear-gradient(to right, #ffffff, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-area span {
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
}
.social-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-links a {
    width: 22px;
    height: 22px;
    opacity: 0.8;
    transition: 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.social-links img {
    width: 100%;
    filter: brightness(0) invert(1);
}
nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

nav a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

nav a:hover {
  color: #38bdf8;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #03112e;
  padding: 15px;
  min-width: 250px;
  display: none;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 12px 0;
}

.primary-btn,
.secondary-btn {
  padding: 18px 35px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
}

.primary-btn {
  background: linear-gradient(to right, #0ea5e9, #1d4ed8);
  color: white;
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
}

.services-strip {
  padding: 100px 0;
}

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

.service-card,
.stat-card,
.project-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 35px;
  backdrop-filter: blur(10px);
}

/* ABOUT SECTION */

.about-section {

    position: relative;

    overflow: hidden;

    padding: 140px 0;

    background: #02153b;

}

/* BACKGROUND IMAGE */

.about-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image: url('images/testing-desk.jpg');

    background-size: cover;

    background-position: center;

    opacity: 0.99;

    transform: scale(1.05);

    filter:
        brightness(0.5)
        contrast(1.1);

}

/* DARK OVERLAY */

.about-section::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        180deg,
        rgba(2,21,59,0.96) 0%,
        rgba(2,21,59,0.90) 50%,
        rgba(2,21,59,0.96) 100%
    );

}

/* CONTENT ABOVE BACKGROUND */

.about-section .container {

    position: relative;

    z-index: 5;

}

.projects-section,
.contact-section {

    padding: 120px 0;

}

.about-section h2,
.projects-section h2,
.contact-section h2 {

    font-size: 52px;

    margin-bottom: 30px;

}

.about-section p {

    max-width: 900px;

    color: #d1d5db;

    font-size: 18px;

}
/* ABOUT SECTION */

.about-heading {
    margin-bottom: 70px;
}

.about-heading h2 {
    max-width: 1100px;
}

.about-heading p {
    max-width: 900px;
    margin-top: 30px;
}

/* GRID */

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
}

/* LEFT */

.about-content {
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 28px;

    padding: 50px;
}

.about-content h3 {
    font-size: 36px;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 19px;
    line-height: 1.9;
    color: #d6dceb;

    margin-bottom: 25px;
}

/* RIGHT PANEL */

.accreditation-panel {
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 28px;

    padding: 50px;
}

.accreditation-panel h3 {
    font-size: 32px;
    margin-bottom: 35px;
}

/* ACCREDITATION GRID */

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

/* ITEM */

.accreditation-item {
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 16px;

    padding: 20px;

    text-align: center;

    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.3s ease;
}

.accreditation-item:hover {
    border-color: rgba(255,255,255,0.25);

    transform: translateY(-3px);
}

/* MOBILE */

@media(max-width: 1000px){

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

}
@media(max-width:900px){

    .social-links{
        display:none;
    }

}

@media(max-width: 768px){

    .about-content,
    .accreditation-panel{
        padding:35px;
    }

    .about-content h3{
        font-size:28px;
    }

}

.stats-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
}

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

.project-card img {
  width: 100%;
  border-radius: 15px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
}

input,
textarea {
  padding: 18px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: white;
}

textarea {
  min-height: 180px;
}

form button {
  background: linear-gradient(to right, #0ea5e9, #1d4ed8);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
}

footer {
  background: #010b1f;
  padding: 60px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 25px;

    max-width: 420px;

    background: rgba(3,17,46,0.96);

    padding: 24px;

    border-radius: 18px;

    z-index: 99999;

    border: 1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(14px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35);
}

.cookie-banner p {
    color: #d6dceb;
    line-height: 1.6;
    margin-bottom: 18px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-buttons button {
    border: none;
    padding: 12px 20px;
    border-radius: 10px;

    cursor: pointer;

    font-weight: 700;

    transition: 0.3s ease;
}

#acceptCookies {
    background: linear-gradient(
        to right,
        #1877ff,
        #114db2
    );

    color: white;
}

.decline-btn {
    background: rgba(255,255,255,0.08);

    color: white;

    border: 1px solid rgba(255,255,255,0.12);
}

.cookie-buttons button:hover {
    transform: translateY(-2px);
}


/* HERO SECTION */
/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #03112e;
    display: flex;
    align-items: center;
}

/* BACKGROUND IMAGE */

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 72%;
    height: 100%;

    background-image: url('images/hero-electrical.png');
    background-size: cover;
    background-position: center;

    opacity: 0.42;

    mask-image: linear-gradient(
        to left,
        black 60%,
        transparent 100%
    );

    -webkit-mask-image: linear-gradient(
        to left,
        black 60%,
        transparent 100%
    );
}

/* OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        90deg,
        rgba(1,8,28,0.98) 0%,
        rgba(1,8,28,0.92) 42%,
        rgba(1,8,28,0.55) 100%
    );
}

/* CONTAINER */

.hero-container {
    position: relative;
    z-index: 5;

    width: 90%;
    max-width: 1450px;

    margin: auto;

    padding-top: 220px;
    padding-bottom: 120px;
}

/* LEFT SIDE */

.hero-left {
    max-width: 760px;
}

/* MAIN TITLE */

.hero h2 {
    font-size: 92px;
    line-height: 0.92;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 35px;
    letter-spacing: -2px;
}

.hero h2 span {
    color: #1677ff;
}

/* LINE */

.hero-line {
    width: 100px;
    height: 2px;
    background: white;
    margin-bottom: 35px;
}

/* DESCRIPTION */

.hero p {
    font-size: 22px;
    line-height: 1.8;
    color: #d6dceb;
    max-width: 650px;
    margin-bottom: 55px;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 22px;
    margin-bottom: 90px;
}

.primary-btn,
.secondary-btn {
    padding: 22px 42px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.primary-btn {
    background: linear-gradient(
        to right,
        #1877ff,
        #114db2
    );

    color: white;
}

.primary-btn:hover {
    transform: translateY(-3px);
}

.secondary-btn {
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.08);
}

/* SERVICE CARDS */

/* MOBILE */

@media(max-width: 1200px){

    .hero h2{
        font-size:68px;
    }

    .hero-services{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:900px) {

    nav ul {
        gap: 15px;
        font-size: 14px;
    }

    .about-section h2,
    .projects-section h2,
    .contact-section h2 {
        font-size: 38px;
    }

    .hero-bg{
        width:100%;
        opacity:0.2;
    }

    .hero h2{
        font-size:48px;
    }

    .hero p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
    }

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

}


/* SERVICES SECTION */

.services-strip {
    position: relative;

    padding: 140px 0;

    overflow: hidden;

    background: #031544;
}

/* BACKGROUND IMAGE */

.services-bg {
    position: absolute;
    inset: 0;

    background-image: url('images/services-bg.png');

    background-size: cover;
    background-position: center;

    opacity: 1;

    filter:
        brightness(0.7)
        contrast(1.15)
        saturate(0.9);

    transform: scale(1.05);
}

/* OVERLAY */

.services-overlay {
    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        180deg,
        rgba(3,21,68,0.96) 0%,
        rgba(3,21,68,0.88) 50%,
        rgba(3,21,68,0.96) 100%
    );
}

/* CONTENT */

.services-strip .container {
    position: relative;
    z-index: 5;
}

/* HEADING */

.services-heading {
    text-align: center;
    margin-bottom: 70px;
}

.services-line {
    width: 80px;
    height: 2px;
    background: #1d7fff;
    margin: 0 auto 30px auto;
}

.services-heading h2 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 25px;
}

.services-heading p {
    max-width: 760px;
    margin: auto;

    font-size: 22px;
    line-height: 1.8;

    color: #d6dceb;
}

/* GRID */

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

/* CARD */

.service-card {
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 28px;

    padding: 45px;

    text-decoration: none;

    transition: 0.35s ease;

    min-height: 280px;

    display: flex;
    align-items: center;
}

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

    border-color: rgba(255,255,255,0.3);

    background: rgba(255,255,255,0.06);
}

/* INNER LAYOUT */

.service-left {
    display: flex;
    align-items: flex-start;
    gap: 35px;
}

/* ICON */

.service-icon {
    width: 200px;
    height: 200px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* TEXT */

.service-text h3 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;

    color: white;
}

.service-text span {
    font-size: 20px;
    line-height: 1.8;

    color: #d6dceb;
}

/* MOBILE */

@media(max-width: 1100px){

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

}

@media(max-width: 768px){

    .services-heading h2{
        font-size:48px;
    }

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

    .service-text h3{
        font-size:30px;
    }

    .service-text span{
        font-size:18px;
    }

}
/* ACCREDITATIONS SECTION */

.accreditations-banner {
    position: relative;

    padding: 140px 0;

    overflow: hidden;

    background: #02153b;
}

/* BACKGROUND */

.accreditations-bg {
    position: absolute;
    inset: 0;

    background-image: url('images/services-bg.png');

    background-size: cover;
    background-position: center;

    opacity: 0.12;

    transform: scale(1.05);

    filter:
        brightness(0.6)
        contrast(1.1);
}

/* OVERLAY */

.accreditations-overlay {
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        180deg,
        rgba(2,21,59,0.96) 0%,
        rgba(2,21,59,0.88) 50%,
        rgba(2,21,59,0.96) 100%
    );
}

/* CONTENT */

.accreditations-banner .container {
    position: relative;
    z-index: 5;
}

/* HEADING */

.accreditations-heading {
    text-align: center;

    margin-bottom: 70px;
}

.accreditations-heading span {
    color: #38bdf8;

    letter-spacing: 3px;

    font-size: 14px;

    display: block;

    margin-bottom: 20px;
}

.accreditations-heading h2 {
    font-size: 72px;

    margin-bottom: 25px;

    font-weight: 800;
}

.accreditations-heading p {
    max-width: 850px;

    margin: auto;

    font-size: 22px;

    line-height: 1.8;

    color: #d6dceb;
}

/* IMAGE */

.accreditations-image {
    display: flex;
    justify-content: center;
}

.accreditations-image img {
    width: 100%;

    max-width: 1400px;

    border-radius: 28px;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.45);
}

/* MOBILE */

@media(max-width: 768px){

    .accreditations-heading h2{
        font-size:48px;
    }

    .accreditations-heading p{
        font-size:18px;
    }

}
/* SINGLE ABOUT LAYOUT */

.about-single {
    display: flex;
    justify-content: center;
}

/* CENTERED CONTENT */

.about-single .about-content {
    max-width: 1100px;
    width: 100%;

    text-align: center;
}
/* WARRANTY SECTION */

.warranty-section {
    position: relative;

    padding: 160px 0;

    overflow: hidden;

    background: #031544;
}

/* BACKGROUND */

.warranty-bg {
    position: absolute;
    inset: 0;

    background-image: url('images/services-bg.png');

    background-size: cover;
    background-position: center;

    opacity: 0.12;

    transform: scale(1.05);

    filter:
        brightness(0.55)
        contrast(1.1);
}

/* OVERLAY */

.warranty-overlay {
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        180deg,
        rgba(3,21,68,0.96) 0%,
        rgba(3,21,68,0.88) 50%,
        rgba(3,21,68,0.96) 100%
    );
}

/* CONTENT */

.warranty-section .container {
    position: relative;
    z-index: 5;
}

.warranty-content {
    max-width: 1000px;

    margin: auto;

    text-align: center;
}

/* LABEL */

.warranty-content span {
    color: #38bdf8;

    letter-spacing: 3px;

    font-size: 14px;

    display: block;

    margin-bottom: 20px;
}

/* TITLE */

.warranty-content h2 {
    font-size: 72px;

    line-height: 1.1;

    margin-bottom: 35px;

    font-weight: 800;
}

/* TEXT */

.warranty-content p {
    font-size: 22px;

    line-height: 1.9;

    color: #d6dceb;

    margin-bottom: 30px;
}

/* MOBILE */

@media(max-width:768px){

    .warranty-content h2{
        font-size:48px;
    }

    .warranty-content p{
        font-size:18px;
    }

}
/* SERVICES PAGE */

.services-hero {
    position: relative;
    padding: 240px 0 180px;
    overflow: hidden;
}

.services-hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
}

.services-hero-content span {
    color: #38bdf8;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
}

.services-hero h1 {
    font-size: 90px;
    margin-bottom: 30px;
    line-height: 1;
}

.services-hero p {
    font-size: 24px;
    line-height: 1.8;
    color: #d6dceb;
}

/* SERVICE SECTIONS */

.service-section {
    padding: 140px 0;
}

.dark-section {
    background: rgba(255,255,255,0.02);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.service-grid.reverse .service-content {
    order: 2;
}

.service-grid.reverse .service-images {
    order: 1;
}

/* CONTENT */

.service-content span {
    color: #38bdf8;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
}

.service-content h2 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 35px;
}

.service-content p {
    font-size: 20px;
    line-height: 1.9;
    color: #d6dceb;
    margin-bottom: 25px;
}

/* IMAGES */

.service-images {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.service-images img {
    width: 100%;
    height: 420px;
    object-fit: cover;

    border-radius: 24px;

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.35s ease;
}

.service-images img:hover {
    transform: translateY(-8px);
}

/* MOBILE */

@media(max-width: 1100px){

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

    .service-grid.reverse .service-content,
    .service-grid.reverse .service-images{
        order:unset;
    }

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

}

@media(max-width:768px){

    .services-hero h1{
        font-size:56px;
    }

    .service-content h2{
        font-size:42px;
    }

    .service-content p,
    .services-hero p{
        font-size:18px;
    }

}
/* FIX SERVICES HERO */

.services-hero {
    position: relative;
    overflow: hidden;
    padding: 240px 0 180px;
}

.services-hero .container {
    position: relative;
    z-index: 5;
}

.services-hero-content {
    max-width: 900px;
}

.services-hero .services-bg {
    z-index: 1;
}

.services-hero .services-overlay {
    z-index: 2;
}
/* MOBILE HEADER FIX */

@media(max-width: 900px){

    .nav-container{

        flex-direction: column;

        gap: 20px;

        padding: 15px 0;

    }

    nav{

        width: 100%;

    }

    nav ul{

        flex-wrap: wrap;

        justify-content: center;

        gap: 12px;

    }

    nav a{

        font-size: 14px;

    }

    .logo-area{

        justify-content: center;

        text-align: center;

    }

    .logo-area h1{

        font-size: 32px;

    }

}
.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-socials a {
    color: #d6dceb;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    color: #38bdf8;
}