h1 {
        font-family: 'Montserrat', sans-serif;
    }

/* top navbar  */
.top-navbar {
    background: #000;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    color: #00c8ff;
}

.contact-item a,
.auth-links a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.contact-item a:hover,
.auth-links a:hover {
    color: #00c8ff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s;
}

.social-icons a:hover {
    background: #00c8ff;
    color: #000;
    border-color: #00c8ff;
}

.auth-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.auth-links i {
    color: #00c8ff;
}

.auth-links span {
    color: rgba(255,255,255,.4);
}

@media(max-width:768px){

    .contact-item,
    .social-icons,
    .auth-links{
        justify-content:center;
        margin:8px 0;
    }

    .top-navbar{
        text-align:center;
    }
}

/* header  */

/* Header */
.gts-header {
    background: linear-gradient(
        270deg,
        #00c6ff 0%,
        #0099ff 50%,
        #0066cc 100%
    );
    
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* Logo */
.gts-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-decoration: none;
}

.gts-main {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

.gts-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
}

/* Menu */
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 600;
    padding: 20px 15px !important;
    transition: all .3s;
}

.navbar-nav .nav-link:hover {
    color: #ffe082 !important;
    transform: translateY(-2px);
}

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.dropdown-item {
    padding: 10px 20px;
}

.dropdown-item:hover {
    background: #f3f8ff;
    color: #0077ff;
}

/* Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-track {
    background: rgba(255,255,255,.15);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
}

.btn-track:hover {
    background: rgba(255,255,255,.25);
    color: #fff;
}

.btn-signin {
    background: #fff;
    color: #0077ff;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.btn-signin:hover {
    background: #ffe082;
    color: #000;
    text-decoration: none;
}

/* Mobile */
@media(max-width:991px){

    .nav-actions{
        margin-top:15px;
        flex-direction:column;
        align-items:flex-start;
    }

    .navbar-nav{
        padding-top:15px;
    }
}

/* @media (min-width: 992px) {

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu {
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease;
    }

} */
 /* Desktop Hover Only */
@media (min-width: 992px) {

    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .navbar .dropdown-menu {
        margin-top: 0;
    }
}

/* Mobile Dropdown */
@media (max-width: 991.98px) {

    .navbar .dropdown-menu {
        border: none;
        background: rgba(255,255,255,.05);
        padding-left: 15px;
        display: none;
    }

    .navbar .dropdown-menu.show {
        display: block;
    }
}

/* =========================
   FOOTER
========================= */

.gts-footer {

    position: relative;

    background: linear-gradient(
        135deg,
        #0f172a,
        #1e293b,
        #0f172a
    );

    color: #fff;

    overflow: hidden;
}

/* Animated Glow */

.gts-footer::before {

    content: '';

    position: absolute;

    width: 400px;
    height: 400px;

    background: rgba(37,99,235,.15);

    border-radius: 50%;

    filter: blur(120px);

    top: -100px;
    left: -100px;
}

.gts-footer::after {

    content: '';

    position: absolute;

    width: 350px;
    height: 350px;

    background: rgba(6,182,212,.15);

    border-radius: 50%;

    filter: blur(120px);

    bottom: -100px;
    right: -100px;
}

/* Cards */

.footer-card {

    position: relative;

    height: 100%;

    padding: 25px;

    border-radius: 20px;

    background: rgba(255,255,255,.05);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,.08);

    transition: .4s;
}

.footer-card:hover {

    transform: translateY(-6px);

    background: rgba(255,255,255,.08);

    box-shadow:
    0 10px 30px rgba(0,0,0,.2);
}

/* Brand */

