@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
}

header {
    padding-top: 3px;
    background-image: linear-gradient(to right, rgb(255, 140, 0) 5%, rgb(248, 0, 50) 25%, rgb(255, 0, 160) 45%, rgb(140, 40, 255) 65%, rgb(0, 35, 255) 82%, rgb(25, 160, 255) 96%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.navbar .hambargur {
    display: none !important;
    margin-left: 1rem;
    margin-right: 1rem;
    width: 15px;
    height: 10px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.navbar .hambargur div {
    width: 100%;
    height: 2px;
    background-color: black;
    border-radius: 2px;
}

.navbar .left {
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}

.navbar .left .Logo {
    width: 48px;
}

.navbar .left .nav-items {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-left: 1.5rem;
}

.navbar .left .nav-items .nav-item {
    list-style: none;
}

.navbar .left .nav-items .nav-item a {
    text-decoration: none;
    color: black;
    font-size: 0.9rem;
    line-height: 24px;
    font-weight: 300;
}

.navbar .right {
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}

.navbar .right img {
    width: 20px;
    margin-left: 1.5rem;
}

.navbar .right .nav-items {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-left: 1.5rem;
}

.navbar .right .nav-items .nav-item {
    list-style: none;
}

.navbar .right .nav-items .nav-item a {
    text-decoration: none;
    color: black;
    font-size: 0.9rem;
    line-height: 24px;
    font-weight: 300;
}

@media (max-width:1200px) {

    .off-mobile {
        display: none;
    }

    .navbar .left {
        display: flex;
        justify-content: center;
    }

    .navbar .right {
        padding: 0.5rem;
    }

    .navbar .right .nav-items {
        padding-left: 0px;
    }

    .navbar .hambargur {
        display: flex !important;
    }

    .navbar .left .nav-items {
        display: none;
    }

}

/* BUTTONS */

.banner-btns {
    display: flex;
    gap: 0.8rem;
}

.banner-btns .btn-1 {
    align-items: center;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    justify-content: center;
    line-height: 24px;
    outline: none;
    padding: 10px 16px;
    text-align: center;
    transition: 200ms ease-out;
    background-color: rgb(0, 15, 245);
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.banner-btns .btn-2 {
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    justify-content: center;
    line-height: 24px;
    outline: none;
    padding: 10px 16px;
    text-align: center;
    transition: 200ms ease-out;
    background-color: white;
    color: rgb(0, 15, 245);
    border: 2px solid rgb(0, 15, 245);
    text-decoration: none;
}

@media (max-width:768px) {

    .banner-btns .btn-1 {
        font-size: 14px;
        line-height: 22px;
        padding: 10px 16px;
    }

    .banner-btns .btn-2 {
        font-size: 14px;
        line-height: 22px;
        padding: 10px 16px;
    }

}

/* TOP BAR */

.top-bar {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    background-image: linear-gradient(to right, rgb(255, 140, 0) 5%, rgb(248, 0, 50) 25%, rgb(255, 0, 160) 45%, rgb(140, 40, 255) 65%, rgb(0, 35, 255) 82%, rgb(25, 160, 255) 96%);
}

.top-bar a {
    color: white;
    text-decoration: none;
}

/* Banner */

.banner {
    position: relative;
}

.banner .banner-mobile {
    display: none;
}

.banner .banner-pc {
    height: 100%;
    object-fit: cover;
    object-position: center top;
    width: 100%;
}

.banner .bonner-content {
    top: 0px;
    position: absolute;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: 0px 0px 0px 104px;
    width: 40%;
    text-align: center;
    max-width: 1248px;
    margin: auto;
}

.banner .bonner-content h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.banner .bonner-content h1 {
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.banner .bonner-content p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 2rem;
}

@media (max-width:1024px) {

    .banner .banner-pc {
        display: none;
    }

    .banner .banner-mobile {
        display: block;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .banner .bonner-content {
        position: static;
        width: 100%;
        padding: 1rem;
        justify-content: end;
        background-color: rgb(9 17 82);
    }

}

/* Main Grid */

.main-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem 24px;
    max-width: 1248px;
    margin: auto;
}

.main-content-grid :nth-child(1) .image :nth-child(1) {
    display: none;
}

.main-content-grid .grid-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 8px 0px;
}

.main-content-grid .grid-item .bonner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 3rem 0rem 3rem;
}

.main-content-grid .grid-item .bonner-content h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.main-content-grid .grid-item .bonner-content h1 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.main-content-grid .grid-item .bonner-content p {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 2rem;
}

.main-content-grid .grid-item .bonner-content .banner-btns {
    display: flex;
    justify-content: center;
}

.main-content-grid .grid-item .image img {
    width: 100%;
}

@media (min-width:1000px) {

    .main-content-grid :nth-child(1) {
        grid-column: span 2 / span 2;
        flex-direction: row;
    }

    .main-content-grid :nth-child(1) .bonner-content {
        width: 50%;
    }

    .main-content-grid :nth-child(1) .image :nth-child(1) {
        display: block;
    }

    .main-content-grid :nth-child(1) .image :nth-child(2) {
        display: none;
    }

}

@media (max-width:768px) {

    .main-content-grid {
        grid-template-columns: repeat(1, 1fr);
    }

}

/* Slider */

.Slider {
    background: linear-gradient(to right, rgb(9, 17, 83) 0%, #0c1b87 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0px;
}

.carousel-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-wrapper {
    overflow: hidden;
    padding: 20px 0;
    padding-left: calc(20% - 15px);
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 900px;
    flex-shrink: 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.carousel-slide:hover {
    transform: scale(1.02);
}

.slide-image {
    width: 100%;
    max-width: 900px;
    object-fit: cover;
    display: block;
}

.slide-content {
    padding: 30px;
    background: linear-gradient(to right, rgb(9, 17, 83) 0%, #0c1b87 100%);
    color: white;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 15px 0px;
    border-radius: 0px 0px 5px 5px;
}

.slide-logo {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.slide-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.slide-status {
    font-size: 16px;
    opacity: 0.9;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #e6e6e6;
    transform: scale(1.05);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: #003399;
    stroke-width: 2;
    fill: none;
}

@media (max-width: 768px) {

    .Slider {
        min-height: 100% !important;
    }

    .carousel-wrapper {
        padding-left: 20px;
    }

    .carousel-slide {
        min-width: 60%;
    }

    .header {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .slide-title {
        font-size: 22px;
    }

    .slide-image {
        max-width: 90%;
        height: 350px;
    }
}

/* Home-content */

.Home-content {
    transition: 2s all;
    padding: 4rem 24px;
    max-width: 1044px;
    margin: auto;
}

.accordion {
    display: flex;
    justify-content: space-between;
    background-color: white;
    border: 1px solid rgb(215, 215, 215);
    border-radius: 6px;
    cursor: pointer;
    padding: 1.2rem;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
}

.accordion img {
    width: 1.3rem;
}

.panel {
    padding: 1.2rem;
    display: none;
    border: 1px solid rgb(215, 215, 215);
    background-color: white;
    overflow: hidden;
}


.main-pages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1224px;
    padding: 3rem 1rem;
    margin: auto;
}

.main-pages ul {
    display: flex;
    flex-direction: column;
    margin-left: 2rem;
    gap: 1rem;
}

/* Footer */

.footer {
    border-top: 1px solid rgb(225, 225, 225);
    padding-bottom: 3px;
    margin: auto;
    background-image: linear-gradient(to right, rgb(255, 140, 0) 5%, rgb(248, 0, 50) 25%, rgb(255, 0, 160) 45%, rgb(140, 40, 255) 65%, rgb(0, 35, 255) 82%, rgb(25, 160, 255) 96%);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 2rem;
    background-color: white;
}

.footer .left {
    display: flex;
    align-items: center;
}

.footer .left .Logo {
    width: 4.5rem;
    margin-right: 1rem;
}

.footer .footer-inner .middle ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
}

.footer .footer-inner .middle ul li {
    padding: 0.5rem 0.75rem;
    text-decoration: none;
}

.footer .footer-inner .middle ul li a {
    text-decoration: none;
    color: black;
    font-size: 0.9rem;
}

.footer .right {
    gap: 1rem;
    display: flex;
    align-items: center;
}

.footer .right img {
    width: 1.8rem;
}

@media (max-width:1024px) {

    .footer-inner {
        flex-wrap: wrap;
    }

    .footer .footer-inner .left {
        order: 2;
    }

    .footer .footer-inner .middle {
        order: 1;
    }

    .footer .footer-inner .right {
        order: 3;
    }

}

/* Contact form styles */
.contact-section {
    max-width: 920px;
    margin: 2.5rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 24px;
}

.contact-section h1 {
    font-size: 1.9rem;
    margin-bottom: 0.25rem;
    color: #001f5c;
    font-weight: 600;
}

.contact-section p {
    margin-bottom: 1.25rem;
    color: #333;
    line-height: 1.5;
}

.contact-form label {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-top: 0.5rem;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    font-size: 0.95rem;
    resize: vertical;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9b9b9b;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgb(0, 15, 245);
    box-shadow: 0 0 0 6px rgba(0, 15, 245, 0.06);
    outline: none;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.form-actions button {
    background-color: rgb(0, 15, 245);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 120ms ease, box-shadow 120ms ease;
}

.form-actions button:hover {
    transform: translateY(-1px);
    box-shadow: rgba(0, 15, 245, 0.16) 0px 8px 20px;
}

#form-status {
    font-size: 0.95rem;
    color: #333;
}

@media (max-width: 768px) {
    .contact-section {
        margin: 1rem;
        padding: 1rem;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .form-actions button {
        width: 100%;
    }

    #form-status {
        margin-top: 0.5rem;
    }
}

/* Overlay */

.overlay {
    /* display: flex; */
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
}

.overlay a {
    text-decoration: none;
    color: black;
}

.overlay .call {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1rem;
    padding-bottom: 1rem;
    align-items: center;
}

.overlay .call h3 {
    font-size: 0.9rem;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 24px;
    padding: 0.4rem;
    border-radius: 5px;
}

.overlay .call .call-img {
    background-color: rgb(242 100 24);
    display: block;
    padding: 1rem;
    border-radius: 100px;
}

.overlay .call .call-img img {
    width: 2rem;
    display: block;
}

.overlay .cookie {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Cookie consent banner */
.overlay #cookie-consent {
    background: rgba(255, 255, 255, 0.98);
    color: #111;
    padding: 1rem 1.25rem;
    margin: 0.75rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    gap: 1rem;
    align-items: center;
    max-width: 1000px;
}

.overlay #cookie-consent .cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.3;
}

.overlay #cookie-consent .cookie-text a {
    color: #0050ff;
    text-decoration: underline;
}

.overlay #cookie-consent .cookie-btns {
    margin-left: auto;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.overlay #cookie-consent .cookie-btns .btn-accept {
    background: #0050ff;
    color: #fff;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
}

.overlay #cookie-consent .cookie-btns .btn-decline {
    background: transparent;
    color: #111;
    border: 1px solid #ddd;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    cursor: pointer;
}

.overlay #cookie-consent .cookie-btns .btn-manage {
    color: #111;
    text-decoration: none;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    border: 1px dashed transparent;
}

@media (max-width: 720px) {
    .overlay #cookie-consent {
        order: 2;
        flex-direction: column;
        align-items: stretch;
        padding: 0.8rem;
    }

    .overlay #cookie-consent .cookie-btns {
        margin-left: 0;
        justify-content: flex-end;
        gap: 0.5rem;
    }
}