﻿* {
    margin: 0;
    box-sizing: border-box;
}
:root {
    --heading-font: "Hedvig Letters Sans", sans-serif;
    --body-font: 'Open Sans', sans-serif;
    --other-font: 'Assistant', sans-serif;
    --accent-font: "Vollkorn", serif;
}

/* Container and typography */
.container { }
h1, h2, h3 {
    font-family: var(--heading-font);
}
/* Header */
.header {
    display: flex;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 35px;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 1);
    color: white;
    z-index: 999;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: var(--heading-font);
    font-size: 1rem;
    border-bottom: 1px solid #353434;
}


/* Logo */
.logo-img, .logo-blue{
    width: 80px;
    height: 60px;
}

.logo-blue {
    display: flex;
}
.logo-img {
    display: none;

}

/* Navigation */
.topNavItemsBurger {
    display: none;
    gap: 20px;
    flex-wrap: wrap;
}
.topNavItemsBurger.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    z-index: 998;
}
.topNavItemsBurger a {
    text-decoration: none;
    color: #19194f;
    font-size: 18px;
}
.burger {
    display: block;
}
.burger .fa-bars {
    color: #19194f;
}

.topNavItems {
    display: none;
    justify-content: space-between;
    align-content: center;
    width: 85%;
}
.topNavItems a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-family: inherit;
}
.search-hidden {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.85);
    z-index: 1000;
/*    align-items: center;*/
    justify-content: center;
    flex-direction: column;
}
.search-hidden-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.search-hidden-box input {
    padding: 12px 20px;
    font-size: 18px;
    border: 1px solid #fff;
    background-color: transparent;
    border-radius: 5px;
    width: 80%;
}

.search-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #ffd700;
    font-size: 18px;
    padding: 10px 12px;
}
.search-hidden-box input:focus{
    border: none;
    background: transparent;
    color: white;
    outline: 1px solid #fff;
}
.search-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

.nav-item {
    position: relative;
    display: inline-block;
}
.dropdown-icon {
    cursor: pointer;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0px;
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 10px 0;
    list-style: none;
    min-width: 150px;
    z-index: 1000;
}
.dropdown-menu li {
    padding: 8px 15px;
}
.dropdown-menu li a {
    color: #fff;
    text-decoration: none;
}
.nav-item.open .dropdown-menu {
    display: block;
}
.dropdown-menu li:hover {
    transition: background-color 0.3s ease;
}

/* Slider */
.img-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 0;
    filter: blur(2px);
}
.slide.active {
    opacity: 1;
    z-index: 1;
}
.slide1 { background-image: url('../img/bg-2.jpg'); }
.slide2 { background-image: url('../img/bg-9.jpg'); }
.slide3 { background-image: url('../img/bg-7.jpg'); }
.slide4 { background-image: url('../img/bg-8.jpg'); }
.slide5 { background-image: url('../img/bg-4.jpg'); }

.img-slider::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.img-slider-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: absolute;
    z-index: 3;
    color: white;
    text-align: left;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}
.img-slider-content span{
    font-family: var(--other-font);
    font-size: 2.6rem;
    display: block;
    color: #fff;
}
.img-slider-content p {
    font-family: var(--other-font);
    font-size: 1.3rem;
    color: white;
    font-weight: lighter;
}
.giko-span { font-weight: lighter; }
.eng-span { font-weight: bolder; margin-top: -13px; }

.fa-caret-down, .fa-magnifying-glass {
    font-size: 13px;
    padding-left: 5px;
}

/* Buttons */
.contact-btn, .about-btn, .cta-btn {
    border-radius: 25px;
    color: white;
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #19194f;
    border: 1px solid #19194f;
    padding: 10px 15px;
}

.get-in-touch {
    border-radius: 5px;
    width: 90%;
    height: 60px;
    font-size: 1.2rem;
    background-color: #19194f;
    margin-top: 25px;
}
.contact-btn:hover {
    background-color: #3e3e8e;
    transform: scale(1.05);
}

