* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  border-radius: 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: rgba(232, 233, 234, 0.95);
  z-index: 1000;
}

.navbar .logo {
  font-size: 26px;
  font-weight: bold;
  color: #1a2a6c;
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

.quote-btn {
  padding: 10px 20px;
  background: #ff9d3c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* HERO SECTION */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(28, 42, 65, 0.6);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 70%;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 700;
}

.small-text {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.subtitle {
  margin-top: 15px;
  font-size: 16px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.start-btn {
  margin-top: 25px;
  padding: 14px 30px;
  background: #ff9d3c;
  color: white;
  border: none;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
}

/* DOTS */
.dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: white;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  opacity: 1;
}
 
/* ================= OUR WORK SECTION ================= */
.work-section {
  width: 100%;
  padding: 70px 8%;
  background: #f9f9f9;
  text-align: center;
}

.section-tag {
  color: #2F4B8C;
  font-size: 16px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1.3;
}

/* layout */
.work-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* left image */
.work-left {
  flex: 1;
  opacity: 0;
  transform: translateX(-80px);
  transition: 1s ease;
}

.work-left.show {
  opacity: 1;
  transform: translateX(0);
}

.work-left img {
  width: 100%;
  max-width: 550px;
}

/* right cards */
.work-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  opacity: 0;
  transform: translateX(80px);
  transition: 1s ease;
}

.work-right.show {
  opacity: 1;
  transform: translateX(0);
}

.card {
  background: white;
  border: 1px solid #e7ae68;
  padding: 35px 20px;
  text-align: center;
  border-radius: 6px;
}

.card img {
  width: 40px;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 28px;
  margin-bottom: 5px;
}

.card p {
  font-size: 15px;
  color: #555;
}

/* About section */

.about-section {
    padding: 60px 0;
    background: #1e3770;
    color: #fff;
}

.about-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.about-text h4 {
    color: #f9c16b;
    margin-bottom: 10px;
}

.about-text h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.feature-box .icon {
    width: 60px;
}

.quote-btn {
    background: #f7a32b;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    margin-top: 20px;
    cursor: pointer;
}

.about-image img {
    width: 100%;
    border-radius: 18px;
}

/* --- Image Slide Animation --- */
.slide-img {
    opacity: 0;
    transform: translateX(80px);
    transition: 1s ease;
}

.slide-img.show {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* cards section */

.services-section {
    text-align: center;
    padding: 60px 0;
}

.sub-title {
    color: #4869e8;
    margin-bottom: 10px;
    font-weight: 500;
}

.title {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.services-grid {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ------- CARD STYLE ------- */
.service-card {
    padding: 25px;
    border: 1.5px solid #f2c795;
    border-radius: 20px;
    text-align: left;
    background: #fff;
    transition: 0.3s ease;
    
    opacity: 0;
    transform: translateY(40px);
}

/* Hover Highlight */
.service-card:hover {
    border-color: #f7a32b;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transform: translateY(-10px);
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    margin-bottom: 25px;
}

.icon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icon-row img {
    width: 60px;
}

.arrow {
    font-size: 22px;
    color: #f7a32b;
}

/* ------- Scroll Animation ------- */
.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.8s ease;
}

/* Mobile */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* were to were */

.project-section {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 80px;
    background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d')
        center/cover no-repeat;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(14, 47, 107, 0.75);
    top: 0;
    left: 0;
}

.content {
    position: relative;
    max-width: 550px;
    z-index: 2;
    color: white;
}

.content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.content h1 {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 20px;
    font-weight: 700;
}

.content p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 25px;
}

.btn {
    padding: 12px 28px;
    background: #f7a30a;
    color: white;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
}

.image-box {
    width: 380px;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* review section */

/* ================= team list ================= */

.team-section {
    text-align: center;
    padding: 60px 0;
}

.team-subtitle {
    color: #3a4ea0;
    font-weight: 600;
    letter-spacing: 2px;
}

.team-title {
    font-size: 36px;
    margin: 10px 0 40px;
    font-weight: 700;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    width: 320px;
    border: 1px solid #f0c38c;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    transition: 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #f3a04d;
}

.team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 22px;
    font-weight: 700;
}

.team-info p {
    margin-top: 5px;
    color: #666;
}

.team-social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social i {
    font-size: 18px;
    border: 1px solid #f3a04d;
    color: #f3a04d;
    padding: 8px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.team-social i:hover {
    background: #f3a04d;
    color: white;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }
}

/* ================= get started ================= */

.moving-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 7%;
    background: #f9f9f9;
    overflow: hidden;
}

.moving-content h4 {
    color: #3a4ea0;
    font-weight: 600;
    letter-spacing: 2px;
}

.moving-content h1 {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
}

.moving-btn {
    background: #f29b31;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
}

.moving-image img {
    width: 550px;
    opacity: 0;
    transform: translateY(120px);
    transition: 1s ease-in-out;
}

.moving-image.show img {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .moving-section {
        flex-direction: column;
        text-align: center;
    }
    .moving-image img {
        width: 90%;
        margin-top: 40px;
    }
}

/* ================= review================= */

.testimonial-container {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  position: relative;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: #19347a;
  color: #fff;
  border-radius: 20px;
  display: none;
}

.testimonial-slide.active {
  display: flex;
}

.left-img img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
}

