
.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* Left Text */
.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text .highlight-yellow {
  color: #E6B122; /* golden yellow */
  font-size: 42px;
}

.hero-text .highlight-blue {
  color: #1d2c6e; /* dark blue */
  font-size: 42px;

}

.hero-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 500px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #1d2c6e;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.btn-primary:hover {
  background: #132050;
}

.btn-secondary {
  border: 1px solid #1d2c6e;
  color: #1d2c6e;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #1d2c6e;
  color: #fff;
}

/* Right Image */
.hero-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: block;
  margin: auto;
 border: 5px solid #fff;

}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
    margin-top: 20px;
  }
}

/* Stats Section */
.stats {
  background: #fff;
  padding: 40px 30px;
  font-family: 'Times New Roman', Times, serif, sans-serif;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Left Side */
.stat-left {
  flex: 1;
  min-width: 250px;
}

.stat-sub {
  font-size: 14px;
  font-weight: 600;
  color: #E6B122;
  margin-bottom: 5px;
}

.stat-main {
  font-size: 26px;
  color: #1d2c6e;
  font-weight: 800;
}

.stat-main i {
  color: #E6B122;
  margin-right: 6px;
}

/* Right Side */
.stat-right {
  flex: 2;
  display: flex;
  justify-content: flex-end;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-size: 28px;
  color: #1d2c6e;
  font-weight: bold;
}

.stat-box .stat-sub {
  font-size: 14px;
  font-weight: 500;
  color: #E6B122;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .stats {
    padding: 30px 16px;
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Left section */
  .stat-left {
    margin-bottom: 24px;
  }

  .stat-main {
    font-size: 22px;
    line-height: 1.3;
  }

  /* Right section → FORCE SINGLE ROW */
  .stat-right {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    justify-items: center;
  }

  .stat-box {
    text-align: center;
  }

  .stat-number {
    font-size: 22px;
    font-weight: 700;
  }

  .stat-box .stat-sub {
    font-size: 12px;
    line-height: 1.2;
  }
}



/* Section Wrapper */
.projects {
  padding: 20px 10%;
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
  
}

/* Header */
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.projects-header h2 {
  font-size: 28px;
  color: #2c2c2c;
  font-weight: 600;
}

.projects-header .view-all {
  font-size: 14px;
  color: #1a2a6c;
  text-decoration: none;
  font-weight: 500;
}

.projects-header .view-all i {
  margin-left: 5px;
}

@media (max-width: 768px) {
  .projects-filters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
  }

  .filter-btn {
    width: 100%;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    border-radius: 18px;
  }
}

/* Filter Buttons */
.projects-filters {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-btn {
  background: #fff;
  border: 1px solid #1a2a6c;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  color: #E6B122;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #1a2a6c;
  color: #fff;
}

.filter-btn.active{
      background: #1a2a6c;
  color: #fff;
}



.project-image {
  position: relative;
}

.project-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.badge-yellow { background: #f4b400; }
.badge-orange { background: #f4b400; }
.badge-blue { background: #f4b400; }


/* CTA Section */
.cta-section {
  position: relative;
  background: #243377; /* dark blue */
  color: #fff;
  padding: 50px 10%;
  overflow: hidden;
  border-radius: 6px;
  margin: 50px 0;
}

/* Container */
.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 2;
  position: relative;
}

/* Text */
.cta-text h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 14px;
  color: #dcdcdc;
  max-width: 500px;
}

/* Button */
.btn-cta {
  background: #f4b400; /* yellow */
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #e0a200;
}

/* Decorative Circle */
.cta-circle {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: 1;
}

/* Legacy Section */
.legacy-section {
  background: #f7f7f7;
  padding: 20px 10%;
}

.legacy-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 280px;
  flex-wrap: wrap;
}

/* Left Image Block */
.legacy-image {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.legacy-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.legacy-img.overlay {
  position: absolute;
  top: 20px;
  right: -30px;
  width: 70%;
  border-radius: 16px;
  border: 5px solid #fff;
}

.legacy-caption {
  font-size: 14px;
  margin-top: 8px;
  color: #333;
  font-weight: 500;
}

.overlay-text {
  position: absolute;
  bottom: 8px;
  right: -20px;
  font-size: 13px;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 3px 8px;
  border-radius: 6px;
}

/* Right Text Block */
.legacy-text {
  flex: 1.2;
}

.legacy-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #243377;
}

.highlight-yellow {
  color: #f4b400;
  font-size: 28px;
}

.legacy-text p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Stats */
.legacy-stats {
  display: flex;
  gap: 50px;
  margin-bottom: 25px;
}

.legacy-stats h3 {
  font-size: 22px;
  font-weight: 600;
  color: #f4b400;
}

.legacy-stats span {
  display: block;
  font-size: 13px;
  color: #777;
}

/* Button */
.btn-legacy {
  display: inline-block;
  background: #243377;
  color: #fff;
  padding: 12px 195px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;

}

.btn-legacy:hover {
  background: #192755;
}


/* Section Titles */
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1a1a1a;
}



