/********** Template CSS **********/
:root {
    --primary: #FF5E14;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.topbar-right {
    position: relative;
    background: var(--primary);
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 75px;
    display: flex;
    align-items: center;
    background: var(--primary);
}

.navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
    background-color: var(--dark) !important;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 3.5rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}
/* =========================================================
   HEADER CAROUSEL - DESKTOP
   ========================================================= */

#header-carousel .carousel-item {
    position: relative;
    height: 520px;
}

#header-carousel .carousel-item img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}


/* Tablet */
@media (max-width: 991.98px) {

    #header-carousel .carousel-item {
        height: 450px;
    }

    #header-carousel .carousel-item img {
        height: 450px;
    }

}


/* Mobile */
@media (max-width: 768px) {

    #header-carousel .carousel-item {
        min-height: 450px;
        height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}


/*** Facts ***/
.facts {
    position: relative;
    margin: 6rem 0;
    background: var(--dark);
}

.facts .border {
    border-color: rgba(255, 255, 255, .1) !important;
}


/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    padding: 12px;
    width: 130px;
    height: 130px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .service-detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.service-item .service-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-title {
    top: -100%;
}

.service-item .service-text {
    position: absolute;
    overflow: hidden;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(2, 36, 91, .7);
    transition: .5s;
}

.service-item:hover .service-text {
    top: 0;
}

.service-item .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    transform: skewY(-12deg);
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-text::before {
    top: -55px;
}

.service-item .btn {
    position: absolute;
    width: 130px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Project ***/
.project-carousel {
    position: relative;
    background: var(--dark);
}

.project-item {
    position: relative;
    display: block;
}

.project-item img {
    transition: .5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px;
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    transition: .5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title  {
    bottom: -60px;
}

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--dark);
    transition: .5s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}


/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

/* =========================================================
   ABOUT HIGHLIGHTS
   ========================================================= */

.about-highlight-item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 28px;
}

.about-inline-icon {
    flex: 0 0 35px;
    width: 35px;
    margin-top: 4px;
    margin-right: 12px;
    color: var(--primary);
    font-size: 22px;
    line-height: 1.3;
}

.about-highlight-content {
    flex: 1;
    min-width: 0;
}

.about-highlight-content h4 {
    margin: 0 0 8px 0;
    padding: 0;
    color: var(--dark);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.about-highlight-content p {
    margin: 0;
    padding: 0;
    color: var(--secondary);
    font-size: 16px;
    line-height: 1.65;
}


/* Mobile */
@media (max-width: 767.98px) {

    .about-highlight-item {
        margin-bottom: 24px;
    }

    .about-inline-icon {
        flex: 0 0 30px;
        width: 30px;
        margin-right: 10px;
        font-size: 19px;
    }

    .about-highlight-content h4 {
        font-size: 19px;
    }

    .about-highlight-content p {
        font-size: 15px;
    }

}

/* =========================================================
   ADak Electricals - HERO CAROUSEL TEXT
   ========================================================= */

#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;

    background: linear-gradient(
        to right,
        rgba(2, 36, 91, 0.92) 0%,
        rgba(2, 36, 91, 0.65) 40%,
        rgba(2, 36, 91, 0) 75%
    );

    z-index: 2;
}


/* Text area */

#header-carousel .carousel-caption .container {
    width: 100%;
}

#header-carousel .carousel-caption .col-lg-8 {
    padding-left: 45px;
}


/* Small orange heading */

.hero-subtitle {
    color: #FF5E14 !important;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}


/* Main heading */

.hero-title {
    color: #FFFFFF !important;
    font-family: "Rubik", sans-serif;
    font-size: 52px;
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 18px;
    max-width: 850px;
}


/* Description */

.hero-description {
    color: #FFFFFF !important;
    font-size: 19px;
    line-height: 1.6;
    font-weight: 500;
    max-width: 780px;
    margin-bottom: 28px;
}


/* Button */

.hero-btn {
    padding: 14px 30px !important;
    font-size: 16px;
    font-weight: 600;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    #header-carousel .carousel-caption .col-lg-8 {
        padding-left: 30px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 17px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    #header-carousel .carousel-caption {
        background: linear-gradient(
            to right,
            rgba(2, 36, 91, 0.95) 0%,
            rgba(2, 36, 91, 0.75) 70%,
            rgba(2, 36, 91, 0.25) 100%
        );
    }

    #header-carousel .carousel-caption .col-lg-8 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .hero-btn {
        padding: 10px 20px !important;
        font-size: 14px;
    }

}

