/* ===========================
   GENERAL STYLES
=========================== */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
    scroll-behavior: smooth;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ff7f50;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
    background: rgba(34, 34, 34, 0.95) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.7rem;
    color: #ff7f50;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #fff;
}

.navbar-nav .nav-link:hover {
    color: #ff7f50;
}

/* ===========================
   HERO SECTION
=========================== */
#hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-placeholder.jpg') center/cover no-repeat;
    min-height: 100vh;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff7f50, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #fff;
}

#hero .btn-primary {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    background: linear-gradient(90deg, #ff7f50, #ffb347);
    border: none;
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(255,127,80,0.4);
}

#hero .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 35px rgba(255,127,80,0.5);
}

/* ===========================
   SECTION STYLING
=========================== */
section {
    padding: 100px 0;
}

section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

section p {
    font-size: 1rem;
    color: #555;
}

/* ===========================
   ABOUT SECTION
=========================== */
#about img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* ===========================
   SERVICES SECTION
=========================== */
#services .service-card {
    transition: all 0.4s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

#services .service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

#services .card h5 {
    margin-top: 15px;
    font-weight: 600;
    color: #ff7f50;
}

#services .card p {
    font-size: 0.95rem;
    color: #555;
}

/* ===========================
   PORTFOLIO SECTION
=========================== */
#portfolio .portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#portfolio .portfolio-item:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

#portfolio .portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* ===========================
   STATS / COUNTERS
=========================== */
#stats {
    background: linear-gradient(135deg, #ffb347, #ff7f50);
    color: #fff;
}

#stats h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

#stats p {
    font-size: 1rem;
    color: #fff;
}

/* ===========================
   TESTIMONIALS
=========================== */
#testimonials {
    background-color: #f3f3f3;
    padding: 120px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.swiper-slide .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 40px;
    background: #fff;
    max-width: 600px;
    text-align: center;
}

.swiper-slide .card p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.swiper-slide .card h6 {
    font-weight: 600;
    color: #ff7f50;
}

/* ===========================
   CONTACT SECTION
=========================== */
#contact form {
    background-color: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

#contact form:hover {
    transform: translateY(-5px);
}

#contact input, #contact textarea {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
}

#contact button {
    border-radius: 50px;
    padding: 15px;
    font-weight: 600;
    background: linear-gradient(90deg, #ff7f50, #ffb347);
    border: none;
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(255,127,80,0.4);
}

#contact button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(255,127,80,0.5);
}

/* ===========================
   FOOTER
=========================== */
footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0;
    font-size: 0.9rem;
}

footer a {
    color: #ff7f50;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

/* ===========================
   MEDIA QUERIES
=========================== */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.4rem;
    }
    #hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    #hero h1 {
        font-size: 1.9rem;
    }
    #hero p {
        font-size: 1rem;
    }
}
/* Gradient button */
.btn-gradient {
  background: linear-gradient(90deg, #ff7f50, #ffb347);
  color: #fff;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(255,127,80,0.4);
}

.btn-gradient:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 35px rgba(255,127,80,0.6);
}

/* Hover scale for service cards */
.hover-scale {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-scale:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Gradient border for circular icons */
.border-gradient {
  border-image-slice: 1;
  border-width: 3px;
  border-image-source: linear-gradient(45deg, #ff7f50, #ffb347);
}
/* Portfolio Overlay */
.portfolio-item {
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-item img {
  transition: transform 0.5s ease;
  border-radius: 15px;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 15px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.hover-zoom {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-zoom:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(90deg, #ff7f50, #ffb347);
  color: #fff;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(255,127,80,0.4);
}

.btn-gradient:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 35px rgba(255,127,80,0.6);
}

/* HERO SECTION */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url('images/slider1.jpg') center center / cover no-repeat;
  overflow: hidden;
}


 .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;  /* behind navbar */
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3));
}

}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
}


#hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(90deg, #ff7f50, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #fff;
}

#hero .btn-primary {
  padding: 15px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff7f50, #ffb347);
  border: none;
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 5px 25px rgba(255,127,80,0.4);
}

#hero .btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 35px rgba(255,127,80,0.5);
}

/* Responsive */
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2.4rem;
  }
  #hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  #hero h1 {
    font-size: 1.9rem;
  }
  #hero p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  #contact form {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  #contact form {
    padding: 20px;
  }
}

element {
}
.navbar {
  transition: all 0.3s ease;

  padding: 15px 0;

  background: rgba(34, 34, 34, 0.95) !important;

}
.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity)) !important;
}
.fixed-top {
  position: fixed;  /* must be fixed for top navbar */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030; /* keep this high so it’s above hero overlay */
}

/* ===========================
   TESTIMONIALS
=========================== */
#testimonials {
  background: #f9f9f9;
  padding: 120px 0;
}

.testimonial-card {
  background: linear-gradient(145deg, #ffffff, #fff5f0);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid #ff7f50;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  font-size: 1.05rem;
  margin: 20px 0 10px;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #ff7f50;
}

/* Swiper Overrides */
.swiper {
  padding-bottom: 40px;
}

.swiper-pagination-bullet {
  background: #ff7f50;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}