@media (max-width: 768px) {
.btn-legacy {
  display: inline-block;
  background: #243377;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;

}

.legacy-container {
    gap:140px;
}
}


.milestones {
  font-family: "Helvetica", sans-serif;
  padding: 40px 20px;
  background: #fff;
}

.milestones-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
  color: #111;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* vertical line */
.timeline::after {
  content: '';
  position: absolute;
  width: 3px;
  background-color: #ddd;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}

/* container */
.container {
  padding: 15px 30px;
  position: relative;
  width: 50%;
}

.left { left: 0; }
.right { left: 50%; }

/* milestone content box */
.content {
  background: #fff;
  padding: 18px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #d1d1d1;
}

.content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.content p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* colored borders */
.blue-border { border: 1px solid #1a3b8d; color: #1a3b8d; }
.yellow-border { border: 1px solid #e5b52e; color: #e5b52e; }

/* circle numbers */
.circle {
  position: absolute;
  top: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.circle.blue {
  right: -14px;
  background: #1a3b8d;
  color: #fff;
}

.circle.yellow {
  left: -14px;
  background: #e5b52e;
  color: #111;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 20px;
  }
  .container {
    width: 100%;
    padding-left: 60px;
    padding-right: 25px;
  }
  .circle {
    left: 0 !important;
    right: auto;
  }
  .right {
    left: 0%;
  }
}#resident-videos {
  text-align: center;
  padding: 40px 20px;
  background-color: #cce6ff;
}

#resident-videos .resident-title {
  color: #3a4a8c;
  font-size: 24px;
  margin-bottom: 30px;
}

#resident-videos .resident-slider-container {
  overflow: hidden;
  width: 100%;
}

#resident-videos .resident-slider {
  display: flex;
  gap: 15px;
  animation: scrollVideos 10s linear infinite; /* adjust speed here */
}

#resident-videos .resident-card {
  flex: 0 0 auto;
  width: 30%; /* slightly smaller than 33.33% */
}

#resident-videos video {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}

/* Tablet */
@media (max-width: 900px) {
  #resident-videos .resident-card {
    width: 45%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  #resident-videos .resident-card {
    width: 95%;
  }
}

/* Keyframes for smooth scrolling */
@keyframes scrollVideos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* scroll half, because we duplicated videos */
  }
}


/* ===============================
   PROJECT FILTERS – 3x GRID MOBILE
================================ */

@media (max-width: 768px) {

  .projects-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 🔥 3 per row */
    gap: 10px;
    margin-bottom: 24px;
  }

  .filter-btn {
    padding: 8px 6px;              /* 🔥 smaller height */
    font-size: 12.5px;
    border-radius: 16px;
    text-align: center;
    white-space: nowrap;
  }
}
/* =====================================
   TNCD CHOICE – HORIZONTAL AUTO SCROLL
===================================== */
/* =================================================
   TNCD CHOICE – FORCE TRUE HORIZONTAL SCROLL (MOBILE)
================================================== */