/* =========================================================
   FIX CAROUSEL ARROW BUTTONS
   ========================================================= */

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    z-index: 10 !important;
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    position: relative;
    z-index: 11;
}

/* =========================================================
   COMPANY DETAILS
   ========================================================= */

.company-details {
    background: #FFFFFF;
}

.company-detail-card {
    padding: 40px 32px;
    background: #FFFFFF;
    border: 1px solid #eeeeee;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
}

.company-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.10);
}

.company-detail-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: var(--primary);
    color: #FFFFFF;
    font-size: 25px;
}

.company-detail-card h4 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 23px;
}

.company-detail-card p {
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 0;
}


/* Company story box */

.company-story-box {
    padding: 45px;
    background: var(--dark);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.company-story-box::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    top: -80px;
    border: 35px solid rgba(255, 94, 20, 0.18);
    border-radius: 50%;
}

.company-story-box h3 {
    color: #FFFFFF;
    font-size: 30px;
    margin-bottom: 15px;
}

.company-story-box p {
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
}

.approach-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: var(--primary);
    color: #FFFFFF;
    text-align: left;
}

.approach-badge i {
    font-size: 32px;
}

.approach-badge strong {
    display: block;
    font-size: 18px;
}

.approach-badge span {
    display: block;
    font-size: 13px;
}


/* =========================================================
   DIRECTORS SECTION
   ========================================================= */

.directors-section {
    background: #ffffff;
    padding-top: 70px;
    padding-bottom: 80px;
}

/* Section heading */
.directors-section .text-center {
    margin-bottom: 45px !important;
}

.directors-section .text-center h2 {
    color: var(--dark);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.directors-section .text-center p.text-muted {
    color: #5F656F !important;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   DIRECTOR ROW
   ========================================================= */

.directors-section .row.g-4 {
    align-items: stretch;
}


/* =========================================================
   DIRECTOR CARD
   ========================================================= */

.director-card {
    height: 100%;
    display: flex;
    flex-direction: column;

    background: #ffffff;
    border: 1px solid #eeeeee;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);

    overflow: hidden;

    transition: all 0.35s ease;
}

.director-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   DIRECTOR PHOTO
   ========================================================= */

.director-image {
    position: relative;

    width: 100%;
    height: 390px;

    overflow: hidden;

    background: #f1f1f1;
}

.director-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    transition: transform 0.5s ease;
}

.director-card:hover .director-image img {
    transform: scale(1.04);
}


/* =========================================================
   DIRECTOR SOCIAL ICONS
   ========================================================= */

.director-social {
    position: absolute;

    left: 20px;
    bottom: 20px;

    display: flex;
    gap: 8px;

    z-index: 5;
}

.director-social a {
    width: 40px;
    height: 40px;

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

    background: var(--primary);
    color: #ffffff;

    text-decoration: none;

    border-radius: 50%;

    transition: all 0.3s ease;
}

.director-social a:hover {
    background: var(--dark);
    color: #ffffff;
    transform: translateY(-3px);
}


/* =========================================================
   DIRECTOR CONTENT
   ========================================================= */

.director-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 25px 28px 30px;

    background: #ffffff;
}

.director-role {
    display: block;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    margin-bottom: 6px;
}

.director-content h3 {
    color: var(--dark);

    font-size: 24px;
    font-weight: 700;

    line-height: 1.25;

    margin: 0 0 12px;
}

