/********** Template CSS **********/
:root {
    --primary: #fab005;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
    
    --bg: #1b1c1f;
    --accent: #fab005;
    --white: #ffffff;
    --slice-bg: #ffffff;
    --slice-color: #111;
    --muted: #9ca3af; 

    --wheel-size: 340px;
    --slice-w: 95px;
    --slice-h: 65px;
    --radius: 85px;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    color: #fab005 !important;
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}
.spinner::after {
    content: "Tivnar";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*color: #000;*/
    font-size: 28px;
    font-weight: bold;
}
@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--light);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--light);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        /*background: #FFFFFF;*/
		background: #000000;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fab005, var(--primary));
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img {
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/contact-us.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-careers {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/careers.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}
.bg-primary { background: linear-gradient(135deg, #fab005, #ffc800); color: #000000 !important; }
.text-primary { color:#fab005 !important; }

.service-box {
    background: linear-gradient(135deg, #fab005, #ffc800);
    border-radius: 14px;
    transition: 0.3s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}
.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.btn-primary {
    color: #000;
    background-color: #fab005;
    border-color: #ffea00;
}

.btn-primary:hover {
    color: #000;
    background-color: #fff;
    border-color: #ffea00;
}

.wheel-wrap {
      width: calc(var(--wheel-size) + 70px);
      height: calc(var(--wheel-size) + 70px);
      position: relative;      
      align-items: center;
      justify-content: center;
      left: 38%;
      top: 25%;
    }

    .ring {
    width: calc(var(--wheel-size) + 135px);
    height: calc(var(--wheel-size) + 135px);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 0 10px var(--accent) inset;
    top: 29%;
    left: 12%;
    transform: translate(-50%, -50%);
    }

    .wheel {
      width: var(--wheel-size);
      height: var(--wheel-size);
      position: relative;
      
      align-items: center;
      justify-content: center;
    }

    .slice {
      position: absolute;
      width: var(--slice-w);
      height: var(--slice-h);
      background: var(--slice-bg);
      color: var(--slice-color);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 500;
      text-align: center;
      transform-origin: 50% calc(50% + var(--radius));
      box-shadow: 0 2px 5px rgba(0,0,0,0.28);
      padding: 6px;
    }

    .slice .label {
      transform: rotate(calc(-1 * var(--r)));
      display: block;
      width: 100%;
    }

    .content {
      max-width: 520px;
    }

    .title {
      font-size: 32px;
      color: var(--accent);
      font-weight: 700;
      margin-bottom: 16px;
    }

    .lead {
      font-size: 17px;
      line-height: 1.5;
      color: #d6d6d6;
    }

    .cta {
      margin-top: 18px;
      color: var(--white);
      text-decoration: underline;
      font-weight: 700;
    }
    .muted {
      background: var(--muted);
    }
    @media (max-width: 1024px) {
      .page { flex-direction: column; text-align: center; }
      .wheel-wrap { margin-bottom: 24px; }
    }

    @media (max-width: 640px) {
      :root {
        --wheel-size: 260px;
        --slice-w: 90px;
        --slice-h: 55px;
        --radius: 75px;
      }
      .title { font-size: 26px; }
      .lead { font-size: 15px; }
      
       .ring{   width: calc(var(--wheel-size) + 135px);
        height: calc(var(--wheel-size) + 125px);
        border-radius: 50%;
        position: absolute;
        box-shadow: 0 0 0 10px var(--accent) inset;
        top: 30%;
        left: 15%;
        transform: translate(-50%, -50%);
    }



    }
	
.site-logo img {
    height: 65px !important;
    width: auto !important;
    margin-left: 24px;
}

@media (max-width: 768px) {
    .site-logo img {
        height: 42px !important;
		margin-left: 0 !important;
    }
    .flex-height { height: 400px; }
}

@media (max-width: 576px) {
    .site-logo img {
        height: 36px !important;
		margin-left: 0 !important;
    }
    .flex-height { height: 400px; }
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8z'/%3e%3c/svg%3e");
}



/* PAGE HEADER */
.fs-page-header {
  background: linear-gradient(135deg, var(--fs-darker) 0%, var(--fs-dark) 60%, #0a2a55 100%);
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}
.fs-page-header::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,163,218,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.fs-page-header .breadcrumb-item,
.fs-page-header .breadcrumb-item a {
  color: var(--fs-muted);
  font-size: 14px;
  text-decoration: none;
}
.fs-page-header .breadcrumb-item.active { color: var(--fs-primary); }
.fs-page-header .breadcrumb-item + .breadcrumb-item::before { color: var(--fs-muted); }

/* SHARED SECTION TITLE (dark bg) */
.fs-section-title {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.fs-section-title::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 50px; height: 3px;
  background: var(--fs-primary);
  border-radius: 2px;
}
.fs-section-title::after {
  content: '';
  position: absolute;
  left: 58px; bottom: 0;
  width: 25px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}
.fs-section-title h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fs-primary);
  margin-bottom: 8px;
}
.fs-section-title h1 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

/* SECTION TITLE (light bg) */
.fs-section-title-light {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.fs-section-title-light::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 50px; height: 3px;
  background: var(--fs-primary);
  border-radius: 2px;
}
.fs-section-title-light::after {
  content: '';
  position: absolute;
  left: 58px; bottom: 0;
  width: 25px; height: 3px;
  background: #ddd;
  border-radius: 2px;
}
.fs-section-title-light h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fs-primary);
  margin-bottom: 8px;
}
.fs-section-title-light h1 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--fs-dark);
  line-height: 1.2;
  margin: 0;
}

