/*====================================================
                GLOBAL STYLES START
====================================================*/

html {
  scroll-behavior: smooth;
}

body {
  background: #FAF9FF;
  margin: 0px;
  padding: 0px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #141B2B;
  font-size: 16px;
  font-family: Inter, sans-serif;
  font-weight: 400;
}

/* Remove focus outline */
body:focus {
  outline: none;
}

* {
  margin: 0px;
  padding: 0px;
  outline: none;
}

img {
  margin: 0px;
  padding: 0px;
}

p:empty {
  display: none;
}

a {
  text-decoration: none;
  transition: all .5s ease-in-out;
}

a:hover {
  text-decoration: none;
}

h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: Inter, sans-serif;
}

h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: Inter, sans-serif;
}

p {
  font-size: 16px;
  font-weight: 400;
  color: #141B2B;
  font-family: Inter, sans-serif;
}


/*====================================================
                GLOBAL STYLES END
====================================================*/

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title span {
  width: 60px;
  height: 3px;
  background: #d6001c;
  display: block;
  margin: 10px auto;
}

/* ================= TOPBAR ================= */

.topbar {
  background: #000;
  padding: 0;
  color: #fff;
  font-size: 14px;
}

.topbar-text {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
}

.topbar-right {
  gap: 10px;
}

.follow-text {
  font-size: 13px;
  color: #fff;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 8px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #e30613;
  border-color: #e30613;
}


.login-link {
  color: #fff;
  padding: 10px 18px;
  height: 40px;
  border-radius: 0px;
  text-decoration: none;
  transition: 0.3s;
}

.login-link:hover {
  background: #c70011;
  color: white;
}

