/* topbar */
.left-icon {
	padding: 10px;
}
.topbar-bg {
	background: #8d0604;
	padding: 5px 0px;
}

/* navbar */
.company-name {
	color: #8d0604;
    font-size: 28px;
}

.slogan {
	font-size:18px; 
	letter-spacing:1px;
	text-align: center;
}
.nav-bar {
	padding: 0px;
    background-color: #fff !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 9;
}
.nav-bar.fixed {
  top: 0;
}
.navbar-logo {
	height:60px; 
	width:auto; 
	margin-right:10px;
}

/* home page */
#blog-carousel {
  position: relative;
  z-index: 1;
  margin-top: 85px; 
}
.text-color {
	color: #DA9F5B;
}
.page-header {
	margin-top: 85px;
	height: 350px;
}

/* banner */
#blog-carousel .carousel-item img {
  height: 700px;            
  object-fit: cover;     
  width: 100%; 
}
/* Banner Overlay Effect */
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* adjust darkness */
  z-index: 1;
}
/* gallery section */
.gallery-carousel .custom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #333333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-carousel .custom-nav.prev {
    left: -60px; 
}

.gallery-carousel .custom-nav.next {
    right: -60px; 
}

.gallery-carousel .custom-nav:hover {
    background: #276121;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.gallery-carousel .custom-nav i {
    font-size: 18px;
}