.director-content p {
    color: var(--secondary);

    font-size: 15px;
    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   DESKTOP - MAKE ALL THREE EXACTLY EQUAL
   ========================================================= */

@media (min-width: 992px) {

    .directors-section .col-lg-4 {
        display: flex;
    }

    .directors-section .director-card {
        width: 100%;
        min-height: 560px;
    }

    .directors-section .director-image {
        height: 390px;
        flex-shrink: 0;
    }

    .directors-section .director-content {
        min-height: 170px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .directors-section {
        padding-top: 55px;
        padding-bottom: 60px;
    }

    .directors-section .text-center h2 {
        font-size: 36px;
    }

    .director-image {
        height: 360px;
    }

    .director-content {
        padding: 24px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .directors-section {
        padding-top: 45px;
        padding-bottom: 50px;
    }

    .directors-section .text-center h2 {
        font-size: 30px;
    }

    .directors-section .text-center p.text-muted {
        font-size: 15px;
    }

    .director-image {
        height: 380px;
    }

    .director-content {
        padding: 22px 20px 25px;
    }

    .director-content h3 {
        font-size: 22px;
    }

    .director-content p {
        font-size: 14px;
    }
}

/* =========================================================
   CLIENT LOGOS
   ========================================================= */

.clients-section {
    background: #ffffff;
}


/* Intro text */

.clients-intro {
    color: var(--secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}


/* Client Card */

.client-logo-card {
    height: 190px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 25px 20px;

    transition: all 0.35s ease;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}


/* Hover */

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

    border-color: var(--primary);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
}


/* Logo area */

.client-logo {
    width: 150px;
    height: 95px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 15px;
}


/* Logo */

.client-logo img {
    max-width: 100%;
    max-height: 85px;

    width: auto;
    height: auto;

    object-fit: contain;

    transition: 0.35s ease;
}


/* Logo hover */

.client-logo-card:hover .client-logo img {
    transform: scale(1.06);
}


/* Client name */

.client-logo-card h5 {
    margin: 0;

    color: var(--dark);

    font-family: "Rubik", sans-serif;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.3;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .client-logo-card {
        height: 180px;
    }

    .client-logo {
        width: 140px;
        height: 85px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .clients-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .client-logo-card {
        height: 165px;
        padding: 20px 12px;
    }

    .client-logo {
        width: 120px;
        height: 75px;
        margin-bottom: 10px;
    }

    .client-logo img {
        max-height: 65px;
    }

    .client-logo-card h5 {
        font-size: 14px;
    }

    .clients-intro {
        font-size: 14px;
    }

}

/* =========================================================
   CONTACT FORM STATUS
   ========================================================= */

.contact-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-submit-spinner {
    display: none;
}

#contactSubmit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.contact-status {
    display: none;
    padding: 14px 18px;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 4px;
}

.contact-success,
.contact-error {
    display: block;
}

.contact-success {
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.contact-error {
    color: #721c24;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

/* =========================================================
   ADAK ELECTRICALS
   TEAM MEMBERS SECTION
   ========================================================= */

.team-section {
    padding: 85px 0 95px;
    background: #ffffff;
}

/* -------------------------
   Section Heading
   ------------------------- */

.team-heading {
    max-width: 720px;
    margin-bottom: 52px;
}

.team-kicker {
    margin: 0 0 12px;
    color: var(--primary) !important;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.team-heading h2 {
    margin: 0;
    color: var(--dark);
    font-family: "Rubik", sans-serif;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
}

.team-heading-line {
    width: 58px;
    height: 4px;
    margin: 18px auto;
    background: var(--primary);
    border-radius: 10px;
}

.team-intro {
    max-width: 650px;
    margin: 0 auto;
    color: var(--secondary);
    font-size: 16px;
    line-height: 1.75;
}


/* -------------------------
   Team Card
   ------------------------- */

.team-card {
    position: relative;
    height: 100%;
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 4px;

    box-shadow:
        0 8px 30px rgba(2, 36, 91, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

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

    border-color: rgba(255, 94, 20, 0.35);

    box-shadow:
        0 18px 45px rgba(2, 36, 91, 0.14);
}


/* -------------------------
   Photo
   ------------------------- */

.team-photo {
    position: relative;

    width: 100%;
    height: 390px;

    overflow: hidden;

    background: #f3f4f6;
}

.team-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    transition: transform 0.6s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.04);
}


/* -------------------------
   Photo Bottom Overlay
   ------------------------- */

.team-photo::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 75px;

    background:
        linear-gradient(
            to top,
            rgba(2, 36, 91, 0.40),
            rgba(2, 36, 91, 0)
        );

    pointer-events: none;
}


/* -------------------------
   Email Icon
   ------------------------- */

.team-photo-overlay {
    position: absolute;

    right: 18px;
    bottom: 18px;

    z-index: 5;

    opacity: 0;

    transform: translateY(10px);

    transition: all 0.3s ease;
}

.team-card:hover .team-photo-overlay {
    opacity: 1;
    transform: translateY(0);
}

.team-photo-overlay a {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--primary);

    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.18);

    transition: all 0.3s ease;
}

.team-photo-overlay a:hover {
    background: var(--dark);

    color: #ffffff;

    transform: translateY(-3px);
}


/* -------------------------
   Name + Designation
   ------------------------- */

.team-info {
    position: relative;

    padding: 25px 25px 27px;

    background: #ffffff;

    text-align: center;
}

.team-role {
    display: block;

    margin-bottom: 7px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.4px;

    line-height: 1.3;
}

.team-info h3 {
    margin: 0;

    color: var(--dark);

    font-family: "Rubik", sans-serif;

    font-size: 23px;

    font-weight: 700;

    line-height: 1.3;
}


/* -------------------------
   Orange Accent
   ------------------------- */

.team-accent {
    width: 40px;
    height: 3px;

    margin: 17px auto 0;

    background: var(--primary);

    border-radius: 10px;

    transition: width 0.35s ease;
}

.team-card:hover .team-accent {
    width: 70px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .team-section {
        padding: 70px 0 75px;
    }

    .team-heading h2 {
        font-size: 38px;
    }

    .team-photo {
        height: 370px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .team-section {
        padding: 55px 0 60px;
    }

    .team-heading {
        margin-bottom: 35px;
    }

    .team-heading h2 {
        font-size: 31px;
    }

    .team-kicker {
        font-size: 13px;
        letter-spacing: 1.3px;
    }

    .team-intro {
        font-size: 14px;
        line-height: 1.65;
    }

    .team-photo {
        height: 390px;
    }

    .team-info {
        padding: 22px 20px 25px;
    }

    .team-info h3 {
        font-size: 21px;
    }

    /* Show email button on mobile */
    .team-photo-overlay {
        opacity: 1;
        transform: none;
    }

}

/* =========================================================
   WHY ADAK ELECTRICALS
   ========================================================= */

.why-adak-section {
    padding: 90px 0;
    background: #ffffff;
}


/* --------------------------------
   IMAGE
   -------------------------------- */

.why-adak-image {
    position: relative;
    margin-right: 25px;
    overflow: visible;
}

.why-adak-image > img {
    display: block;
    width: 100%;
    height: 570px;
    object-fit: cover;
    object-position: center;
}


/* Orange corner decoration */

.why-adak-corner {
    position: absolute;
    left: -12px;
    bottom: -12px;

    width: 120px;
    height: 120px;

    background: var(--primary);

    z-index: -1;
}


/* --------------------------------
   EXPERIENCE BOX
   -------------------------------- */

.why-adak-experience {
    position: absolute;

    right: -35px;
    bottom: 35px;

    width: 155px;
    height: 155px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: var(--primary);

    color: #ffffff;

    text-align: center;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);
}

.why-adak-number {
    display: block;

    color: #ffffff;

    font-family: "Rubik", sans-serif;

    font-size: 48px;
    font-weight: 700;

    line-height: 1;
}

.why-adak-years {
    display: block;

    margin-top: 8px;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.35;
}


/* --------------------------------
   KICKER
   -------------------------------- */

.why-adak-kicker {
    margin-bottom: 12px;

    color: var(--primary);

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* --------------------------------
   MAIN HEADING
   -------------------------------- */

.why-adak-title {
    margin-bottom: 22px;

    color: var(--dark);

    font-family: "Rubik", sans-serif;

    font-size: 44px;

    line-height: 1.18;

    font-weight: 700;
}

.why-adak-title span {
    color: var(--dark);
}


/* --------------------------------
   INTRO
   -------------------------------- */

.why-adak-intro {
    margin-bottom: 30px;

    color: var(--secondary);

    font-size: 16px;

    line-height: 1.75;
}


/* --------------------------------
   INDIVIDUAL POINT
   -------------------------------- */

.why-adak-item {
    display: flex;

    align-items: flex-start;

    margin-bottom: 25px;
}

.why-adak-icon {
    flex: 0 0 55px;

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-right: 18px;

    background: var(--primary);

    color: #ffffff;

    border-radius: 50%;

    font-size: 19px;

    box-shadow:
        0 8px 20px rgba(255, 94, 20, 0.20);
}

.why-adak-content {
    flex: 1;
}

.why-adak-content h4 {
    margin: 0 0 6px;

    color: var(--dark);

    font-family: "Rubik", sans-serif;

    font-size: 21px;

    font-weight: 700;

    line-height: 1.3;
}

.why-adak-content p {
    margin: 0;

    color: var(--secondary);

    font-size: 15px;

    line-height: 1.6;
}


/* --------------------------------
   BOTTOM BADGE
   -------------------------------- */

.why-adak-badge {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 28px;

    padding: 15px 20px;

    background: #f5f7fa;

    border-left: 4px solid var(--primary);
}

.why-adak-badge > i {
    color: var(--primary);

    font-size: 27px;
}

.why-adak-badge strong {
    display: block;

    color: var(--dark);

    font-size: 15px;

    font-weight: 700;
}

.why-adak-badge span {
    display: block;

    margin-top: 3px;

    color: var(--secondary);

    font-size: 13px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .why-adak-section {
        padding: 70px 0;
    }

    .why-adak-image {
        margin-right: 0;
        margin-bottom: 25px;
    }

    .why-adak-image > img {
        height: 500px;
    }

    .why-adak-title {
        font-size: 38px;
    }

    .why-adak-experience {
        right: 25px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .why-adak-section {
        padding: 55px 0;
    }

    .why-adak-image {
        margin-right: 0;
    }

    .why-adak-image > img {
        height: 400px;
    }

    .why-adak-experience {
        width: 125px;
        height: 125px;

        right: 15px;
        bottom: 20px;
    }

    .why-adak-number {
        font-size: 38px;
    }

    .why-adak-years {
        font-size: 13px;
    }

    .why-adak-title {
        font-size: 31px;
    }

    .why-adak-intro {
        font-size: 15px;
    }

    .why-adak-item {
        margin-bottom: 22px;
    }

    .why-adak-icon {
        flex: 0 0 48px;

        width: 48px;
        height: 48px;

        margin-right: 14px;

        font-size: 17px;
    }

    .why-adak-content h4 {
        font-size: 18px;
    }

    .why-adak-content p {
        font-size: 14px;
    }

    .why-adak-corner {
        width: 80px;
        height: 80px;
    }

}

/* =========================================================
   COMPANY LOGO + NAME
   ========================================================= */

.company-brand {
    display: flex !important;
    align-items: center;
    gap: 14px;
    height: 75px;
    padding-left: 30px !important;
    padding-right: 55px !important;
    text-decoration: none;
    white-space: nowrap;
}

/* Company Logo */
.company-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;

    /* Makes the logo clearly visible on navy */
    background: #ffffff;
    border-radius: 50%;
    padding: 3px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
/* Company Name */
.company-name {
    color: #ffffff;
    font-family: "Rubik", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    position: relative;
    z-index: 2;
}

/* Make sure the orange brand area remains behind logo + name */
.navbar .company-brand {
    background: var(--dark) !important;
}

/* Desktop */
@media (min-width: 1200px) {
    .company-logo {
        width: 52px;
        height: 52px;
    }

    .company-name {
        font-size: 31px;
    }
}

/* Tablet */
@media (max-width: 1199.98px) {

    .company-brand {
        padding-left: 20px !important;
        gap: 10px;
    }

    .company-logo {
        width: 42px;
        height: 42px;
    }

    .company-name {
        font-size: 25px;
    }
}

/* Mobile */
@media (max-width: 991.98px) {

    .company-brand {
        height: 65px;
        padding-left: 15px !important;
        padding-right: 20px !important;
        gap: 8px;
    }

    .company-logo {
        width: 38px;
        height: 38px;
    }

    .company-name {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {

    .company-name {
        font-size: 17px;
    }

    .company-logo {
        width: 34px;
        height: 34px;
    }

    .company-brand {
        gap: 7px;
    }
}

/* =========================================================
   ADAK ELECTRICALS
   WORKSHOP CAPABILITIES PAGE
   ========================================================= */

.workshop-page-header {
    position: relative;
    min-height: 330px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(2, 36, 91, 0.96) 0%,
            rgba(2, 36, 91, 0.78) 45%,
            rgba(2, 36, 91, 0.25) 100%
        ),
        url("../img/workshop-header.jpg") center center / cover no-repeat;
}

.workshop-header-content {
    max-width: 850px;
    padding: 55px 0;
}

.workshop-header-content > span {
    display: block;
    margin-bottom: 10px;

    color: #FF5E14;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.workshop-header-content h1 {
    margin-bottom: 18px;

    color: #FFFFFF;
    font-family: "Rubik", sans-serif;
    font-size: 52px;
    font-weight: 700;
}

.workshop-header-content p {
    max-width: 720px;
    margin-bottom: 20px;

    color: rgba(255,255,255,0.88);
    font-size: 18px;
    line-height: 1.7;
}

.workshop-header-content .breadcrumb-item,
.workshop-header-content .breadcrumb-item a {
    color: #FFFFFF;
}

.workshop-header-content .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.65);
}


/* =========================================================
   INTRO
   ========================================================= */

.workshop-intro {
    padding: 90px 0 70px;
    background: #FFFFFF;
}

.workshop-section-heading {
    max-width: 780px;
    margin: 0 auto 55px;
}

.workshop-kicker {
    display: block;

    margin-bottom: 12px;

    color: #FF5E14;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.workshop-section-heading h2 {
    margin-bottom: 18px;

    color: #02245B;
    font-family: "Rubik", sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
}

.workshop-section-heading h2::after {
    content: "";

    display: block;

    width: 60px;
    height: 4px;

    margin: 18px auto 0;

    background: #FF5E14;
    border-radius: 5px;
}

.workshop-section-heading p {
    max-width: 720px;
    margin: 18px auto 0;

    color: #5F656F;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   WORKSHOP HIGHLIGHTS
   ========================================================= */

.workshop-highlights {
    margin-top: 20px;
}

.workshop-highlight {
    height: 100%;

    padding: 32px 28px;

    background: #FFFFFF;

    border: 1px solid #eeeeee;

    box-shadow: 0 8px 35px rgba(2,36,91,0.07);

    transition: all 0.35s ease;
}

.workshop-highlight:hover {
    transform: translateY(-7px);

    border-color: rgba(255,94,20,0.35);

    box-shadow: 0 18px 45px rgba(2,36,91,0.12);
}

.workshop-highlight-icon {
    width: 58px;
    height: 58px;

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

    margin-bottom: 20px;

    background: #FF5E14;

    color: #FFFFFF;

    font-size: 22px;

    border-radius: 50%;
}

.workshop-highlight h4 {
    margin-bottom: 12px;

    color: #02245B;

    font-size: 20px;
    font-weight: 700;
}

.workshop-highlight p {
    margin: 0;

    color: #5F656F;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   MACHINE GALLERY
   ========================================================= */

.machine-gallery-section {
    padding: 90px 0 100px;

    background: #F5F8FC;
}

.machine-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 10px;

    margin-bottom: 55px;
}

.machine-filter {
    padding: 11px 23px;

    background: #FFFFFF;

    color: #02245B;

    border: 1px solid #DDE3EA;

    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}

.machine-filter:hover,
.machine-filter.active {
    background: #FF5E14;
    border-color: #FF5E14;
    color: #FFFFFF;
}


/* =========================================================
   MACHINE CARD
   ========================================================= */

.machine-card {
    height: 100%;

    overflow: hidden;

    background: #FFFFFF;

    border: 1px solid #E8EBEF;

    box-shadow: 0 8px 30px rgba(2,36,91,0.07);

    transition: all 0.35s ease;
}

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

    box-shadow: 0 18px 45px rgba(2,36,91,0.13);
}


/* Machine image */

.machine-image {
    position: relative;

    height: 270px;

    overflow: hidden;

    background: #E9EDF2;
}

.machine-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.machine-card:hover .machine-image img {
    transform: scale(1.05);
}


/* Orange category label */

.machine-category {
    position: absolute;

    left: 18px;
    bottom: 18px;

    padding: 7px 14px;

    background: #FF5E14;

    color: #FFFFFF;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


/* Machine content */

.machine-content {
    padding: 27px 28px 28px;
}

.machine-content h3 {
    margin-bottom: 12px;

    color: #02245B;

    font-family: "Rubik", sans-serif;
    font-size: 21px;
    font-weight: 700;

    line-height: 1.3;
}

.machine-content p {
    min-height: 72px;

    margin-bottom: 20px;

    color: #5F656F;

    font-size: 14px;
    line-height: 1.7;
}


/* Bottom meta */

.machine-meta {
    padding-top: 14px;

    border-top: 1px solid #eeeeee;

    color: #02245B;

    font-size: 13px;
    font-weight: 600;
}

.machine-meta i {
    margin-right: 8px;

    color: #FF5E14;
}


/* =========================================================
   HIDDEN FILTER ITEMS
   ========================================================= */

.machine-item.machine-hidden {
    display: none;
}


/* =========================================================
   CTA
   ========================================================= */

.workshop-cta {
    padding: 75px 0;

    background: #02245B;
}

.workshop-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.workshop-cta-inner > div {
    max-width: 760px;
}

.workshop-cta-inner span {
    display: block;

    margin-bottom: 8px;

    color: #FF5E14;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.workshop-cta-inner h2 {
    margin-bottom: 12px;

    color: #FFFFFF;

    font-family: "Rubik", sans-serif;
    font-size: 34px;
    font-weight: 700;
}

.workshop-cta-inner p {
    margin: 0;

    color: rgba(255,255,255,0.75);

    font-size: 15px;
    line-height: 1.7;
}

.workshop-cta-btn {
    flex-shrink: 0;

    padding: 15px 28px;

    background: #FF5E14;

    color: #FFFFFF;

    font-weight: 600;

    border: 2px solid #FF5E14;
}

.workshop-cta-btn:hover {
    background: #FFFFFF;
    color: #02245B;
    border-color: #FFFFFF;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .workshop-page-header {
        min-height: 300px;
    }

    .workshop-header-content h1 {
        font-size: 42px;
    }

    .workshop-section-heading h2 {
        font-size: 36px;
    }

    .machine-image {
        height: 250px;
    }

    .workshop-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .workshop-page-header {
        min-height: 280px;
    }

    .workshop-header-content {
        padding: 40px 0;
    }

    .workshop-header-content h1 {
        font-size: 32px;
    }

    .workshop-header-content p {
        font-size: 15px;
    }

    .workshop-intro,
    .machine-gallery-section {
        padding: 60px 0;
    }

    .workshop-section-heading {
        margin-bottom: 40px;
    }

    .workshop-section-heading h2 {
        font-size: 30px;
    }

    .machine-filters {
        gap: 7px;
        margin-bottom: 40px;
    }

    .machine-filter {
        padding: 9px 14px;
        font-size: 12px;
    }

    .machine-image {
        height: 240px;
    }

    .machine-content {
        padding: 23px;
    }

    .machine-content h3 {
        font-size: 19px;
    }

    .machine-content p {
        min-height: auto;
    }

    .workshop-cta-inner h2 {
        font-size: 28px;
    }

}

/* =========================================================
   ADAK ELECTRICALS - FINAL CORPORATE BRAND COLORS
   ========================================================= */

.navbar .company-brand {
    background: #02245B !important;
}

.navbar .company-brand::after {
    background-color: #02245B !important;
}

.navbar .company-logo {
    background: #FFFFFF;
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.navbar .company-name {
    color: #FFFFFF !important;
}

.navbar .navbar-brand {
    background: #02245B !important;
}

.navbar .navbar-brand::after {
    background-color: #02245B !important;
}

/* Orange remains the company accent */
.btn-primary,
.hero-btn {
    background-color: #FF5E14;
    border-color: #FF5E14;
}

.btn-primary:hover,
.hero-btn:hover {
    background-color: #e94f0b;
    border-color: #e94f0b;
}

/* Navigation */
.navbar .navbar-nav .nav-link {
    color: #02245B;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #FF5E14;
}

/* =========================================================
   TESTING EQUIPMENT & FACILITIES LIST
========================================================= */

#testing-equipment .workshop-highlight {
    padding: 35px;
}

#testing-equipment ol {
    margin-bottom: 0;
}

#testing-equipment ol li {
    color: #555;
    font-size: 15px;
    line-height: 1.65;
    padding-left: 5px;
}

#testing-equipment .workshop-highlight h4 {
    margin-bottom: 5px;
}