.join-btn {
  background: #e30613;
  color: #FFF;
  height: 40px;
  padding: 10px 18px;
  border-radius: 0px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.join-btn:hover {
  background: #c70011;
  color: white;
}

.search-btn {
  height: 40px;
  color: #fff;
  font-size: 18px;
  background: transparent;
  box-shadow: none;
  border: none;
  margin-left: 8px;
}

.search-icon:hover {
  color: #e30613;
}

.search-bar {
  background: #FEF2F2;
  padding: 15px 0;
  display: none;
  position: absolute;
  z-index: 11;
  width: 100%;
  animation: slideDown 0.3s ease;
}

.search-input {
  height: 45px;
  border-radius: 0;
}

.search-submit {
  background: #e30613;
  color: white;
  border: none;
  padding: 0 20px;
}

.search-submit:hover {
  background: #c50010;
  color: white;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================= header ================= */
header {
  background: #fff;
  padding: 8px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar {
  padding: 0;
}

.navbar-brand img {
  max-width: 100px;
}

.navbar-nav .nav-item .nav-link {
  font-weight: 600;
  color: #000;
  border-bottom: 3px solid #FFF;
  padding: 8px 0px 8px 0px;
}

.navbar-nav .nav-item {
  margin-left: 36px;
}

.navbar-nav .nav-item.active a {
  border-bottom: 3px solid #d6001c;
}

.nav-link:hover {
  color: #d6001c;
}

/* ================= HERO SECTION ================= */
.banner {
  padding: 50px 0px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.banner h1 {
  color: #d6001c;
}

.hero-section {
  position: relative;
}

.hero-slide {
  min-height: 650px;
  background-size: cover;
  background-position: right;
  position: relative;
  display: flex;
  align-items: center;
  background-size: 60%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.hero-slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: #000;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
  color: white;
}

.hero-subtitle {
  color: #e30613;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-content p {
  color: #ddd;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* red button */
.hero-btn-red {
  background: #e30613;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
}

.hero-btn-red:hover {
  background: #c40010;
  color: white;
}

/* outline button */
.hero-btn-outline {
  border: 1px solid #fff;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
}

.hero-btn-outline:hover {
  background: white;
  color: black;
}

.carousel-control-prev,
.carousel-control-next {
  display: none;
}



/* ================= STATS SECTION ================= */
.stats-box {
  background: #fff;
  margin-top: -60px;
  position: relative;
  z-index: 5;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

}

.stats-box p {
  margin-bottom: 0;
}

.stats-box .col-md-3 {
  border-right: 1px solid #141B2B;
}

.stats-box .col-md-3:last-child {
  border: none;
}


.stats-box h3 {
  font-weight: 700;
  color: #CF0020;
}

/* ================= SERVICES SECTION ================= */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.service-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.4s;
}

.service-card h4 {
  position: relative;
  padding-bottom: 12px;
}

.service-card h4::after {
  width: 40px;
  height: 4px;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background: #CF0020;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 77%), transparent);
  display: flex;
  align-items: end;
  color: #fff;
  padding: 20px;
}

/* ================= ABOUT SECTION ================= */

.about-section {
  padding: 48px 0;
  background: #F7F7F7;
}

/* Left Content */
.about-subtitle {
  color: #e30613;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 500px;
}

/* Right Side Images Layout */
.about-images-wrapper {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

/* Large image */
.about-large-img {
  width: 65%;
  height: 400px;
}

.about-large-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Right stacked images */
.about-small-images {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-small-images img {
  width: 100%;
  height: calc(50% - 10px);
  object-fit: cover;
  border-radius: 12px;
}


/* Hover effect */
.about-images-wrapper img {
  transition: 0.4s;
}

.about-images-wrapper img:hover {
  transform: scale(1.03);
}



/* ================= NEWS EVENTS SECTION ================= */

.news-events-section {
  padding: 50px 0;
  background: #fff;
}

/* divider */
.news-left {
  border-right: 1px solid #eee;
}

.news-events-section .section-header {
  margin-bottom: 20px;
}

/* section headings */
.section-header h2 {
  font-weight: 700;
  margin-bottom: 5px;
}

.red-line {
  width: 50px;
  height: 3px;
  background: #e30613;
  display: block;
}

.view-all-link {
  color: #e30613;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

/* NEWS CARD */
.news-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: 0.3s;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
}

.news-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.news-content {
  padding: 12px;
}

.news-date {
  color: #e30613;
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.news-content h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-content p {
  color: #666;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  color: #e30613;
  text-decoration: none;
  font-weight: 600;
}

/* EVENTS */
.event-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #eee;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.event-date-box {
  min-width: 70px;
  text-align: center;
  border: 1px solid #f7f7f7;
  padding: 4px;
  border-radius: 6px;
}

.event-date-box h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.event-date-box span {
  color: #666;
  font-size: 14px;
}

.event-content {
  flex: 1;
}

.event-content h5 {
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-content p {
  color: #666;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-content i {
  color: #e30613;
}

.register-btn {
  background: #e30613;
  color: white;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.register-btn:hover {
  background: #c70011;
  color: white;
}


/* ================= PARTNERS SECTION ================= */

.partners-section {
  padding: 50px 0;
  background: #F7F3F0;
}

.partner-heading h2 { 
  font-weight: 700;
  margin-bottom: 40px;
}

.partner-card {
  height: 110px;
  border: 1px solid #eee;
  border-radius: 12px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background: #FFF;
  margin: 0 10px;
}

.partner-card img {
  max-width: 150px;
  max-height: 60px;
  object-fit: contain;
}

/* ================= CTA SECTION ================= */

.cta-section {
  padding: 50px 0;
  background-image: url('../images/about-img2.jpg');
  position: relative;
}

/* overlay */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(227, 6, 19, 0.95);
}

.cta-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* left content */
.cta-content h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-content p {
  color: #fff;
  font-size: 18px;
  margin: 0;
}

/* buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 16px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

/* white button */
.white-btn {
  background: #fff;
  color: #e30613;
}

.white-btn:hover {
  background: #f5f5f5;
  color: #e30613;
}

/* transparent button */
.transparent-btn {
  border: 2px solid #fff;
  color: #fff;
}

.transparent-btn:hover {
  background: #fff;
  color: #e30613;
}




/* ================= FOOTER ================= */

.footer-section {
  background: #fff;
  border-top: 3px solid #e30613;
  padding-top: 60px;
}

/* top area */
.footer-top {
  padding-bottom: 40px;
}

.footer-border {
  border-left: 1px solid #eaeaea;
}

/* logo */
.footer-logo-box img {
  max-width: 130px;
  margin-bottom: 20px;
}

.footer-logo-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.footer-links,
.footer-contact {
  padding-left: 50px;
}

.footer-links h5,
.footer-contact h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* lists */
.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #555;
}

.footer-links ul li a:hover {
  color: #e30613;
}

/* contact icons */
.footer-contact i {
  color: #e30613;
  margin-right: 10px;
}

/* social */
.footer-social,
.bottom-social {
  display: flex;
  gap: 15px;
  margin-top: 0px;
}

.footer-social a,
.bottom-social a {
  color: #111;
  font-size: 20px;
}

/* bottom */
.footer-bottom {
  border-top: 1px solid #eee;
  padding: 25px 0;
}

.footer-bottom p {
  margin: 0;
  color: #666;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  text-decoration: none;
  color: #555;
}

.footer-bottom-links a:hover {
  color: #e30613;
}

.our-services-section {
  padding: 30px 0px;
}
 

.our-services-section .section-title {
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 40px;
}

/*====================================================
            GLOBAL RESPONSIVE START
====================================================*/

/* Large screens */
@media (max-width:1679px) {


  h2 {
    margin-bottom: 14px;
  }

  .hero-slide {
    min-height: 550px;
  }

  .stats-box h3 {
    font-size: 26px;
  }

  .about-content p {
    margin-bottom: 30px;
  }

  .about-large-img {
    height: 330px;
  }

  .register-btn {
    padding: 6px 10px;
  }

  .event-content p {
    font-size: 14px;
  }

  .footer-links,
  .footer-contact {
    padding-left: 16px;
  }
}

@media (max-width:1365px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .hero-slide {
    min-height: 500px;
  }

  .stats-box h3 {
    font-size: 24px;
  }

  .stats-box {
    margin-top: -40px;
    padding: 16px;
  }

  .about-content p {
    margin-bottom: 16px;
  }

  .hero-content {
    padding-right: 50px;
  }

  .news-events-section .section-header h2 {
    width: 195px;
  }
}

@media (max-width:1199px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;

  }

  p {
    font-size: 14px;
  }

  .hero-slide {
    min-height: 430px;
  }

  .hero-content {
    max-width: 475px;
  }

  .hero-btn-red {
    padding: 10px 8px;
  }

  .stats-box h3 {
    font-size: 20px;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .service-card img {
    height: 290px;
  }

  .service-card h4 {
    font-size: 18px;
  }

  .hero-btn-red {}

  .about-content p {
    font-size: 14px;
    line-height: 24px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .news-card img {
    height: 160px;
  }

  .news-events-section .col-lg-8.news-left,
  .news-events-section .col-lg-4.events-right {
    width: 100%;
  }

  .news-events-section .section-header h2 {
    width: auto;
  }

  .cta-btn {
    padding: 10px 8px;
  }

  .cta-btn.transparent-btn {
    padding: 8px 8px;
  }

  .cta-section {
    padding: 30px 0;
  }

  .footer-links ul li a,
  .footer-logo-box p {
    font-size: 14px;
  }

  .footer-links ul li,
  .footer-contact ul li {
    font-size: 14px;
  }

  .footer-links,
  .footer-contact {
    padding-left: 0;
  }

  .footer-bottom {
    padding: 8px 0;
  }

  .footer-top {
    padding-bottom: 16px;
  }

  .footer-bottom-links a {
    font-size: 14px;
  }

  .partner-card img {
    min-height: 40px;
    max-height: 40px;
  }

  .partner-card {
    height: 84px;
  }

  .hero-btn-outline {
    padding: 10px 10px;
  }

  .about-large-img {
    height: 275px;
  }
}

/* Tablet */
@media (max-width:991px) {
   h2{
    font-size: 24px;
   }
  .navbar-nav {
    margin-top: 10px;
  }

  .navbar-nav .nav-item .nav-link {
    padding: 8px 10px;
  }

  .navbar-nav .nav-item.active a {
    border-bottom: none;
    background: #d6001c;
    color: #FFF;
  }

  .navbar-nav .nav-item {
    margin: 0px;
  }

  .topbar {
    padding: 8px 0px;
  }

  .topbar .col-lg-4 {
    display: none;
  }

  .follow-text {
    margin-bottom: 0px;
  }

  .topbar-right {
    margin-top: 0px;
    justify-content: center;
    gap: 0;
  }

  .divider {
    display: none;
  }

  .hero-slide {
    background-size: cover;
  }

  .hero-slide::before {
    width: 100%;
    clip-path: none;
  }

  .hero-content h1 {
    font-size:30px;
  }

  /* stats */
  .stats-box {
    margin-top: 20px;
  }

  .stats-box h3 {
    font-size: 16px;
  }

  .about-images-wrapper {
    flex-direction: column;
  }

  .about-large-img,
  .about-small-images {
    width: 100%;
  }

  .about-small-images img {
    height: 250px;
  }

  /* news */
  .news-left {
    border-right: none;
  }

  /* CTA */
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  /* footer */
  .footer-border {
    border-left: none;
  }

  .footer-top {
    text-align: center;
  }

  .footer-social,
  .bottom-social {
    justify-content: center;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-links,
  .footer-contact {
    padding-left: 0;
  }

  .hero-content {
    max-width: 100%;
    padding-right: 0px;
  }

  .hero-slide::before {
    opacity: 0.8;
  }

  .our-services-section,
  .about-section {
    padding: 30px 0px;
  }

  .service-card img {
    height: 170px;
  }

  .service-overlay {
    padding: 14px;
  }

  .about-content p {
    max-width: 100%;
  }

  .about-large-img {
    height: auto;
  }
}


/* Mobile */
@media (max-width:767px) {

  h1 {
    font-size: 32px;
  }

  

  .cta-wrapper {
    gap: 16px;
  }

  .join-btn {
    padding: 8px 14px;
  }

  /* hero */
  .hero-slide {
    min-height: auto;
    text-align: center;
    background-size: cover;
    padding: 70px 0px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    justify-content: center;
  }

  /* services */
  .service-card img {
    height: 220px;
  }


  /* news */
  .section-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }

  /* footer */
  .footer-section {
    padding-top: 40px;
  }

  .footer-links h5,
  .footer-contact h5 {
    font-size: 18px;
  }

  .news-events-section .col-lg-8.news-left,
  .news-events-section .col-lg-4.events-right {
    margin-top: 30px;
  }

  .stats-box {
    margin: 20px 0px;
  }

  .stats-box .col-md-3 {
    width: 50%;
    margin: 8px 0px;

  }

  .stats-box .col-md-3:nth-child(2) {
    border: none;
  }

  .our-services-section .col-md-4 {
    width: 50%;
  }

  .news-events-section .news-left .col-md-4 {
    width: 50%;
  }

  .news-events-section,
  .partners-section {
    padding: 30px 0px;
  }

}


/* Small mobile */
@media (max-width:576px) {
  .service-card img {
    height: auto;
  }

  .hero-content h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .hero-content p {
    margin-bottom: 20px;
  }

  .join-btn,
  .login-link {
    height: 30px;
    padding: 4px 10px;
  }

  .hero-slide {
    padding: 50px 0px;
  }

  .our-services-section .col-md-4,
  .stats-box .col-md-3 {
    width: 100%;
  }

  .stats-box h3 {
    font-size: 22px;
  }

  .stats-box .col-md-3 {
    padding: 8px 20px;
    margin: 0;
    border-bottom: 1px solid #f0eaea;
    border-right: 0;
  }

  .stats-box .col-md-3:nth-child(2) {
    border-bottom: 1px solid #f0eaea;
  }

  .news-events-section .news-left .col-md-4 {
    width: 100%;
  }

  .partner-card {
    height: 90px;
  }

  .partner-card img {
    max-width: 120px;
  }

  .register-btn {
    text-align: center;
  }

  .event-card {
    flex-direction: column;
    align-items: self-start;
  }

  .event-date-box {
    min-width: 100%;
    background: #f7f7f7;
  }
}

/*====================================================
            GLOBAL RESPONSIVE END
====================================================*/

.slick-prev:before {
  color: red;
}
.slick-next:before {
  color: red;
}