/* Carousel */
.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    background-color: #fff;
    border-bottom: 1px solid #353434;
}
.carousel-track {
    display: flex;
    gap: 40px;
    animation: scroll-left 30s linear infinite;
}
.carousel-track img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}
@keyframes scroll-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}
.services-section {
  padding: 40px;
  text-align: center;
}

.services-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.services-carousel {
  display: flex;
  transition: transform 0.5s ease;
  gap: 25px;
}

.service-card {
    position: relative;
    width: 280px;
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.overlay-service {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: background 0.3s;
}

.service-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    font-family: var(--heading-font);
    color: #fff;
    padding: 20px;
    transform: translateY(60%);
    transition: transform 0.4s ease;
    z-index: 2;
    overflow-y: auto;
    padding-right: 10px; 
}

.service-card:hover .service-content {
  transform: translateY(0);
}

.service-content h3 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  color: #0066cc;
}

.service-content p {
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1rem;
    font-family: var(--other-font);
    color: #fff;
    padding: 5px 0
}

.service-card:hover .service-content p,
.service-card:hover .service-content a {
  opacity: 1;
}

.service-content::-webkit-scrollbar {
    width: 6px;
}

.service-content::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.5);

    border-radius: 10px;
}


.service-h1 {
    color: #19194f;
    font-family: var(--heading-font);
    margin: 30px 0 60px 0;
    font-size: 2rem
}

.arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffd700;
    border: none;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
    z-index: 5;
}
.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

.decorative-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  max-width: 400px;
}

.decorative-list li {
  background: #f0f0f0;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.decorative-list li:hover {
  transform: translateY(-2px);
}

.decorative-list a {
  display: block;
  padding: 15px 20px;
  color: #444;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.decorative-list a::after {
  content: '→';
  position: absolute;
  right: 20px;
  opacity: 0;
  transition: opacity 0.3s, right 0.3s;
}

.decorative-list a:hover {
  color: #0066cc;
}

.decorative-list a:hover::after {
  opacity: 1;
  right: 10px;
}
/*---------------------About Us----------------*/
.about-us {
  padding: 0;
  background: #f9f9f9;
  font-family: var(--body-font, sans-serif);
}

.about-us h1 {
  font-size: 2rem;
  color: #19194f;
  text-align: center;
  padding: 30px 0 0 0;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 60px 0;
}

.about-image {
  width: 100%;
  position: relative;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 70vh; 
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.play-button {
  display: none; /* hidden on mobile */
}

.about-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  text-align: center;
}

.about-content p {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  word-spacing: 1.5px;
  margin-bottom: 15px;
}

.about-btn {
  padding: 15px 25px;
  background-color: #0066cc;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  align-self: center;
  margin-top: 10px;
}

.about-btn:hover {
  background-color: #004c99;
}



/*----------- CTA Section-------------- */



.cta-section {
  background: #0066cc;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.cta-container h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.cta-container p {
  font-size: 0.8rem;
  margin-bottom: 30px;
  color: #fff;
  font-family: var(--other-font);
  
}

.cta-btn {
    text-decoration: none;
    background-color: #19194f;
    padding: 15px 20px
}

.cta-btn:hover {
  background-color: transparent;
  border: 1px solid #19194f;
}
.map {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 400px;
    margin: auto;
}

/*==========Footer============*/
.footer {
  background-color: #1e1e1e;
  color: #ccc;
  padding: 40px 60px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
    flex: 1 1 220px;
}
.footer-column p{
    margin: 5px 0;
}

.footer-column p span{
  font-weight: bold;
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.social-links a {
  color: #ccc;
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
}

.social-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  margin-top: 30px;
  font-size: 14px;
}

.dev-banner {
  background-color: #fff;
  color: #0066cc;
  padding: 10px 20px;
  text-align: center;
  font-weight: bold;
  border-top: 2px solid #ffeeba;
  margin: 20px 0 0 0;
  font-family: var(--heading-font);
}