@media (max-width: 768px) {

  /* Parent becomes horizontal scroller */
  .choice-container {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 14px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .choice-container::-webkit-scrollbar {
    display: none;
  }

  /* Each UL behaves like a horizontal row */
  .choice-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 14px;
    padding: 0;
    margin: 0;
  }

  /* Cards */
  .choice-list li {
    flex: 0 0 260px;   /* 🔥 fixed card width */
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  }

  .choice-list li i {
    font-size: 18px;
    flex-shrink: 0;
  }
}

/* Extra small phones */
@media (max-width: 420px) {
  .choice-list li {
    flex: 0 0 220px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {

  /* Auto-scroll animation */
  .choice-container {
    scroll-behavior: auto; /* disable snap conflicts */
  }

  .choice-list {
    animation: choiceAutoScroll 18s linear infinite;
  }

  /* Pause when user touches or hovers */
  .choice-container:active .choice-list,
  .choice-container:hover .choice-list {
    animation-play-state: paused;
  }
}

/* Keyframes */
@keyframes choiceAutoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}




body {
  margin: 0;
  overflow-x: hidden;
}

section {
  max-width: 1800px;        /* TV safe */
  margin-left: auto;
  margin-right: auto;
}

.tncd-choice {
  background: #f9f9f9;
  padding: 20px 20px;
  text-align: center;
  position: relative;
}

.tncd-choice h3 {
 
  margin-bottom: 30px;
  font-weight: 500;
  color: #222;
}



.choice-container {
  max-width: 1000px;
  margin: 0 auto;
}

.choice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.choice-list li {
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s ease;
}

.choice-list li i {
  font-size: 1rem;
  margin-right: 12px;
  color: #f7b500;
}

.choice-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}



/* 💻 Larger desktop screens */
@media (min-width: 1200px) {
  .tncd-choice h3 {
    font-size: 1.4rem;
  }

  .choice-list li {
    font-size: 1.15rem;
    padding: 20px 25px;
  }

  .choice-list li i {
    font-size: 1.4rem;
  }
}

.resident-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

    /* If only one project, make it full width */
.single-project {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

/* Make image cover full width */
.single-project .project-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Optional: enlarge content area */
.single-project .project-content {
    padding: 20px;
}


   .projects-grid {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;

  transform: translateZ(0);     /* 🔥 forces GPU */
  will-change: scroll-position;
}

.projects-grid::-webkit-scrollbar {
  height: 6px;
}

.projects-grid::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* For project cards */
.project-card {
  min-width: 400px;
  max-width: 400px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

    /* Perfect alignment for project card info */
.project-content .info-row{
  display: flex;
  align-items: center;
  margin: 10px 0;
  line-height: 1.6;
}

.project-content .info-icon{
  min-width: 36px;          /* ensures same start point */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1a3b8d;
}

.project-content .info-text{
  text-align: left;
  font-size: 15px;
  color: #1a3b8d;
}


    .tncd-inline-form-wrapper {
  max-width: 500px;
  margin: 25px auto;
  background: #ffffff;
  padding: 20px 22px;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.tncd-form-title {
  margin-bottom: 12px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a2f78;
  text-align: center;
}

.tncd-inline-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tncd-inline-form input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  transition: 0.3s;
}

.tncd-inline-form input:focus {
  outline: none;
  border-color: #1a2f78;
  box-shadow: 0 0 5px rgba(26,47,120,0.3);
}

.tncd-inline-form .form-row {
  width: 100%;
}

.send-btn-inline {
  margin-top: 8px;
  background: #1a2f78;
  color: #fff;
  border: none;
  padding: 11px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.send-btn-inline:hover {
  background: #122054;
}

@media (max-width: 768px){
  .tncd-inline-form-wrapper {
    width: 100%;
    margin: 20px auto;
  }
}

/* ===== INLINE FORM PHONE INPUT FIX ===== */

.tncd-inline-form .iti {
  width: 100%;
}

    .experience-centre {
  padding: 60px 20px;
  background: #fff;
  max-width: 1200px;
  margin: auto;
}

.exp-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #1a3b8d;
  margin-bottom: 35px;
}

.exp-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
  flex-wrap: wrap;
}

.exp-image {
  flex: 1;
  min-width: 350px;
}

.exp-image img {
  width: 100%;
  height: 350px;         /* adjust height here */
  object-fit: cover;     /* keeps image proportion and crops nicely */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}


.exp-points {
  flex: 1;
  min-width: 350px;
}

.exp-points ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.exp-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

.exp-points li i {
  font-size: 18px;
  color: #1a3b8d;
  background: #eef3ff;
  padding: 8px;
  border-radius: 6px;
  min-width: 32px;
  text-align: center;
}

@media(max-width:768px){
  .exp-title { font-size: 26px; }
  .exp-points li { font-size: 14px; }
}



    /* ================= MODAL CSS ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;                 /* 🔥 hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.modal-box {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  position: relative;
  animation: popup 0.3s ease;
}

@keyframes popup {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.modal-box h3 {
  text-align: center;
  margin-bottom: 14px;
  color: #1d2c6e;
}

.modal-box input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  font-size: 14px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #1d2c6e;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
}

.submit-btn:disabled {
  background: #aaa;
  cursor: not-allowed;
}

/* Mobile */
@media (max-width: 480px) {
  .modal-box {
    padding: 16px;
  }
}

/* ================= PHONE INPUT – LARGE & CLEAN ================= */

/* ================= PHONE INPUT – FINAL FIX ================= */
/* =====================================================
   FINAL FIX — MULTIPLE intl-tel-input FORMS
===================================================== */

/* Shared phone input base */
.tncd-inline-form-wrapper .iti,
#brochureModal .iti {
  width: 100% !important;
  position: relative;
}