/* INTRO SECTION */
.fs-intro-section {
  background: linear-gradient(135deg, var(--fs-darker) 0%, var(--fs-dark) 100%);
  padding: 80px 0;
}
.fs-intro-section p {
  color: var(--fs-muted);
  font-size: 15px;
  line-height: 1.85;
}
.fs-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fs-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(6,163,218,0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.fs-stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--fs-primary);
}
.fs-stat-lbl {
  font-size: 12px;
  color: var(--fs-muted);
  margin-top: 4px;
}
.fs-intro-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(6,163,218,0.15);
}
.fs-intro-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 14px 18px;
  transition: background 0.2s;
}
.fs-intro-item:hover { background: rgba(6,163,218,0.08); }
.fs-intro-item i {
  font-size: 18px;
  color: var(--fs-primary);
  width: 22px;
  flex-shrink: 0;
}
.fs-intro-item span {
  color: #ccc;
  font-size: 14px;
}

/* SERVICES SECTION */
.fs-services-section {
  background: var(--fs-light-bg);
  padding: 90px 0;
}
.fs-service-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(6,163,218,0.12);
  padding: 36px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.fs-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--fs-primary);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}
.fs-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(6,163,218,0.12);
  border-color: rgba(6,163,218,0.3);
}
.fs-service-card:hover::before { transform: scaleY(1); }
.fs-service-num {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 42px;
  font-weight: 700;
  color: rgba(6,163,218,0.07);
  line-height: 1;
  transition: color 0.3s;
}
.fs-service-card:hover .fs-service-num { color: rgba(6,163,218,0.13); }
.fs-service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(6,163,218,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s;
}
.fs-service-card:hover .fs-service-icon { background: var(--fs-primary); }
.fs-service-icon i {
  font-size: 22px;
  color: var(--fs-primary);
  transition: color 0.3s;
}
.fs-service-card:hover .fs-service-icon i { color: #fff; }
.fs-service-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--fs-dark);
  margin-bottom: 12px;
}
.fs-service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin: 0;
}

/* WHY CHOOSE SECTION */
.fs-why-section {
  background: linear-gradient(135deg, var(--fs-darker) 0%, var(--fs-dark) 100%);
  padding: 90px 0;
}
.fs-why-intro {
  color: var(--fs-muted);
  font-size: 15px;
  line-height: 1.8;
}
.fs-why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px;
  border-radius: 12px;
  transition: background 0.2s;
}
.fs-why-item:hover { background: rgba(255,255,255,0.04); }
.fs-why-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(6,163,218,0.12);
  border: 1.5px solid rgba(6,163,218,0.35);
  display: flex; align-items: center; justify-content: center;
}
.fs-why-icon i { color: var(--fs-primary); font-size: 16px; }
.fs-why-item h6 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.fs-why-item p {
  font-size: 13px;
  color: var(--fs-muted);
  margin: 0;
  line-height: 1.6;
}

