@charset "utf-8";
/**
 * CLIRNET Tailwind Companion Styles
 * Only styles that cannot be expressed as Tailwind utility classes
 */

/* ========================================
   BASE
   ======================================== */
html, body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* ========================================
   TOAST NOTIFICATIONS (used by save_newsletter, send_invite)
   ======================================== */
.paramusr,
.tMessage {
    position: fixed;
    z-index: 99999;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 24px;
    border: 2px solid;
    border-radius: 8px;
    width: 400px;
    max-width: 96%;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.4s ease-out;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.paramusr.tError,
.tMessage.tError {
    border-color: #ef4444;
    background-color: #fef2f2;
    color: #dc2626;
}

.tMessage.tSuccess,
.paramusr.tSuccess {
    border-color: #22c55e;
    background-color: #f0fdf4;
    color: #16a34a;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ========================================
   GO TO TOP BUTTON
   ======================================== */
.goToTop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    display: none;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #355fd3, #2a4ba8);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(53, 95, 211, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.goToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(53, 95, 211, 0.5);
}

.goToTop svg {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: white;
}

.goToTop img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.gradient-text {
    background: linear-gradient(90deg, #355fd3, #10b981, #8b5cf6, #355fd3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 100%;
    animation: gradient 4s ease-in-out infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ========================================
   HOVER EFFECTS
   ======================================== */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ========================================
   BUTTON COMPONENTS
   ======================================== */
.btn-primary-site {
    background: linear-gradient(135deg, #355fd3, #2a4ba8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary-site:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(53, 95, 211, 0.3);
    color: white;
    text-decoration: none;
}

/* ========================================
   FOOTER LINKS WITH ARROW
   ======================================== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links li a::before {
    content: '\203A';
    font-size: 18px;
    font-weight: 700;
    margin-right: 8px;
    line-height: 1;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* ========================================
   FEATURE TABS (App Page)
   ======================================== */
.feature-tab-bar {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 3rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
@media (min-width: 1024px) {
    .feature-tab-bar {
        justify-content: center;
    }
}
.feature-tab-bar::-webkit-scrollbar {
    display: none;
}
.feature-tab {
    position: relative;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.feature-tab:hover {
    color: #13388c;
}
.feature-tab.active-tab {
    color: #13388c;
    border-bottom-color: #13388c;
}

/* ========================================
   TESTIMONIAL ARROWS
   ======================================== */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: all 0.2s ease;
    z-index: 5;
}
.testimonial-arrow:hover {
    background: #13388c;
    color: #ffffff;
    border-color: #13388c;
}
.testimonial-arrow-left {
    left: -20px;
}
.testimonial-arrow-right {
    right: -20px;
}
@media (max-width: 640px) {
    .testimonial-arrow-left { left: -5px; }
    .testimonial-arrow-right { right: -5px; }
}

/* ========================================
   FOOTER SOCIAL ICONS
   ======================================== */
.footer-social-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: fill 0.3s ease;
}

/* ========================================
   CAROUSEL FADE TRANSITION
   ======================================== */
[data-carousel-item] {
    transition: opacity 0.5s ease-in-out;
}

/* ========================================
   ACCORDION ICON ROTATION
   ======================================== */
[data-accordion-icon] {
    transition: transform 0.3s ease;
}

[data-accordion-icon].rotate-180 {
    transform: rotate(180deg);
}

/* ========================================
   NAVBAR HAMBURGER ANIMATION
   ======================================== */
.nav-toggle span {
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Navbar scroll state */
#site-nav {
    transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
#site-nav.scrolled {
    position: fixed !important;
    background: #061c4c;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    height: 70px;
}

/* Mobile menu animation */
@media (max-width: 1023px) {
    #navbar-menu:not(.hidden) {
        animation: menuSlideIn 0.3s ease-out;
    }
    #navbar-menu .nav-link {
        font-size: 16px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
}
@keyframes menuSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   OVERLAY
   ======================================== */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
   SCROLLBAR (optional modern touch)
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* ========================================
   JOBS / PLACEMENTS PAGE COMPONENTS
   ======================================== */
.btn-primary-jobs {
    background: linear-gradient(135deg, #355fd3, #2a4ba8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary-jobs:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(53, 95, 211, 0.3);
    color: white;
    text-decoration: none;
}

.btn-secondary-jobs {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary-jobs:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    color: white;
    text-decoration: none;
}

.btn-outline-jobs {
    background: transparent;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-outline-jobs:hover {
    background: white;
    color: #355fd3;
    text-decoration: none;
}

.card-jobs {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-jobs:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.section-padding {
    padding: 5rem 0;
}

.accordion-item-jobs {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-trigger-jobs {
    width: 100%;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    transition: color 0.3s ease;
}

.accordion-trigger-jobs:hover {
    color: #355fd3;
}

.accordion-content-jobs {
    padding: 1rem 1.5rem 1rem;
    color: #4b5563;
    display: none;
}

.accordion-item-jobs.active .accordion-content-jobs {
    display: block;
}

.accordion-item-jobs.active .accordion-icon {
    transform: rotate(180deg);
}

/* Accordion styles for country pages */
.accordion-item {
    cursor: pointer;
    background: white;
}

.accordion-item:hover {
    background: #f9fafb;
}

.accordion-trigger {
    background: transparent;
    border: none;
    cursor: pointer;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-icon.rotate-180 {
    transform: rotate(180deg);
}

.accordion-content.hidden {
    display: none !important;
}

/* ========================================
   GSC PAGE — Hero Slider
   ======================================== */
.hero_slider_bnr {
    pointer-events: none;
    background-color: black;
}

.gsc-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.gsc-hero-slide.active {
    opacity: 1;
}

.hero_slider_bnr__content {
    margin-top: 100px;
}

.hero_slider_bnr__bg {
    transform: scale(1.2);
    transform-origin: center center;
}

.hero_slider_bnr__title {
    position: relative;
    translate: 0 100px 0;
    font-size: 6vw;
    scale: 1.2;
    opacity: 0;
}

.hero_slider_bnr__title::before,
.hero_slider_bnr__title::after {
    position: absolute;
    top: 0;
    content: "";
    height: 100%;
}

.hero_slider_bnr__title::before {
    left: 0;
    background-color: #fff;
    z-index: -1;
    width: 90%;
}

.hero_slider_bnr__title::after {
    right: 0;
    background-color: #1facc7;
    z-index: -1;
    width: 60%;
}

.hero_slider_bnr__subtitle {
    font-size: 2vw;
    line-height: 1.6;
    translate: 0 50px 0;
    opacity: 0;
}

.gsc-hero-slide.active .hero_slider_bnr__bg {
    animation: gscScaleBackground 15s ease-out forwards;
}

.gsc-hero-slide.active .hero_slider_bnr__title {
    opacity: 1;
    translate: 0 70px 0;
    animation: gscTitle 0.8s ease-in forwards;
}

.gsc-hero-slide.active .hero_slider_bnr__title::before {
    animation: gscWidthBefore 1.2s ease-in forwards;
}

.gsc-hero-slide.active .hero_slider_bnr__title::after {
    animation: gscWidthAfter 1.2s ease-in forwards;
}

.gsc-hero-slide.active .hero_slider_bnr__subtitle {
    animation: gscSubTitle 0.8s 0.2s ease-in forwards;
}

@keyframes gscScaleBackground {
    from { transform: scale(1.2); }
    to { transform: scale(1); }
}

@keyframes gscTitle {
    0% { translate: 0 70px 0; scale: 1.2; opacity: 0; }
    80% { opacity: 1; }
    100% { translate: 0 0 0; opacity: 1; scale: 1; }
}

@keyframes gscWidthBefore {
    0% { width: 90%; }
    100% { width: 0%; }
}

@keyframes gscWidthAfter {
    0% { width: 60%; }
    100% { width: 0%; right: 100%; }
}

@keyframes gscSubTitle {
    from { translate: 0 50px 0; opacity: 0; }
    to { translate: 0 0 0; opacity: 1; }
}

@media screen and (max-width: 767px) {
    .hero_slider_bnr__content { margin-top: 50px; }
    .hero_slider_bnr__subtitle { font-size: 14px; }
}

/* ========================================
   GSC PAGE — SubNavbar
   ======================================== */
.subNavbar {
    background-color: #2b2b5e;
    padding: 10px 15px;
    position: absolute;
    width: 80%;
    margin: 0 auto 0 10%;
    top: 80px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 1025;
}

/* ========================================
   GSC PAGE — Contact Form
   ======================================== */
.gsc-form {
    background: linear-gradient(27deg, rgba(43,44,95,1) 0%, rgba(11,158,180,1) 100%);
}

.gsc-form-fields input,
.gsc-form-fields select {
    background: transparent;
    color: #fff;
    border-top: 0 !important;
    border-right: 0 !important;
    border-left: 0 !important;
    border-radius: 0 !important;
}

.gsc-form-fields label {
    color: #fff;
}

.gsc-form-fields input:focus {
    background: transparent;
    color: #fff;
    border-top: 0 !important;
    border-right: 0 !important;
    border-left: 0 !important;
    border-radius: 0 !important;
    outline: none !important;
}

.gsc-form-fields input::placeholder {
    color: #fff;
}

/* ========================================
   GSC PAGE — Timeline
   ======================================== */
.gsc-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.gsc-timeline::after {
    background-color: #fff;
    bottom: 0;
    content: "";
    left: 0;
    margin-left: -1px;
    position: absolute;
    top: 0;
    width: 2px;
}

.gsc-timeline li {
    padding-left: 30px;
}

.gsc-timeline-item {
    margin: 0;
    padding: 0;
    position: relative;
}

.gsc-timeline-item::before {
    background: #2c3062;
    border: 2px solid #fff;
    border-radius: 50%;
    content: "";
    height: 18px;
    width: 18px;
    left: -9px;
    position: absolute;
    top: 16px;
    z-index: 1;
}

/* ========================================
   GSC PAGE — Stats / Fun Fact Area
   ======================================== */
.fun-fact-area {
    background: url(../images/map.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
}

.counter-value {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.8rem;
}

/* ========================================
   GSC PAGE — Swiper Navigation
   ======================================== */
.swiper-second-next,
.swiper-second-prev {
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: linear-gradient(264deg, rgba(12,155,177,1) 0%, rgba(43,44,95,1) 100%);
}

.swiper-second-next::after,
.swiper-second-prev::after {
    font-size: 12px;
    color: #fff;
}

.swiper-second-next {
    margin-right: -0.5rem;
}

.swiper-second-prev {
    margin-left: -0.5rem;
}

/* ========================================
   GSC PAGE — Bottom Shape
   ======================================== */
.bottom-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
}

/* ========================================
   GSC PAGE — Inline SVG fix
   ======================================== */
.gsc-icon-inline svg {
    display: inline-block;
}

/* ========================================
   MODAL SLIDE-IN ANIMATION
   ======================================== */
@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