.tncd-inline-form-wrapper .iti input,
#brochureModal .iti input {
  width: 100% !important;
  height: 52px;
  padding-left: 110px !important;
  box-sizing: border-box;
}

/* 🔥 INLINE FORM DROPDOWN */
.tncd-inline-form-wrapper .iti__country-list {
  min-width: 100% !important;   /* at least input width */
  width: auto !important;
  max-width: 360px;
  left: 0 !important;
  top: 100% !important;
  z-index: 99999;
}

/* 🔥 MODAL FORM DROPDOWN */
#brochureModal .iti__country-list {
  min-width: 100% !important;
  width: auto !important;
  max-width: 360px;
  left: 0 !important;
  top: 100% !important;
  z-index: 100000;
}

/* Dropdown rows */
.iti__country {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile safety */
@media (max-width: 480px) {
  .tncd-inline-form-wrapper .iti__country-list,
  #brochureModal .iti__country-list {
    max-width: 100% !important;
    max-height: 220px;
    overflow-y: auto;
  }

  .tncd-inline-form-wrapper .iti input,
  #brochureModal .iti input {
    padding-left: 100px !important;
  }
}

/* Modal safety */
.modal-box {
  overflow: visible !important;
}

/* Mobile */
@media (max-width: 480px) {
  .iti input {
    height: 50px !important;
    padding-left: 105px !important;
  }

  .iti__flag-container {
    width: 95px;
    height: 50px;
  }
}


/* IMAGE */
.project-image {
  position: relative;
}

.project-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* BADGE */
.project-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f5a623;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* CONTENT */
.project-content {
  padding: 20px;
}

.project-title {
  font-size: 22px;
  margin-bottom: 6px;
}

.project-price {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 700;
}

/* INFO LIST */
.project-info {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.project-info li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #000000;
  margin-bottom: 8px;
}

.project-info i {
  color: #000000;
  min-width: 18px;
}

/* ACTIONS */
.project-actions {
  display: flex;
  gap: 12px;
  border-top: 1px solid #eee;
  padding-top: 16px;
}

.btn-outline {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border: 1px solid #1d2c6e;
  color: #000;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
}

.btn-dark {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  background: #1d2c6e;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
}
@media(max-width:768px){
.project-card {
  min-width: 300px;
  max-width: 300px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}}
.projects-scroll-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: 12px 0;
}

.scroll-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1d2c6e;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.scroll-btn:hover {
  background: #f5a623;
  color: #000;
}

.scroll-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .scroll-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}


    .hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
  max-width: 600px;
}

.hero-overlay h1 {
  font-size: 48px;
  line-height: 1.0;
  margin-bottom: 10px;
  color:#1d2c6e;
}

.hero-overlay p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}