/* CTA SECTION */
.fs-cta-section {
  background: var(--fs-primary);
  padding: 60px 0;
}
.fs-cta-section h2 {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.fs-cta-section p {
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-size: 15px;
}
.fs-btn-cta {
  display: inline-block;
  background: #fff;
  color: var(--fs-primary);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.fs-btn-cta:hover {
  background: var(--fs-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* FADE-UP ANIMATION */
.fs-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fsFadeUp 0.65s ease forwards;
  animation-play-state: paused;
}
@keyframes fsFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .fs-intro-stats { grid-template-columns: 1fr 1fr; }
  .fs-stat-card:last-child { grid-column: span 2; }
}

.text-slider {
    position: relative;
    text-align: center;
    padding: 10px;
}

.text-slider .slide {
    display: none;
    animation: fadeIn 1s ease-in-out;
}

.text-slider .slide.active {
    display: block;
}

/* Heading */
.text-slider h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

/* Description */
.text-slider p {
    font-size: 18px;
    color: #ddd;
    max-width: 700px;
    margin: 0 auto;
}

/* Button */
.text-slider .btn {
    margin-top: 15px;
    padding: 8px 20px;
    font-size: 14px;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ✅ Tablet */
@media (max-width: 992px) {
    .text-slider h1 {
        font-size: 36px;
    }

    .text-slider p {
        font-size: 16px;
    }
}

/* ✅ Mobile */
@media (max-width: 768px) {
    .text-slider h1 {
        font-size: 28px;
    }

    .text-slider p {
        font-size: 15px;
        padding: 0 10px;
    }

    .text-slider .btn {
        font-size: 13px;
        padding: 7px 18px;
    }
}

/* ✅ Small Mobile */
@media (max-width: 480px) {
    .text-slider h1 {
        font-size: 22px;
    }

    .text-slider p {
        font-size: 14px;
    }
}

.slider-dots {
    margin-top: 20px;
    text-align: center;
}

.slider-dots .dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots .dot.active {
    background-color: #fab005;
    transform: scale(1.3);
}

.slider-dots .dot:hover {
    background-color: #fff;
}

/* Mobile tweak */
@media (max-width: 768px) {
    .slider-dots .dot {
        height: 8px;
        width: 8px;
    }
}

.article-card-link:hover > div {
    background: rgba(13, 110, 253, 0.12) !important;
    border-color: rgba(13, 110, 253, 0.5) !important;
}
.article-card-link:hover .article-card-title {
    color: #3d8bfd;
}
.article-card-title {
    transition: color 0.3s;
}

/* ── Base carousel image ── */
    #header-carousel .carousel-item img {
        object-fit: cover;
        object-position: center;
        width: 100%;
 
        /* Desktop */
        height: 600px;
    }
 
    /* ── Caption overlay ── */
    #header-carousel .carousel-caption {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.45) 100%
        );
        padding: 0;
        text-align: center;
    }
 
    /* ── Caption inner wrapper ── */
    #header-carousel .carousel-caption-inner {
        padding: 1.5rem 1rem;
    }
 
    /* ── Heading ── */
    #header-carousel .carousel-heading {
        font-size: clamp(1.3rem, 4vw, 2.8rem);
        line-height: 1.25;
        text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    }
 
    /* ── Tag line ── */
    #header-carousel .carousel-tag {
        letter-spacing: 0.1em;
        font-size: clamp(0.7rem, 2vw, 0.95rem);
        opacity: 0.9;
    }
 
    /* ── Description (hidden on xs, shown md+) ── */
    #header-carousel .carousel-desc {
        font-size: clamp(0.85rem, 1.8vw, 1rem);
        opacity: 0.9;
        line-height: 1.7;
        text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    }
 
    /* ── CTA button ── */
    #header-carousel .carousel-btn {
        font-size: clamp(0.8rem, 2vw, 1rem);
        border-radius: 0;
    }
 
 
    /* ══════════════════════════════════
       MOBILE  (max 575px)
    ══════════════════════════════════ */
    @media (max-width: 575.98px) {
        #header-carousel .carousel-item img {
            height: 420px;
        }
 
        #header-carousel .carousel-caption-inner {
            padding: 1rem 0.75rem;
        }
 
        #header-carousel .carousel-heading {
            font-size: 1.25rem;
            margin-bottom: 0.75rem !important;
        }
 
        #header-carousel .carousel-tag {
            font-size: 0.65rem;
            margin-bottom: 0.5rem !important;
        }
 
        #header-carousel .carousel-btn {
            font-size: 0.8rem;
            padding: 0.4rem 1.1rem !important;
        }
 
        /* Tuck the prev/next controls in a bit */
        #header-carousel .carousel-control-prev,
        #header-carousel .carousel-control-next {
            width: 10%;
        }
    }
 
 
    /* ══════════════════════════════════
       SMALL TABLETS  (576px – 767px)
    ══════════════════════════════════ */
    @media (min-width: 576px) and (max-width: 767.98px) {
        #header-carousel .carousel-item img {
            height: 480px;
        }
 
        #header-carousel .carousel-heading {
            font-size: 1.6rem;
        }
    }
 
 
    /* ══════════════════════════════════
       TABLETS  (768px – 991px)
    ══════════════════════════════════ */
    @media (min-width: 768px) and (max-width: 991.98px) {
        #header-carousel .carousel-item img {
            height: 520px;
        }
 
        #header-carousel .carousel-heading {
            font-size: 2rem;
        }
    }
 
 
    /* ══════════════════════════════════
       LARGE DESKTOP  (1200px+)
    ══════════════════════════════════ */
    @media (min-width: 1200px) {
        #header-carousel .carousel-item img {
            height: 680px;
        }
    }