* {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: Arial, Helvetica, sans-serif;
        }

        body {
        background: #fff;
        }

        .cards-wrapper {
        display: flex;
        gap: 0;
        /*width: 70vw; */     /* 80% of the screen width */
        max-width: none;  /* remove fixed constraint */
        margin: 0 auto;   /* center it */
        }




        .card {
        position: relative;
        flex: 1;
        height: 200px !important;
        overflow: visible; /* allow red panel to grow */
        cursor: pointer;
        margin-top: -10%;
        margin-left: -3px;
        }


        .image {
        width: 100%;
        height: 100%;
        overflow: hidden;
        }

        .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
        }

        /* Red panel */
        .red-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 80px;
        height: 100%;
        background: #c6002b;
        color: #fff;
        padding: 20px;
        transition: width 0.5s ease, box-shadow 0.5s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 2;
        }

        /* Shadow below red panel */
        .red-panel::after {
        content: "";
        position: absolute;
        bottom: -30px;
        left: 20px;
        width: 90%;
        height: 30px;

        background: rgba(0, 0, 0, 0.35);
        filter: blur(46px);

        transform: skewX(-65deg);
        opacity: 0;

        transition:
            opacity 0.4s ease,
            transform 0.4s ease;
        z-index: -1;
        }


        .red-panel h3 {
        font-size: 18px;
        margin-bottom: -220px;
        //line-height: 1;
        white-space: nowrap;       /* force single line */
        //overflow: hidden;
        text-overflow: ellipsis;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        transition: all 0.5s ease;  
        }
        .panel1 h3 {
        margin-bottom: -328px;
        }

        .red-panel p {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.4;
        opacity: 0;
        transform: translateX(-10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        }

        /* Hover effects */
        .card:hover img, .card:hover .image {
        transform: scale(1.1);
        height: 150%;
        margin-left: 20px;
        
        }

        .card:hover .red-panel {
        width: 75%;
        height: 120%;
        top: -30px;
        box-shadow:
            90px 25px 45px rgba(0, 0, 0, 0.35), 5px 5px 10px rgba(0, 0, 0, 0.2);
            margin-left: -2px;
        }

        .card:hover .red-panel::after {
        opacity: 1;
        transition:
        width 0.5s ease,
        height 0.5s ease,
        top 0.5s ease,
        box-shadow 0.5s ease,
        transform 0.4s ease;
        

        }


        .card:hover .red-panel h3 {
        white-space: normal;       /* allow multiline */
        writing-mode: horizontal-tb;
        transform: rotate(0);
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 0px;
        }


        .card:hover .red-panel p {
        opacity: 1;
        transform: translateX(0);
        font-size: 18px;
        }
        .custom-card-bg {
        --bs-card-bg: false;
        }





        /* HERO */
        .hero {
        height: 100vh;
        overflow: hidden;
        position: relative;
        }

        /* NAVBAR OVERLAY */
        .custom-navbar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 20;
        background: transparent;
        padding-top: 20px;
        }

        /* BRAND */
        .brand-top {
        font-size: 1.1rem;
        letter-spacing: 2px;
        }

        .brand-bottom {
        font-size: 1.1rem;
        font-weight: 800;
        letter-spacing: 2px;
        color: #d91f26;
        }

        /* TOP MENU LINKS */
        .top-links .nav-link {
        font-size: 0.75rem;
        font-weight: 600;
        color: #fff;
        padding-bottom: 6px;
        position: relative;
        }

        .top-links .nav-link.active::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: #fff;
        }

        /* LOGOUT */
        .logout-btn {
        font-size: 0.7rem;
        }

        /* SUB MENU PILLS */
        .pill {
        background: rgba(255,255,255,.85);
        padding: 6px 18px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        cursor: pointer;
        }

        .pill.active {
        background: #fff;
        }

        /* ICON BUTTONS */
        .icon-circle {
        width: 34px;
        height: 34px;
        background: #fff;
        color: #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        }

        /* CAROUSEL */
        .carousel,
        .carousel-inner,
        .carousel-item {
        /*height: 100vh;*/
        }

        .carousel img {
        height: 100%;
        object-fit: cover;
        }

        /* DARK OVERLAY */
        .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        /*background: rgba(0,0,0,0.45);*/
        z-index: 1;
        }

        /* KEEP NAV ABOVE OVERLAY */
        .custom-navbar {
        z-index: 30;
        }


        /* MOBILE MENU BACKGROUND */
        @media (max-width: 991px) {
        /* .navbar-collapse {
            background: rgba(0, 0, 0, 0.85);
            padding: 20px;
            border-radius: 12px;
            margin-top: 10px;
        }*/

        .top-links .nav-link {
            padding: 8px 0;
        }

        .top-links .nav-link.active::after {
            display: none; /* cleaner mobile */
        }
        }

        /*.hero {
        position: relative;
        height: 70vh;
        overflow: hidden;
        }*/
        .hero {
          position: relative;
          height: 100%;
          overflow: hidden;
        }

        /* Dark overlay ON IMAGES */
        .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        /*background: rgba(0, 0, 0, 0.45);*/
        z-index: 2;
        }
        .navbar-brand,
        .top-links .nav-link,
        .logout-btn,
        .pill {
        color: #fff;
        /*text-shadow: 0 2px 6px rgba(0,0,0,0.6);*/
        }
        .pill,
        .icon-circle {
        background: #fff;
        color: #000;
        }
        .carousel            { 
            z-index: 1; }
        .hero::after         { 
            z-index: 2; } /* dark overlay */
        .custom-navbar       { 
            z-index: 30;
         }
         
        #heroCarousel{
            margin-top: -149px;;
        }

        .menu{
            border-bottom: 1px solid white;
        }
        .titles {
            display: flex;       /* 1. Set the container to a flex display */
            align-items: center; /* 2. Vertically align the text and the line */
            color: #000000;
        }

        .titles::after {
            content: '';         /* 3. The content property is required for pseudo-elements */
            flex: 1;             /* 4. Allow the pseudo-element (the line) to grow and fill available space */
            margin-left: 1rem;   /* 5. Add a gap between the text and the line */
            height: 4px;       /* 6. Define the thickness of the line */
            background-color: #000; /* 7. Set the line color */
        }
        .titles2 {
            display: flex;       /* 1. Set the container to a flex display */
            align-items: center; /* 2. Vertically align the text and the line */
            color: #c6002b;
        }

        .titles2::after {
            content: '';         /* 3. The content property is required for pseudo-elements */
            flex: 1;             /* 4. Allow the pseudo-element (the line) to grow and fill available space */
            margin-left: 1rem;   /* 5. Add a gap between the text and the line */
            height: 4px;       /* 6. Define the thickness of the line */
            background-color: #c6002b; /* 7. Set the line color */
            color: #c6002b;
        }
        .grdbg{
            /* Equivalent to -90deg */
background-image: linear-gradient(to top, #EDEDED 0%, #ffffff 35%, #ffffff 100%);

        }

.btn-light{
  border: solid 2px white;
  background: none;
}






        /***---------------------------***/
        
/* Section */
.promo-section {
  background: #c6002b;
  padding: 20px 0;
  position: relative;
}

/* Wrapper defines visible area (4 cards) */
.promo-wrapper {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

/* Scroll track */
.promo-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
}

/* Hide scrollbar */
.promo-track::-webkit-scrollbar {
  display: none;
}

/* Card = FIXED WIDTH */
.promo-card {
  flex: 0 0 calc(100% / 4); /* 4 cards visible */
  height: 420px;
  position: relative;
  overflow: hidden;
  margin: 4px;
}

/* Image stays perfect */
.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Overlay never changes layout */
.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover */
.promo-card:hover img {
  transform: scale(1.05);
}

.promo-card:hover .promo-overlay {
  opacity: 1;
}

/* Text */
.promo-overlay h6 {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.promo-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.promo-overlay p {
  font-size: 14px;
  margin-bottom: 12px;
}

/* Scroll buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}

.scroll-btn.left { left: 10px; }
.scroll-btn.right { right: 10px; }

.scroll-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Mobile */
@media (max-width: 992px) {
  .promo-card {
    flex: 0 0 80%;
  }
}
.hero-watermark {
  position: absolute;
  bottom: -20px;
  left: -5px;
  font-size: 49px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #c6002b;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  width: 108% !important;
}

.scroll-btn.left {
    background-color: transparent;
    border: solid thick white;
    color: #fff;                /* Icon color */
    
}
.scroll-btn.scroll-btn.right {
    background-color: transparent;
    border: solid thick white;
    color: #fff;                /* Icon color */
    
}



/*-------------*/
/* Bar background */
.breadcrumb-bar {
  background: #555; /* dark grey */
  padding: 14px 24px;
}

/* Remove default list styling */
.breadcrumb-nav {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

/* Items */
.breadcrumb-nav li {
  display: flex;
  align-items: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

/* Links */
.breadcrumb-nav a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.breadcrumb-nav a:hover {
  opacity: 0.8;
}

/* Chevron separator */
.breadcrumb-nav li:not(:last-child)::after {
  content: "›";
  margin: 0 12px;
  font-size: 16px;
  opacity: 0.8;
}

/* Active item */
.breadcrumb-nav .active {
  opacity: 0.9;
  font-weight: 500;
}



.text-bg-dark {
  color: #fff !important;
  background-color: RGB(0, 0, 0) !important;
}
@media screen and (min-width: 800px) and (max-width: 1920px) {
  .cards-wrapper{
    width: 100%!important;
  }
  .card {
        margin-top: -5%!important;
        }
}

@media screen and (width: 1280px) and (height: 950px) {
  .cards-wrapper{
    width: 100%!important;
  }
  .card {
        margin-top: -15%!important;
        }
}
/*
@media (max-width: 1920px) {
  .cards-wrapper{
    width: 100%!important;
  }
  .card {
        margin-top: -5%!important;
        }
}
@media (max-width: 1366px) {
  .cards-wrapper{
    width: 100%!important;
  }
  .card {
        margin-top: -5%!important;
        }
}
@media (max-width: 1280px) {
  .cards-wrapper{
    width: 100%!important;
  }
  .card {
        margin-top: -10%!important;
        }
}
@media (max-width: 1280px and ) {
  .cards-wrapper{
    width: 100%!important;
  }
  .card {
        margin-top: -10%!important;
        }
}
*/
@media (max-width: 1024px) {
.cards-wrapper{
    width: 100%!important;
  }
  .card {
        margin-top: -15%!important;
        }
}
@media (max-width: 950px) {
  .cards-wrapper{
    width: 100%;
  }
  .card {
    margin-top: -115%;
  }
}      
      
      
      
      
      
      
      
      
      @font-face {
        font-family: 'NissanBrandRegular'; /* A name you choose to use later */
        src: url('../assets/fonts/NissanBrandRegular.OTF') format('oft'),
            url('./assets/fonts/NissanBrandRegular.ttf') format('ttf'); /* Fallback formats */
        font-weight: normal;
        font-style: normal;
      }
      @font-face {
        font-family: NissanBrandRegular;
        src: url(../fonts/NissanBrandRegular.otf)
        }

        @font-face {
        font-family: NissanBrandBold;
        src: url(../fonts/NissanBrandBold.ttf);
        url('./assets/fonts/NissanBrandBold.ttf') format('ttf');
        font-weight: bold;
        }
        h1,h2,h3,h4,h5{
            font-family: NissanBrandBold;
        }

        *,p {
        font-family: NissanBrandRegular;
        }
        

.navbar-inner, .bg-body-tertiary, .bg-dark {
  background: transparent !important;
}

.navbar, .navbar-expand-lg, .navbar-dark, .bg-dark{
  background: transparent !important;
}


@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700");

// Colors
$navbar-white: #fafafa;
$navbar-black: #131313;
$navbar-active-color: #fafafa;
$navbar-bg-active-color: #ff9900;
$bg-light-blue: #00c6ff;
$bg-dark-blue: #0072ff;

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
}
body {
  font-family: "Open Sans", sans-serif;
  background: #e0e0e0;
}
.jumbo {
  padding-top: 100px;
  min-height: 200vh;
}

// On Shrink
.shrink {
  .navbar {
    color: $navbar-white;
    background: $bg-light-blue;
    background: -webkit-linear-gradient(55deg,$bg-light-blue 10%,$bg-dark-blue 90%);
    background: linear-gradient(35deg,$bg-light-blue 10%,$bg-dark-blue 90%);
  }
}



/*------Gallery-------*/
.gallery {
  padding: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: 260px;
  gap: 20px;
}

/* Image wrapper */
.img {
  overflow: hidden;
  border-radius: 6px;
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Row 1 */
.r1-left {
  grid-column: 1 / 2;
}

.r1-right {
  grid-column: 2 / 3;
}

/* Row 2 (flipped) */
.r2-left {
  grid-column: 2 / 3; /* smaller column first */
}

.r2-right {
  grid-column: 1 / 2; /* larger column second */
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .r2-left,
  .r2-right {
    grid-column: auto;
  }
}

.program-rules {
  font-family: "Nissan", Arial, sans-serif;
  //font-size: 14px;
  color: #222;
  line-height: 1.6;
  
}

/* Section spacing */
.rule-section {
  margin-bottom: 28px;
}

/* Headings */
.rule-section h3 {
  color: #c6002b; /* Nissan red */
  //font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 40px;
}

/* Red line before heading */
.rule-section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 3px;
  background: #c6002b;
  transform: translateY(-50%);
}

/* Sub headings */
.rule-section h4 {
  //font-size: 14px;
  font-weight: 700;
  margin: 16px 0 6px;
}

/* Paragraphs */
.rule-section p {
  margin: 6px 0;
}

/* Notes */
.rule-section .note {
  //font-size: 13px;
  font-style: italic;
}

/* Lists */
.rule-section ul {
  margin: 6px 0 10px 18px;
  padding: 0;
}

.rule-section ul li {
  margin-bottom: 4px;
}
.rules-bg {
  position: relative;
  overflow: hidden; /* hides overflow outside block */
}

/* Background text */
.rules-bg::after {
  content: "RULES";
  position: absolute;

  right: -310px;
  top: 25%;

  transform: translateY(-50%) rotate(90deg);

  font-size: 200px;
  font-weight: 800;
  letter-spacing: 6px;

  color: #000000; /* light grey */
  opacity: 1;

  z-index: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0.05  ;
  
}

/* Make sure content stays above */
.rules-bg > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .rules-bg::after {
    display: none;
  }
}

.rulestable{
  
  border-collapse: separate;
  border-spacing: 0 15px; /* 0 for horizontal spacing, 15px for vertical */

}





/*
body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}*/

/* ==== FULL BLACK SECTION BACKGROUND ==== */

.rules-section {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 0;
    margin: 0;
}

.rules-wrapper {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* ==== LEFT CONTENT COLUMN ==== */

.rules-left {
    width: 100%;
    padding: 50px 50px 50px 100px;
    position: relative;
    box-sizing: border-box;
}

/* Vertical title + line container */
.rules-title-wrap {
    position: absolute;
    top: 40px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Vertical rotated title */
.rules-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Vertical divider line */
.rules-title-line {
    width: 1px;
    height: 400px;
    background: #fff;
}

/* Content formatting */
.rules-content p {
    font-size: 14px;
    line-height: 1.4rem;
    margin-bottom: 10px;
}
/*
.rules-content table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
    border: 1px solid #fff;
}


.rules-content th,
.rules-content td {
    border: 1px solid #fff;
    padding: 10px;
    text-align: left;
    padding: 15px;
}*/
/* === TABLE DESIGN MATCH === */
.rules-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    font-size: 14px;
    color: #fff;
}

/* Header row */
.rules-table thead th {
    background: #1a1a1a; /* Dark grey header */
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 12px;
    border: 1px solid #fff;
    letter-spacing: 0.5px;
}

/* Table body cells */
.rules-table tbody td {
    padding: 10px 12px;
    border: 1px solid #fff;
}

/* Optional: subtle alternating row tone */
.rules-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.05);
}

/* Column alignment (first left, second center) */
.rules-table td:first-child,
.rules-table th:first-child {
    text-align: left;
}

.rules-table td:last-child,
.rules-table th:last-child {
    text-align: center;
    width: 120px; /* sets predictable width like design */
}
.rules-table  {
  border-spacing: 10px !important; /* Adds 10px spacing horizontally and vertically */
  border-collapse: separate !important; /* This is the default, but good practice to include */
}

/* ==== RIGHT BACKGROUND COLUMN ==== */

.rules-right-bg {
    width: 35%;
    background-image: url("../images/rules-bg-img.jpg"); /* Replace this */
    background-repeat: repeat-y;
    background-size: contain;
    background-position: right top;
}

/* ==== RESPONSIVE ==== */

@media (max-width: 1000px) {
    .rules-wrapper {
        flex-direction: column;
    }

    .rules-left {
        width: 100%;
        padding: 40px 30px 40px 70px;
    }

    .rules-right-bg {
        width: 100%;
        height: 200px;
        background-repeat: repeat-x;
        background-size: cover;
    }

    .rules-title-line {
        height: 250px;
    }
}

@media (max-width: 600px) {
    .rules-left {
        padding: 40px 20px 40px 50px;
    }

    .rules-title {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .rules-content p {
        font-size: 13px;
    }
        .hero {
          position: relative;
          height: 22vh;
          overflow: hidden;
        }
}

.carousel-caption {
  position: absolute!important;
  right: 96%!important;
  bottom: 15%!important;
  left: 7%!important;
  padding-top: 1.25rem!important;
  padding-bottom: 1.25rem!important;
  color: var(--bs-carousel-caption-color)!important;
  text-align: left!important;
  width: 300px;
}
textarea {
            display: block;
            width: 100%;
            height: calc(1.5em + 0.75rem + 2px);
            min-height: 132px;
            padding: 0.375rem 0.75rem;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.05;
            color: #495057;
            background-color: #fff;
            background-clip: padding-box;
            border: 1px solid #ced4da;
            border-radius: 0.25rem;
            transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
input[type=radio]:checked + label>img {
            border: 1px solid #fff;
            box-shadow: 0 0 0px 1px #000;
        }
        input[type=radio] + label>img {
            /*border: 1px dashed #444;
            width: 10px;
            height: 150px;
            transition: 500ms all;*/
}



input[type="password"] {
            display: block;
            width: 100%;
            height: calc(1.5em + 0.75rem + 2px);
            padding: 0.375rem 0.75rem;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.05;
            color: #495057;
            background-color: #fff;
            background-clip: padding-box;
            border: 1px solid #ced4da;
            border-radius: 0.25rem;
            transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }
        input[type="text"] {
            display: block;
            width: 100%;
            height: calc(1.5em + 0.75rem + 2px);
            padding: 0.375rem 0.75rem;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.05;
            color: #495057;
            background-color: #fff;
            background-clip: padding-box;
            border: 1px solid #ced4da;
            border-radius: 0.25rem;
            transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }	  
        
        input[type="submit"] {
            background-color: #A4012F !important;
            border-color: #A4012F !important;
            border-radius: 0px;
            color:#fff;
            border-radius: 5px;
        }



.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #c6002b!important;
  --bs-btn-border-color: #c6002b!important;
}
/*----login----*/
* {
    /*margin: 0;
    padding: 0;
    box-sizing: border-box;*/
    font-family: NissanBrandRegular!important;
}

body {
    /*background: #fff;
    overflow: hidden;/*/
}

.login-wrapper {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* ========= LEFT PANEL ========= */
.left-panel {
    width: 65%;
    background-image: url("../images/Navara_Warrior_04_Static_no_logo_Square-2.jpg"); /* replace this */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: space-between;
}

/* Nissan Warriors Logo */
.logo-area {
    margin: 30px;
    line-height: 1.2;
}

.logo-area h2 {
    font-size: 32px;
    color: #fff;
    font-weight: 600;
}

.logo-area .red {
    color: #c4062b; /* red from the design */
}

/* Vertical LOGIN Bar */
.login-vertical {
    background: #c4062b;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 2px;
}

/* ========= RIGHT PANEL ========= */
.right-panel {
    width: 35%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.welcome-title {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
}

.welcome-sub {
    color: #999;
    margin-bottom: 40px;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: NissanBrandRegular;
}

.input-field {
    width: 80%;
    padding: 14px;
    margin-bottom: 20px;
    border: 2px solid #000;
    border-radius: 6px;
    font-size: 14px;
}

.login-btn {
    width: 80%;
    padding: 14px;
    background: #c4062b;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.login-btn:hover {
    opacity: 0.9;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 900px) {
    .login-wrapper {
        flex-direction: column;
    }

    .left-panel {
        width: 100%;
        height: 50vh;
    }

    .right-panel {
        width: 100%;
        height: 50vh;
    }
}
.newcard {
  background-color: #c6002b;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
#search{
        width:100%;
}
center table {
        width:50%;
}
 @media (min-width: 1474px) {
  .carousel-caption {
  right: 96% !important;
  bottom: 16% !important;
  left: 7% !important;
}
         center h3,  {
                 width:80%;
                 margine: 0 auto;
         }
}
.alert{
        width:80%;
}
.box a, .c-btn {
  background-color: #A4012F;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
input[type="submit"] {
        /*
        background-color: #c6002b;
        border: none;
        color: white;
        padding: 15px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
        margine-top:30px;*/
        
  background-color: #A4012F;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

  
center h3::before {
  content: "";
  display: block;
  width: 50px;       /* Set line width */
  height: 4px;       /* Set line height (thickness) */
  background-color: #A4012F; /* Line color */
  margin-bottom: 8px; /* Space between line and text */
margine-leftL0px;
}

.calltype{
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: .375rem 2.25rem .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.list-contact-table{
        margin: auto !important;
        width:80% !important;
}

#externalform{
/*width: 80% !important;*/
}
@media (min-width: 1200px) {
        .carousel-caption {
    right: 96% !important;
    top: 36% !important;
    left: 7% !important;
  }
   center h3 {
    width: 100%;
  }
        .list-contact-table, .contactform {
                width:80% !important;
                margin: auto;
        }
        #contactform table{
                width:100% !important;
                margin: auto;
        }/**/
        #search, .contactform{
        width: 100% !important;
      }
  .list-contact-table {
    width:80% !important;
    margine-left: auto !important;
  }
        
   center h1, center h2,center h3, center h4, center h5 {
    text-transform: uppercase;
    margin-top: 50px!important;
    margin-bottom: 50px!important;
  }
center h3{
  position: relative;
text-align:left;
  margin-top: 20px; /* Space for the line */
}
}


@media (min-width: 1280px) {
.carousel-caption {
    right: 96% !important;
    top: 36% !important;
    left: 7% !important;
  }
}




