.right-content {
  flex: 1;
}

.tag {
  color: #f0a32f;
  font-weight: bold;
  margin-bottom: 10px;
}

.review-text {
  font-size: 17px;
  margin: 20px 0;
  line-height: 1.6;
}

.user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  height: 10px;
  width: 10px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #f0a32f;
  width: 25px;
  border-radius: 10px;
}

/* ================= asked questions ================= */

.faq-section {
    display: flex;
    align-items: center;
    padding: 60px 5%;
    gap: 30px;
}

.faq-left img {
    width: 420px;
    border-radius: 20px;
    object-fit: cover;
}

.faq-right h1 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a2b63;
}

.faq-box {
    background: #fff;
    width: 550px;
    padding: 15px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item.active {
    border-color: #f5a623;
}

.faq-question {
    padding: 15px 20px;
    background: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item.active .faq-question {
    background: #f5a623;
    color: white;
}

.faq-answer {
    padding: 15px 20px;
    display: none;
    font-size: 16px;
    line-height: 1.6;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.arrow {
    transition: 0.3s;
}

@media(max-width: 900px) {
    .faq-section {
        flex-direction: column;
        text-align: center;
    }
    .faq-left img {
        width: 100%;
    }
    .faq-box {
        width: 100%;
    }
}

/* ================= gallery ================= */

.news-section{
    text-align: center;
}

.news-slider {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    
}

.slider-track {
    display: flex;
    width: calc(360px * 12); /* 6 cards × duplicate 6 */
    animation: slide 25s linear infinite;
}

/* Auto slide animation */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Card design */
.news-card {
    width: 360px;
    min-width: 360px;
    margin-right: 25px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-6px);
}

.news-img-box {
    position: relative;
}

.news-img-box img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.news-date {
    position: absolute;
    left: 15px;
    bottom: -10px;
    background: #E88A14;
    color: white;
    padding: 8px 12px;
    font-weight: bold;
    border-radius: 4px;
}

.news-content {
    padding: 25px;
}

.news-meta {
    color: #666;
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.read-more {
    color: #E88A14;
    font-weight: 600;
}


/* ================= footer ================= */
/* NEWSLETTER SECTION */
.newsletter-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.newsletter-box {
    width: 80%;
    background: #1c2f75;
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.newsletter-box h4 {
    font-size: 16px;
    letter-spacing: 1px;
}

.newsletter-box h2 {
    margin-top: 10px;
    font-size: 32px;
    font-weight: 600;
}

.newsletter-input {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.newsletter-input input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    outline: none;
}

.newsletter-input button {
    background: #e48a20;
    color: white;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.newsletter-input button:hover {
    background: #c67115;
}


/* FOOTER */
.footer {
    padding: 50px 80px;
    background: #fff;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.footer-col p {
    margin-bottom: 8px;
    color: #444;
    font-size: 15px;
}

.footer-about .logo {
    font-size: 32px;
    color: #1c2f75;
}

.news-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.news-box img {
    width: 100%;
    height: 80px;
    border-radius: 5px;
    object-fit: cover;
}

/* Bottom Footer */
.footer-bottom {
    background: #e48a20;
    text-align: center;
    padding: 15px;
    color: white;
    font-size: 15px;
}