/* about page */
.about-right-content {
	letter-spacing: 4px;
}
.about-img img {
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.about-img img:hover {
  transform: scale(1.03);
}

.experience-badge {
  top: 20px;
  left: 20px;
  font-size: 16px;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.vision-card, .mission-card {
	transition: all 0.3s;
}
.mission-card {
	background: linear-gradient(135deg,#e6f0ff,#fff);
}
.vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.feature-card-modern i {
    transition: transform 0.3s, color 0.3s;
}
.feature-card-modern:hover i {
    transform: scale(1.3);
    color: #276121;
}
.feature-card-modern {
		transition: all 0.3s;
}
.feature-card-first {
	background: #fff8e6; 
}
.feature-card-second {
	background: #e6fff8;
}
.feature-card-third {
	background: #ffe6f0;
}
.feature-card-four {
	background: #e6f7ff; 
}

.why-choose-modern h3 {
    letter-spacing: 2px;
}
.why-choose-card {
	margin-top:30px;
}
.vision {
	padding: 10px;
}
.about-vision-modern {
	background: #f8f9fa;
}
.vision-mission {
	background: linear-gradient(135deg,#ffe6e6,#fff);
}
.testimonial-space {
	letter-spacing: 5px;
}
/* ABOUT SECTION IMAGE STYLING */
.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.about-img img {
  width: 100%;
  height: auto;
  transform: scale(1.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: floatImage 4s ease-in-out infinite;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Hover effect */
.about-img:hover img {
  transform: scale(1.1);
  box-shadow: 0 15px 25px rgba(0,0,0,0.25);
}

/* Floating animation */
@keyframes floatImage {
  0% {
    transform: translateY(0) scale(1.05);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1.05);
  }
}

/* service page */
.service-img {
    max-width: 120px;   
    height: auto;       
    object-fit: cover;  
    border-radius: 8px;
    transition: ransform 0.6s ease, box-shadow 0.4s ease;
}

.service-img:hover {
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

@keyframes slideLine {
    to {
        transform: translateX(0);
    }
}
.service-cta {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 30px;
}

/* View More & WhatsApp CTA Section */
.service-cta h3 {
  color: #222;
  font-weight: 700;
  font-size: 1.6rem;
}

/* Buttons */
.service-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

/* View More Button Style */
.btn-view-more {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
  gap: 10px;
}
.btn-view-more:hover {
  background-color: transparent;
  color: #007bff;
  transform: scale(1.05);
}
/* button-space */
.button-space {
	gap: 25px;
}
/* WhatsApp Button Style */
.btn-whatsapp-enquiry {
  background-color: #25D366;
  color: #fff;
  border: 2px solid #25D366;
  gap: 10px;
}
.btn-whatsapp-enquiry:hover {
  background-color: transparent;
  color: #25D366;
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-cta {
    padding: 40px 20px;
    margin-top: 30px;
  }
  .service-cta h3 {
    font-size: 1.3rem;
  }
  .service-cta .btn {
    width: 100%;
    margin: 5px 0;
  }
}

 /* features */
 .feature-card {
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.feature-card i {
    transition: transform 0.3s;
}
.feature-card:hover i {
    transform: scale(1.2);
}
.features-section {
    background-image: url('../img/why-choose.jpg'); 
    background-size: cover;           
    background-position: center;     
    background-repeat: no-repeat;    
    position: relative;
    padding: 100px 0;                
    color: #fff;                     
}
.features-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);    
    z-index: 1;
}
.features-section > .container {
    position: relative;
    z-index: 2;
}
.para {
	color: #222;
}

/* Menu */
.menu-item img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 5px solid #fff;
  width: 200px;
  height: 200px;
}
.left {
	margin-left: 170px;
}

.menu-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.menu-item h3 {
  color: #333;
}
.menu-item p {
  font-size: 16px;
  line-height: 1.7;
}
.menu-item {
  transition: transform 0.4s ease;
  margin-bottom: 10px;
}
.menu-item:hover {
  transform: translateY(-5px);
}

/* Responsive Tweaks */
@media (max-width: 767px) {
  
}

/* footer */
.footer {
	background:#222;
}
.footer-about {
	margin-left: 54px;
}
.footer-group {
	margin-left: -62px;
}
.footer-touch {
	margin-left: -38px;
}
.footer-logo {
	margin-top: -40px;
}
.footer-bottom {
	border-color: rgba(256, 256, 256, .1) !important;
}
.footer-cont {
	letter-spacing: 2px;
}

/* braed crumb */
.breadcrumb-bg {
	min-height: 400px;
}
/* call action page */
.cta-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin: 50px auto;
  max-width: 850px;
  padding: 50px 25px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.cta-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
}

.cta-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Button Styles */
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-section .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
}

/* Call Button */
.btn-call {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
  gap: 10px;
}
.btn-call:hover {
  background-color: transparent;
  color: #007bff;
  transform: scale(1.05);
}

/* WhatsApp Button */
.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  border: 2px solid #25D366;
  gap: 10px;
}
.btn-whatsapp:hover {
  background-color: transparent;
  color: #25D366;
  transform: scale(1.05);
}

/* gallery page */
.filters {
    margin: 30px 0px;
}

.filter-tabs {
    padding: 0;
    margin: 0;
    list-style: none;
}

.filter-tabs li {
    display: inline-block;
    margin: 5px 10px;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
}

.filter-tabs li:hover {
    background-color: #276121;
    color: #fff;
    border-color: #276121;
    transform: translateY(-2px);
}

.filter-tabs li.active {
    background-color: #276121;
    color: #fff;
    border-color: #276121;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}
/* Gallery Image Box */
.inner-box {
    margin: 30px;
}

/* Make all images same height and width */
.image-box {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-box:hover img {
    transform: scale(1.05); 
}

/* Overlay styling (optional, keeps your existing overlay) */
.overlay-one {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.image-box:hover .overlay-one {
    opacity: 1;
}

/* Caption Box Styling */
.caption-box-two {
    margin-top: 10px;
}

.caption-box-two h3 {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}
.caption-box-two h3 a {
	color: #222;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-about,
  .footer-group,
  .footer-touch {
    margin-left: 0 !important;
  }
  #blog-carousel .carousel-item img {
	  height: 400px;
  }
  #blog-carousel {
	  margin-top: 0px; 
  }
  .banner-head {
	  font-size: 36px;
      font-weight: 700;
  }
  .banner-title {
	  font-size: 18px;
      font-weight: 700;
  }
  .nav-bar {
	  top: 0;
  }
  .navbar-toggler {
    color: #222 !important;
    border-color: #222 !important;
    font-size: 13px;
    margin-left: 340px;
	margin-top: -70px;
  }
  .company-name {
  font-size: 20px;
  }
  .slogan {
  font-size: 10px;
  }
  .container-fluid.bg-dark .d-flex {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
  }

  .container-fluid.bg-dark .text-lg-start {
    text-align: center !important;
    margin-bottom: 8px;
  }

  .container-fluid.bg-dark .text-lg-end {
    text-align: center !important;
  }

  .container-fluid.bg-dark .text-lg-end a {
    font-size: 16px;
    margin: 0 6px;
  }
  .page-header {
	margin-top: 0px;
  }
    .topbar-bg .text-lg-end {
    width: 100%;
    text-align: center !important;
    margin-top: 5px;
  }

  .topbar-bg .text-lg-end a {
    display: inline-block;
    margin: 0 6px;
    font-size: 16px;
  }
      .filter-tabs li {
        padding: 8px 18px;
        font-size: 14px;
        margin: 4px 6px;
    }
	  .about-img img {
    transform: scale(1.02);
  }
  .breadcrumb-bg {
	min-height: 240px;
  }
  .cta-section {
    margin: 30px 15px;
    padding: 40px 20px;
  }
  .cta-title {
    font-size: 1.7rem;
  }
  .cta-text {
    font-size: 1rem;
  }
  .cta-section .btn {
    min-width: 100%;
    justify-content: center;
  }
  .menu-item {
    text-align: center;
  }
  .menu-item img {
    margin-bottom: 20px;
  }
  .left {
	  margin-left: 0px;
  }
}
@media (max-width: 992px) {
  #blog-carousel .carousel-item img {
    height: 500px;
  }
}

@media (max-width: 576px) {
  #blog-carousel .carousel-item img {
    height: 300px;
  }
  .back-to-top {
    right: 65px;
    bottom: 35px;
  }
}
/* Fix footer alignment only for iPad/tablet view */
@media (min-width: 768px) and (max-width: 1024px) {
  .footer .footer-logo {
	  margin-left: -20px;
  }
  .footer .footer-about,
  .footer .footer-group,
  .footer .footer-touch {
	  margin-left: 0px;
  }
    .footer-touch p {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-wrap: nowrap;
  }

  .footer-touch p i {
    margin-right: 8px !important;
    padding: 0 !important;
    min-width: 20px;
  }
}
@media (max-width: 360px) {
    .navbar-toggler {
        margin-left: 295px !important;
        margin-top: -97px !important;
    }
	.company-name {
        font-size: 17px;
    }
	.slogan {
		font-size: 12px;
    }
}
@media (max-width: 390px) {
    .navbar-toggler {
        margin-left: 316px;
        margin-top: -37px;
    }
}
@media (max-width: 480px) {
  .cta-section {
    padding: 35px 15px;
    border-radius: 10px;
  }
  .cta-title {
    font-size: 1.5rem;
  }
  .cta-text {
    font-size: 0.95rem;
  }
  .cta-section .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}