.footer-brand h2 {

    font-weight: 800;

    margin: 0;

    background: linear-gradient(
        90deg,
        #60a5fa,
        #22d3ee
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand span {

    font-size: .9rem;

    color: #cbd5e1;
}

/* Headings */

.footer-card h5 {

    color: #fff;

    margin-bottom: 20px;

    position: relative;
}

.footer-card h5::after {

    content: '';

    position: absolute;

    width: 40px;
    height: 3px;

    background: #3b82f6;

    left: 0;
    bottom: -8px;

    border-radius: 20px;
}

/* Links */

.footer-links {

    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-links li {

    margin-bottom: 10px;
}

.footer-links a {

    color: #cbd5e1;

    text-decoration: none;

    transition: .3s;
}

.footer-links a:hover {

    color: #38bdf8;

    padding-left: 8px;
}

/* Contact */

.contact-item {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 12px;

    color: #cbd5e1;
}

.contact-item i {

    color: #38bdf8;

    width: 20px;
}

/* Social */

.footer-social {

    display: flex;

    gap: 10px;
}

.footer-social a {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: white;

    transition: .3s;
}

.footer-social a:hover {

    background: #0d6efd;

    transform: translateY(-5px);
}

/* Divider */

.footer-divider {

    margin-top: 40px;

    margin-bottom: 20px;

    height: 1px;

    background: rgba(255,255,255,.1);
}

/* Mobile */

@media(max-width:576px){

    .footer-card{
        padding:15px;
    }

    .footer-brand h2{
        font-size:1.5rem;
    }

    .footer-links a,
    .contact-item{
        font-size:.85rem;
    }
}
/* hero section  */

/* ===================================
   GTS HERO SECTION
=================================== */
/* .gts-hero{
    background:
    radial-gradient(circle at center,
    rgba(255,255,255,.05) 1px,
    transparent 1px),
    linear-gradient(to right,#00334d,#012b55,#001f3f);

    background-size:40px 40px,cover;

    color:#fff;
    margin:0;
    min-height:80vh;
    display:flex;
    align-items:center;
    overflow:hidden;
} */
 .gts-hero{
    background:
    radial-gradient(
        circle at center,
        rgba(255,255,255,.05) 1px,  
        transparent 1px
    ),
    linear-gradient(
        360deg,
        #00c6ff 0%,
        #0072ff 20%,
        #012b55 100%
    );

    background-size:40px 40px,cover;

    color:#fff;
    margin:0;
    min-height:80vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

/* Heading */
.hero-title{
    font-size:4rem;
    font-weight:800;
    line-height:1.3;
   
}

.hero-desc{
    font-size:1.15rem;
    color:#d5dde5;
    line-height:1.8;
    max-width:650px;
}

/* Buttons */
.hero-buttons{
    display:flex;
    gap:12px;
    margin-top:30px;
}

.btn-explore,
.btn-results{
    padding:12px 25px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    border:none;
    transition:.3s;
}

.btn-explore{
    background:linear-gradient(to right,#00c896,#28d17c);
    color:#fff;
}

.btn-results{
    background:#ffc107;
    color:#000;
}

.btn-explore:hover,
.btn-results:hover{
    transform:translateY(-2px);
}

/* Small Feature Cards */
.hero-card{
    border-radius:18px;
    height:170px;
    text-align:center;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transition:.3s;
    cursor:pointer;
}
.hero-card-link{
    text-decoration:none;
    display:block;
    color:inherit;
}

.hero-card-link:hover{
    text-decoration:none;
    color:inherit;
}

.hero-card{
    cursor:pointer;
    transition:all .3s ease;
}

.hero-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.hero-card:hover{
    transform:translateY(-6px);
}

.hero-card i{
    font-size:30px;
    margin-bottom:15px;
}

.hero-card h5{
    font-size:18px;
    font-weight:700;
    margin-bottom:6px;
}

.hero-card p{
    font-size:14px;
    margin:0;
}

/* Card Colors */
.green-card{
    background:linear-gradient(135deg,#16a085,#2ecc71);
}

.blue-card{
    background:linear-gradient(135deg,#0791ee,#21dcf0);
}

.yellow-card{
    background:linear-gradient(135deg,#f39c12,#ffcc00);
}

.red-card{
    background:linear-gradient(135deg,#e475a1,#d50db7);
}

@media (max-width:768px){

    .gts-hero{
        padding:50px 0;
        min-height:auto;
    }

    .hero-title{
        font-size:2.5rem;
        text-align:center;
    }

    .hero-desc{
        text-align:center;
        font-size:1rem;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .btn-explore,
    .btn-results{
        padding:10px 18px;
        font-size:14px;
    }

    .hero-card{
        height:140px;
    }

    .hero-card h5{
        font-size:16px;
    }

    .hero-card p{
        font-size:12px;
    }
}

/* whatsapp floating button  */

/* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            z-index: 9999;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        /* Hover Effect */
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }

        /* Pulse Animation */
        .whatsapp-float::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(37, 211, 102, 0.5);
            animation: whatsapp-pulse 2s infinite;
            z-index: -1;
        }

        .whatsapp-float,
        .whatsapp-float:hover,
        .whatsapp-float:focus,
        .whatsapp-float:active {
            text-decoration: none !important;
            color: #fff;
        }

        .whatsapp-float i {
            line-height: 1;
        }

        @keyframes whatsapp-pulse {
            0% {
                transform: scale(1);
                opacity: 0.7;
            }

            70% {
                transform: scale(1.5);
                opacity: 0;
            }

            100% {
                transform: scale(1);
                opacity: 0;
            }
        }

        /* ==================================
   GTS NOTICE BOARD
================================== */

.gts-notice-board{
    margin:25px 0;
}

.notice-wrapper{
    background:#fff;
    border-radius:50px;
    overflow:hidden;
    display:flex;
    align-items:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border:1px solid #eef2f7;
}

/* Left Label */

.notice-label{
    min-width:220px;
    background:linear-gradient(
        to right,
        #06b6d4,
        #2563eb
    );
    color:#fff;
    padding:18px 25px;
    font-weight:700;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
}

/* Ticker Area */

.notice-ticker{
    flex:1;
    overflow:hidden;
    white-space:nowrap;
    position:relative;
    padding:15px 0;
}

.ticker-content{
    display:inline-block;
    white-space:nowrap;
    animation:ticker 35s linear infinite;
}

.ticker-content:hover{
    animation-play-state:paused;
}

.ticker-item{
    display:inline-flex;
    align-items:center;
    margin-right:80px;
    font-weight:600;
    color:#1f2937;
    font-size:15px;
}

.ticker-item i{
    color:#22c55e;
    margin-right:10px;
}

/* Animation */

@keyframes ticker{
    0%{
        transform:translateX(30%);
    }
    100%{
        transform:translateX(-100%);
    }
}

@media(max-width:768px){

    .notice-wrapper{
        flex-direction:column;
        border-radius:15px;
    }

    .notice-label{
        width:100%;
        min-width:100%;
        border-radius:15px 15px 0 0;
    }

    .notice-ticker{
        width:100%;
        padding:12px 0;
    }

    .ticker-item{
        font-size:13px;
        margin-right:50px;
    }
}

/* testing process  */

/* SECTION */
.workflow-section{
    background: linear-gradient(135deg,#f8fbff,#eef5ff);
    position: relative;
}

/* Background Shapes */
.bg-shape{
    position:absolute;
    border-radius:50%;
    filter: blur(80px);
    opacity:.3;
}

.shape1{
    width:300px;
    height:300px;
    background:#0d6efd;
    top:-100px;
    left:-100px;
    animation: float 8s ease-in-out infinite;
}

.shape2{
    width:250px;
    height:250px;
    background:#20c997;
    right:-80px;
    bottom:-80px;
    animation: float 10s ease-in-out infinite;
}

/* Timeline Line */
.timeline-line{
    position:absolute;
    top:60px;
    left:10%;
    width:80%;
    height:4px;
    background:linear-gradient(
        90deg,
        #0d6efd,
        #20c997,
        #0d6efd
    );
    background-size:300% 100%;
    animation: lineMove 4s linear infinite;
    z-index:0;
}

.workflow-card{
    position:relative;
    z-index:1;
    background:rgba(255,255,255,.75);
    backdrop-filter: blur(12px);
    border-radius:25px;
    padding:35px 25px;
    text-align:center;
    transition:.4s;
    border:1px solid rgba(255,255,255,.5);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.workflow-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(13,110,253,.2);
}

/* Step Number */
.step-number{
    width:45px;
    height:45px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    line-height:45px;
    margin:0 auto 20px;
    font-weight:700;
    font-size:18px;
    box-shadow:0 0 20px rgba(13,110,253,.4);
}

/* Icons */
.icon-box{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#e7f1ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    color:#0d6efd;
    transition:.4s;
}

.icon-box.success{
    color:#198754;
    background:#e9fff2;
}

.icon-box.warning{
    color:#f59f00;
    background:#fff8e1;
}

.icon-box.info{
    color:#0dcaf0;
    background:#e8fbff;
}

.workflow-card:hover .icon-box{
    transform:scale(1.15) rotate(8deg);
}

.workflow-card h5{
    margin-top:20px;
    font-weight:700;
}

.workflow-card p{
    color:#6c757d;
    font-size:14px;
    margin-bottom:0;
}

/* Animations */
@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-30px);
    }
}

@keyframes lineMove{
    0%{
        background-position:0% 50%;
    }
    100%{
        background-position:100% 50%;
    }
}

/* Mobile */
@media(max-width:991px){

.timeline-line{
    display:none;
}

.workflow-card{
    margin-top:10px;
}
}

/* ===============================
   Animated Gradient Background
================================ */

.model-test-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;

    background: linear-gradient(
        -45deg,
        #0f172a,
        #1e3a8a,
        #2563eb,
        #06b6d4
    );

    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
}

/* Moving Gradient */

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Floating Circles */

.model-test-section::before,
.model-test-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.model-test-section::before {
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,.15);
    top: -100px;
    left: -100px;
    animation: float1 8s infinite alternate;
}

.model-test-section::after {
    width: 450px;
    height: 450px;
    background: rgba(255,255,255,.08);
    bottom: -150px;
    right: -150px;
    animation: float2 10s infinite alternate;
}

@keyframes float1 {
    from { transform: translateY(0px); }
    to { transform: translateY(100px); }
}

@keyframes float2 {
    from { transform: translateY(0px); }
    to { transform: translateY(-80px); }
}

/* ===============================
   Glass Cards
================================ */

.glass-card {

    position: relative;

    text-align: center;

    padding: 35px 20px;

    border-radius: 25px;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.15);

    transition: all .4s ease;

    overflow: hidden;

    height: 100%;
}

/* Glow Effect */

.glass-card::before {
    content: "";

    position: absolute;

    top: -100%;
    left: -100%;

    width: 200%;
    height: 200%;

    background: linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,.2),
        transparent
    );

    transform: rotate(25deg);

    transition: .8s;
}

.glass-card:hover::before {
    top: 100%;
    left: 100%;
}

/* Hover */

.glass-card:hover {
    transform: translateY(-12px) scale(1.03);

    background: rgba(255,255,255,.12);

    box-shadow:
        0 20px 50px rgba(0,0,0,.25),
        0 0 30px rgba(255,255,255,.15);
}

/* ===============================
   Icons
================================ */

.icon-box {

    width: 80px;
    height: 80px;

    margin: auto;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #ffffff,
        #dbeafe
    );

    box-shadow:
        0 10px 30px rgba(255,255,255,.25);

    margin-bottom: 20px;
}

