/* ================= HERO ================= */
 /* Carousel Container */
 .carousel {
    height: auto;
    position: relative;
    width: 90%;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
   
}

/* Carousel Slides */
.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    transition: opacity 0.5s ease;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Navigation Arrows */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

/* Carousel Indicators (Dots) */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: rgba(255, 255, 255, 0.9);
}
/* <!-- ================= WELCOME NOTE ================= --> */

.welcome-note {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.welcome-container {
  max-width: 900px;
  margin: auto;
}

.welcome-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #222;
}

.welcome-title span {
  background: #1f232b;
  color: #fff;
  padding: 6px 14px;
  margin-left: 8px;
  font-weight: 500;
}

.welcome-text {
  font-size: 18px;
  line-height: 1.9;
  color: #7a7a7a;
}
/* SLIDE UP ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}


/* Responsive */
@media (max-width: 768px) {
  .welcome-title {
    font-size: 28px;
  }

  .welcome-text {
    font-size: 16px;
  }
}

.oretes_core img {
  margin-top: 40px;
  border-radius: 8px;
  max-width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}




/* ================= BUTTONS ================= */
.btn {
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn.primary {
    background: #fff;
    color: #111;
}

.btn.primary:hover {
    background: #e5e5e5;
}

.btn.secondary {
    background: #0088cc;
    color: #000000;
}

.btn.secondary:hover {
    background: #fff;
    border: 1px solid #000000;
    color: #0088cc;
}




/* ================= SERVICES ================= */
.services {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.services h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card h3 {
    margin-bottom: 12px;
}

/* ================= ABOUT ================= */
.about {
    padding: 80px 20px;
    background: #e5f6ff;
}

.about-container {
    max-width: 900px;
    margin: auto;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about p {
    margin-bottom: 24px;
    color: #444;
}

/* ================= CTA ================= */
.cta {
    padding: 80px 20px;
    text-align: center;
    background: #111;
    color: #fff;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.cta p {
    color: #bbb;
    margin-bottom: 30px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}




/* ================= WHAT WE DO ================= */

/* SECTION */
.what-we-do {
  padding: 70px 20px;
  background: #fff;
}
.container {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.section-heading {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}
.section-heading span {
  color: #0088cc;
}

/* BOXES */
.left-col .box,
.right-col .card {
  background: #fafafa;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
.left-col .box h3 {
  font-size: 20px;
  color: #0088cc;
  margin-bottom: 8px;
}
.left-col .box p,
.right-col .card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
.right-col .card h4 {
  font-size: 18px;
  color: #003366;
  margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container {
    display: block;
  }
}

/* ANIMATION START STATE */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.7s ease-out;
}
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: 0.7s ease-out;
}

/* SHOW ON SCROLL */
.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ACCORDION */
.accordion-item {
  background: #f7f7f7;
  border-radius: 6px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header .icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  padding-bottom: 18px;
}

/* ACTIVE STATE */
.accordion-item.active .accordion-content {
  max-height: 300px;
  padding-top: 10px;
}

.accordion-item.active .icon {
  transform: rotate(45deg);
}










.logo-carousel {
  text-align: center;
  padding: 60px 20px;
}

.logo-carousel h2 {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 600;
}

.logo-carousel h2 span {
  background: #0088cc;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
}

.carousel-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.carousel-track {
  display: flex;
  gap: 40px;
  animation: slide 10s linear infinite;
}

.logo-box {
  flex: 0 0 150px;
}

.logo-box img {
  width: 100%;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.logo-box img:hover {
  opacity: 1;
}

/* Sliding animation */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* responsive */
@media (max-width: 768px) {
  .logo-box {
    flex: 0 0 100px;
  }
}


/* <!-- ================= WHAT CLIENT SAY ================= --> */