/* ------------------- Responsive Design ------------------ */

/* Mobile First - For screens ≤ 767px */
@media (max-width: 767px) {
    .topNavItems {
        display: none;
    }

    .burger {
        display: block;
    }

    .topNavItemsBurger {
        display: none;
    }

    .topNavItemsBurger.show {
        display: flex;
        background-color: rgba(255, 255, 255, 0.9);
    }
    .search-hidden-box input {
        width: 60%;
    }

    .img-slider-content span {
        font-size: 2rem;
    }

    .img-slider-content p {
        font-size: 1rem;
    }

    .get-in-touch {
        width: 90%;
        font-size: 1rem;
    }

    .dropdown-menu {
        top: 50px;
        left: 20px;
    }
    .service-section {
        padding: 40px 30px;
    }
}

/* Tablets (768px+) */
@media (min-width: 768px) {
    .header {
        padding: 20px 20px;
        background: rgba(0, 0, 0, 1);
    }

    .logo-blue {
        display: none;
    }

    .logo-img {
        display: flex;
    }

    .search-hidden-box input {
        width: 50%;
    }

    .burger {
        display: none;
    }

    .topNavItems {
        display: flex;
        width: 90%;
    }

        .topNavItems .nav-item:hover {
            color: #ffd700;
        }

        .topNavItems .nav-item a:hover {
            color: #ffd700;
        }

    .img-slider-content span {
        font-size: 4rem;
    }

    .img-slider-content p {
        font-size: 2rem;
    }

    .eng-span {
        margin-top: -22px;
    }

    .get-in-touch {
        width: 200px;
        background-color: #ffd700;
    }

    .contact-btn {
        background-color: transparent;
        border: 1px solid #ffd700;
    }


        .contact-btn:hover {
            background-color: #ffd700;
        }

    .dropdown-menu {
        top: 70px;
        left: 40px;
        background: rgba(0, 0, 0, 0.7);
    }

    .slide1 {
        background-image: url('../img/bg-6.jpg');
    }

    .slide3 {
        background-image: url('../img/bg-10.jpg');
    }

    .service-h1 {
        font-size: 3rem;
    }

    .service-section {
        padding: 60px 40px;
    }

    .about-us h1 {
        font-size: 3rem;
    }

    .about-us {
        padding: 60px 25px;
    }

    .about-container {
        flex-direction: row;
        max-width: 1200px;
        margin: 0 auto;
        gap: 40px;
        align-items: stretch;
    }

    .about-image, .about-content {
        flex: 1 1 50%;
    }

    .video-wrapper {
        height: 100%;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }



        .video-wrapper video {
            height: 100%;
            object-fit: cover;
        }

    .video-overlay {
        display: none;
    }

    .play-button {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.6);
        color: #fff;
        border: none;
        font-size: 35px;
        padding: 6px 12px;
        cursor: pointer;
        border-radius: 50%;
        z-index: 2;
    }

    .about-content {
        position: static;
        width: auto;
        height: auto;
        background-color: rgba(255, 255, 255, 0.85);
        text-align: left;
        align-self: stretch;
        padding: 20px;
        border-radius: 8px;
        overflow: visible;
    }

        .about-content p {
            color: #444;
            font-size: 18px;
        }

    .about-btn {
        align-self: flex-start;
    }

    .cta-container h2 {
        font-size: 2.2rem;
    }

    .cta-container p {
        font-size: 1.1rem;
    }
}

    /* Desktops */
@media (min-width: 1024px) {
    .header {
        padding: 20px 60px;
    }

    .topNavItems {
        width: 85%;
    }

    .get-in-touch {
        width: 200px;
    }

    .search-hidden-box input {
        width: 40%;
    }

    .service-section {
        padding: 60px 40px;
    }

    .about-image, .about-content {
        flex: 1 1 400px;
    }

}