/* Mobile */
@media (max-width: 767px) {

    #testing-equipment .workshop-highlight {
        padding: 25px 20px;
    }

    #testing-equipment ol li {
        font-size: 14px;
    }

}
/* =========================================================
   AUTHORISED SERVICE CENTERS
========================================================= */

.authorised-section {
    background: #f8f9fa;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.authorised-intro {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.7;
}


/* Card */

.authorised-card {
    background: #ffffff;

    min-height: 230px;

    padding: 28px 20px;

    border: 1px solid #e7e7e7;

    border-radius: 6px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    transition: all 0.3s ease;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}


/* Hover */

.authorised-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);

    border-color: #0d6efd;
}


/* Logo Area */

.authorised-logo {

    width: 100%;

    height: 105px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    padding: 10px;
}


/* Logo */

.authorised-logo img {

    max-width: 170px;

    max-height: 90px;

    width: auto;

    height: auto;

    object-fit: contain;

    transition: all 0.3s ease;
}


/* Logo hover */

.authorised-card:hover .authorised-logo img {

    transform: scale(1.05);

}


/* Company Name */

.authorised-card h5 {

    margin: 0;

    color: #212529;

    font-size: 16px;

    line-height: 1.45;

    font-weight: 600;

}


/* Mobile */

@media (max-width: 575px) {

    .authorised-card {

        min-height: 200px;

        padding: 22px 12px;

    }

    .authorised-logo {

        height: 85px;

    }

    .authorised-logo img {

        max-width: 135px;

        max-height: 70px;

    }

    .authorised-card h5 {

        font-size: 14px;

    }

}

