/* Main Image Slider Styles */
.main-slider {
    width: 100%;
    height: 85vh;
    position: relative;
    overflow: hidden;
    background: #000;
    display: block !important;
    visibility: visible !important;
    z-index: 1 !important;
    margin-top: 0;
    padding-top: 0;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    display: block !important;
    visibility: visible !important;
}

.slide.active {
    opacity: 1;
    display: block !important;
    visibility: visible !important;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit:-10px;
    object-position: center center;
    background-color: #000;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active::before {
    opacity: 1;
}

.slide-content {
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: 8%;
    color: #fff;
    z-index: 2;
    max-width: 600px;
    padding: 1.5rem 2rem;
    /* background: rgba(0, 0, 0, 0.35); */
    /* backdrop-filter: blur(4px); */
    border-radius: 0 12px 12px 0;
}

.slide-content.align-right {
    left: auto;
    right: 5%;
    text-align: right;
    border-radius: 12px 0 0 12px;
}

.slide-tagline {
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffd18c;
    margin-bottom: 0.6rem;
    display: inline-block;
}

.slide-content h2 {
    font-size: 3rem;
    margin: 0 0 0.75rem;
    line-height: 1.1;
    color: white;
}

.slide-content p {
    font-size: 1.1rem;
    margin: 0;
    letter-spacing:1px;
}

.slide-content hr {
    border: none;
    border-top: 2px solid rgba(255, 255, 255, 0.6);
    margin: 1rem 0;
    width:100%;
}

.slide-content p + p {
    margin-top: 0.75rem;
}

.slide-shadow h2,
.slide-shadow p {
    text-shadow: 0 6px 18px rgba(0, 0, 0, 1);
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    color: #333;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Slide Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #fff;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .main-slider {
        height: 40vh;
        margin-top: 60px;
    }
    
    .slide-content {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: 0 !important;
        text-align: center;
        bottom: 6%;
        top: auto !important;
        padding: 1.25rem;
        max-width: 90%;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .main-slider {
        height: 40vh;
        margin-top: 60px;
    }
    
    .slide img {
        min-height: 40vh;
    }
    
    .slide-content {
        padding: 1.25rem;
        width: 90%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: 0 !important;
        text-align: center;
        bottom: 6%;
        top: auto !important;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .indicator {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .slider-indicators {
        bottom: 20px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .main-slider {
        height: 40vh;
        margin-top: 50px;
    }
    
    .slide img {
        min-height: 40vh;
    }
    
    .slide-content {
        padding: 1rem;
        width: 95%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: 0 !important;
        text-align: center;
        bottom: 6%;
        top: auto !important;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.8rem;
    }
    
    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .slider-arrow.prev {
        left: 5px;
    }
    
    .slider-arrow.next {
        right: 5px;
    }
    
    .indicator {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
    
    .slider-indicators {
        bottom: 15px;
        gap: 8px;
    }
}

@media (max-width: 360px) {
    .slide-content h2 {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 0.7rem;
    }

    .slide-content {
        padding: 0.9rem;
    }
    
    .indicator {
        width: 25px;
        height: 25px;
        font-size: 9px;
    }
}

/* Smooth transitions */
.slider-wrapper,
.slide,
.slider-arrow,
.indicator {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Touch support for mobile */
@media (hover: none) and (pointer: coarse) {
    .slider-arrow {
        opacity: 0.7;
    }
    
    .slider-arrow:active {
        opacity: 1;
        transform: translateY(-50%);
    }
    
    .indicator:active {
        transform: scale(0.95);
    }
}

/* Company & Owner About Section Styles */
.company-about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.company-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23dee2e6" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23dee2e6" opacity="0.3"/><circle cx="50" cy="10" r="1" fill="%23dee2e6" opacity="0.3"/><circle cx="10" cy="50" r="1" fill="%23dee2e6" opacity="0.3"/><circle cx="90" cy="30" r="1" fill="%23dee2e6" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #e74c3c);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Who We Are Section */
.who-we-are-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.who-we-are-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #3498db, #e74c3c);
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

.main-paragraph {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #5a6c7d;
    margin-bottom: 25px;
    text-align: justify;
}

.main-paragraph:last-child {
    margin-bottom: 0;
}

/* What We Do Section */
.what-we-do-section {
    margin-bottom: 60px;
}

.what-we-do-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #3498db, #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 30px;
    color: white;
}

.service-item h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 1rem;
}

.search__box{
  margin-top: -50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: var(--white-color);
  padding: 20px;
  border-radius: 6px;
  box-shadow: var(--box-shadow);
  gap: 20px;
}

.search__field{
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 15px;
  border-right: 1px solid var(--text-color-light);
  position: relative;
  cursor: pointer;
}

.search__field:last-of-type{
  border-right: none;
}

.search-icon{
  color: var(--orange-color);
  font-size: var(--h4-font-size);
}

.search__text{
  display: flex;
  flex-direction: column;
}

.search__label{
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-bottom: 4px;
}

.select{
  font-size: var(--normal-font-size);
  padding: 5px;
  border: none;
  border-radius: 4px;
  font-weight: var(--font-bold);
  width: 130px;
  outline: none;
}

.price-display{
  font-size: var(--normal-font-size);
  font-weight: var(--font-bold);
  color: var(--black-color);
  margin-top: 4px;
}

.range__slider{
  position: relative;
  height: 35px;
  width: 180px;
  margin-top: 10px;
}

.range-slider input[type="range"] {
  position: absolute;
  width: 100%;
  height: 5px; 
  background: var(--light-gray-color); 
  pointer-events: auto;  
  border-radius: 5px;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  background: var(--orange-color);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  z-index: 2;
  position: relative;
}
 
.search-btn{
  background-color: var(--dark-orange-color);
  color: var(--white-color);
  border: none;
  padding: 15px 25px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: var(--font-semi-bold);
  font-size: var(--large-font-size);
}

.search-btn:hover{
  background-color: var(--hover-color);
}

.price-dropdown{ 
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--white-color);
  box-shadow: var(--small-box-shadow);
  padding: 10px;
  border-radius: 4px;
  z-index: 10;
  transition: 0.3s ease;
}

.search__field.show .price-dropdown{
  display: block;
}


/* Achievements Section */
.achievements-section {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="achievement-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23achievement-pattern)"/></svg>');
    opacity: 0.3;
}

.achievements-section h4 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat .number:hover {
    transform: scale(1.1);
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.stat .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-about {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .who-we-are-content {
        padding: 30px;
    }
    
    .main-paragraph {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-item {
        padding: 30px;
    }
    
    .stats {
        gap: 30px;
    }
    
    .achievements-section {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .company-about {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .who-we-are-content {
        padding: 25px;
    }
    
    .main-paragraph {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .service-item {
        padding: 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 25px;
    }
    
    .stats {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        min-width: auto;
    }
    
    .stat .number {
        font-size: 2rem;
    }
    
    .achievements-section {
        padding: 25px;
    }
}
