/* Custom Styles for theme and effects */
        .text-primary-custom { color: #f59e0b; } /* Amber 500 */
        .bg-primary-custom { background-color: #f59e0b; } /* Amber 500 */
        .hover-bg-primary-custom:hover { background-color: #d97706; } /* Darker Amber on hover */

        /* Custom shadow for the box */
        .shadow-elegant {
            box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.08), 0 0 50px rgba(0, 0, 0, 0.15);
        }

        /* --- Slider/Background Styles --- */
        .slider-background {
            /* Initial setup for smooth transition */
            transition: background-image 1s ease-in-out, transform 4s ease-out;
            background-size: cover; /* Ensures image covers the area */
            background-repeat: no-repeat;
            background-position: center center;
            /* Simulating the initial 'zoom' effect slightly */
            transform: scale(1.02); 
        }

        /* The background gradient, adjusted to ensure white text visibility */
        .bg-gradient-hero {
            background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
        }

        /* Content Box - Keeping the Dark/Blue look you used, changed to a strong dark gray for better readability */
        .bg-dark-overlay {
            background-color: rgba(29, 40, 50, 0.9); /* Dark Blue/Gray */
        }

        /* Simple animation simulation (slide-in-from-left) for the content box */
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-32px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .animate-in-custom {
            animation: slideIn 1s ease-out forwards;
        }
.about-us-section {
    padding: 80px 0;
    background-color: #f7f7f7; /* Light background for contrast */
}

.about-us-section .container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-media {
    flex: 1;
    position: relative;
}

.about-media .responsive-image {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 5px;
}

.section-title .underline {
    display: block;
    width: 60px;
    height: 3px;
    background-color: #f44336; /* Accent color */
}

.experience-highlight {
    font-size: 20px;
    color: #f44336;
    font-weight: 600;
    margin: 10px 0 25px;
}

.experience-highlight .highlight-number {
    font-size: 24px;
    font-weight: 700;
}

.mission-text {
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Feature List (Checkmarks) */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-list .check-icon {
    color:#f44336;
    margin-right: 10px;
}

/* Read More Button Styling */
.read-more-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid #f44336;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.read-more-button:hover {
    background-color: #f44336;
    color: #fff;
}
.services-grid-section {
    padding: 80px 0;
    background-color: #fff;
}

.services-grid-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Centered Heading Style */
.section-heading-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading-center .subtitle {
    font-size: 14px;
    color: #4e2626; /* Accent color */
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.section-heading-center .main-heading {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Creates 3 equal columns */
    gap: 30px;
}

.service-card {
    overflow: hidden; /* Important for clean image containment */
    position: relative;
    background-color: #f7f7f7;
    cursor: pointer;
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    /* Optional: Add a transition for a subtle zoom/hover effect */
    transition: transform 0.5s ease-in-out; 
}

/* Hover Effect (Optional: makes the image zoom slightly) */
.service-card:hover .service-image {
    transform: scale(1.05);
}

/* You can add a subtle overlay or text box (like in image_c1f902.jpg) 
   to each card using the .service-details div */
.service-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Dark bottom bar */
    color: #fff;
    padding: 15px;
    transform: translateY(100%); /* Hide initially */
    transition: transform 0.3s ease-out;
}

.service-card:hover .service-details {
    transform: translateY(0); /* Show on hover */
}

@media (max-width: 768px) {
  .floating-btn {
    top: 50%;  
    right: 20px;
    width: 60px;
    height: 60px;
    font-size: 40px; 
  }

  .floating-btn.phone {
    top: 60%; 
  }
}