/* ==========================================
   NEWSLETTER
   ========================================== */

.newsletter-text {
    color: #B0B9AE;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    position: relative;
    width: 100%;
    height: 52px;
    margin-top: 10px;
}

.newsletter-input {
    width: 100%;
    height: 52px;
    padding: 0 105px 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: #FFFFFF;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
}

.newsletter-input::placeholder {
    color: #B0B9AE;
    opacity: 1;
}

.newsletter-input:focus {
    border-color: #FF5E14;
}

.newsletter-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    height: 40px;
    padding: 0 18px;
    border: none;
    background: #FF5E14;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    z-index: 2;
}

.newsletter-btn:hover {
    background: #e94f0b;
}

<style>

.newsletter-success {
    background: #dff6e5;
    color: #176b2c;
    border: 1px solid #9ed6aa;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-error {
    background: #ffe5e5;
    color: #a00000;
    border: 1px solid #e0aaaa;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 14px;
}

</style>

/* =========================================================
   ADAK ELECTRICALS - PREMIUM CORPORATE COLOR UPDATE
   ========================================================= */

:root {
    --primary: #C58A24 !important;
    --secondary: #5F656F !important;
    --light: #F5F5F5 !important;
    --dark: #02245B !important;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.topbar-right {
    background: #C58A24 !important;
}