.icon-box i {
    font-size: 2rem;
    color: #2563eb;
}

/* ===============================
   Counter
================================ */

.counter {

    font-size: 3rem;

    font-weight: 800;

    color: #fff;

    margin-bottom: 10px;

    text-shadow:
        0 0 10px rgba(255,255,255,.3);
}

.glass-card h6 {

    color: rgba(255,255,255,.9);

    text-transform: uppercase;

    letter-spacing: 1px;

    font-weight: 600;
}

/* Entrance Animation */

.glass-card {
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* register and login form css */
 .login-card {
      border: none;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    }

    .login-header {
      background: linear-gradient(135deg, #0d6efd, #00b4db);
      color: #fff;
      text-align: center;
      padding: 25px;
    }

    .login-header h3 {
      margin: 0;
      font-weight: 700;
    }

    .login-body {
      padding: 20px 40px !important;
      background: #fff;
    }

    .form-control {
      height: 50px;
      border-radius: 12px;
    }

    .input-group-text {
      border-radius: 12px 0 0 12px;
      background: #f8f9fa;
    }

    .btn-login {
      background: linear-gradient(135deg, #0d6efd, #00b4db);
      border: none;
      border-radius: 12px;
      height: 50px;
      font-weight: 600;
      transition: .3s;
    }

    .btn-login:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(13, 110, 253, .3);
    }

    .register-btn {
      border-radius: 30px;
      font-weight: 600;
      padding: 8px 20px;
    }

    .auth-links a {
      text-decoration: none;
      font-weight: 600;
    }

    .auth-links a:hover {
      text-decoration: underline;
    }

    .welcome-text {
      color: #6c757d;
      margin-bottom: 25px;
    }

    .login-card {
      border: none;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    }

    .login-header {
      background: linear-gradient(135deg, #0d6efd, #00b4db);
      color: #fff;
      text-align: center;
      padding: 25px;
    }

    .login-body {
      padding: 20px 40px !important;
      background: #fff;
    }

    .register-btn {
      border-radius: 30px;
      padding: 8px 20px;
      font-weight: 600;
    }

    .form-control {
      height: 50px;
      border-radius: 12px;
    }

    .input-group-text {
      border-radius: 12px 0 0 12px;
    }

    #newRegist {
      min-height: 100vh;
    }

    .login-card {
      border: none;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    }

    .login-body {
      padding: 40px;
    }

    @media(max-width:768px) {

      .login-body {
        padding: 25px;
      }

    }

    /* forgot password  page */

    .card {
    transition: all .3s ease;
}

.card:hover {
    transform: translateY(-4px);
}

.btn {
    border-radius: 10px;
}

.form-control {
    border-radius: 10px;
}

.input-group-text {
    border-radius: 10px 0 0 10px;
}