.topbar-right::before {
    background-color: #C58A24 !important;
}


/* =========================================================
   MAIN NAVBAR
   White background so logo/name do NOT merge with top bar
   ========================================================= */

.navbar {
    background: #FFFFFF !important;
}

.navbar .navbar-brand {
    background: #FFFFFF !important;
    color: #02245B !important;
}

.navbar .navbar-brand::after {
    background-color: #FFFFFF !important;
}


/* =========================================================
   COMPANY LOGO + NAME
   ========================================================= */

.navbar .company-brand {
    background: #FFFFFF !important;
    color: #02245B !important;
}

.navbar .company-brand::after {
    background-color: #FFFFFF !important;
}

.navbar .company-name {
    color: #02245B !important;
}

.navbar .company-logo {
    background: #FFFFFF !important;
    border: 2px solid #E7D7B5;
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 3px 12px rgba(2,36,91,0.12);
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navbar .navbar-nav .nav-link {
    color: #02245B !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #C58A24 !important;
}


/* =========================================================
   PREMIUM GOLD ACCENT
   ========================================================= */

.hero-subtitle {
    color: #C58A24 !important;
}

.team-kicker {
    color: #C58A24 !important;
}

.why-adak-kicker {
    color: #C58A24 !important;
}

.director-role {
    color: #C58A24 !important;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn-primary,
.hero-btn {
    background-color: #C58A24 !important;
    border-color: #C58A24 !important;
    color: #FFFFFF !important;
}

.btn-primary:hover,
.hero-btn:hover {
    background-color: #A97018 !important;
    border-color: #A97018 !important;
    color: #FFFFFF !important;
}


/* =========================================================
   SERVICE BUTTON HOVER
   ========================================================= */

.service-item .btn:hover {
    background: #C58A24 !important;
    color: #FFFFFF !important;
}


/* =========================================================
   CAROUSEL ARROWS
   ========================================================= */

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    background-color: #C58A24 !important;
    border-color: #C58A24 !important;
}


/* =========================================================
   ABOUT / FEATURE ICONS
   ========================================================= */

.about-inline-icon {
    color: #C58A24 !important;
}

.company-detail-icon {
    background: #C58A24 !important;
}

.approach-badge {
    background: #C58A24 !important;
}


/* =========================================================
   TEAM
   ========================================================= */

.team-card:hover {
    border-color: rgba(197,138,36,0.40) !important;
}

.team-photo-overlay a {
    background: #C58A24 !important;
}

.team-photo-overlay a:hover {
    background: #02245B !important;
}

.team-accent {
    background: #C58A24 !important;
}


/* =========================================================
   WHY ADAK
   ========================================================= */

.why-adak-corner {
    background: #C58A24 !important;
}

.why-adak-experience {
    background: #C58A24 !important;
}

.why-adak-kicker {
    color: #C58A24 !important;
}

.why-adak-icon {
    background: #C58A24 !important;
}

.why-adak-badge {
    border-left-color: #C58A24 !important;
}

.why-adak-badge > i {
    color: #C58A24 !important;
}


/* =========================================================
   CLIENT LOGOS
   ========================================================= */

.client-logo-card:hover {
    border-color: #C58A24 !important;
}


/* =========================================================
   PROJECT / OTHER ACCENTS
   ========================================================= */

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    background: #C58A24 !important;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer .btn.btn-link:hover {
    color: #C58A24 !important;
}


/* =========================================================
   TOP BAR QUOTE AREA
   ========================================================= */

.topbar-right a,
.topbar-right span {
    color: #FFFFFF !important;
}


/* =========================================================
   MOBILE NAVBAR
   ========================================================= */

@media (max-width: 991.98px) {

    .navbar .company-brand {
        background: #FFFFFF !important;
    }

    .navbar .company-name {
        color: #02245B !important;
    }

    .navbar-toggler {
        color: #02245B !important;
        border-color: rgba(2,36,91,0.15) !important;
    }
}

.service-list p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-list p strong {
    font-weight: 700;
}

.service-list i {
    font-size: 14px;
}