/* Ensure the Hero section remains visible */
.pro-hero-about {
    position: relative;
    height: 400px;
    background: url('../../assets/images/bg-img.jpg');
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-attachment: fixed;
    background-position: center center;
     background-repeat: no-repeat; 
    background-size: cover;
    background-color: #0e1217;
}

.pro-hero-overlay-about {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.pro-hero-content-about { position: relative; z-index: 2; }
.pro-hero-title-about { 
    font-size: 52px; 
    font-family: 'Playfair Display', serif;
    font-weight: 700; 
    margin-bottom: 10px; 
}
.pro-hero-subtitle-about { font-size: 18px; opacity: 0.9; }

.abt-container {
    padding: 80px 10%;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif; /* Matching your screenshot style */
}

.abt-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: flex-start;
}

.abt-left-col, .abt-right-col {
    flex: 1;
}

.abt-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
}

/* Container for logo and name */
.abt-logo-branding {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    margin-top: 40px;
    align-items: center;
}

.abt-company-logo {
    width: 40%;
    height: auto;
    margin-bottom: 10px; 
}

.abt-company-name {
    font-size: 70px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
    background: -webkit-linear-gradient(#ea7e08, #6a5c4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Optional: Add a small accent line under the name */
.abt-company-name::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #eb6753;
    margin-top: 8px;
}

.abt-description-top {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.abt-description-bottom {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.abt-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.abt-feature-item h3 {
    font-size: 1.1rem;
    margin: 15px 0 5px;
}

.abt-feature-item p {
    font-size: 0.9rem;
    color: #777;
}

/* Responsive Design */
@media (max-width: 992px) {
    .abt-wrapper {
        flex-direction: column;
    }
    .abt-main-heading {
        font-size: 2rem;
    }
}

/*********************************************/
.abt-expertise-section {
        padding: 60px 8%;
    /*background-color: #e3e3e3;*/
    /* max-width: 1300px; */
    margin: auto;
}

.abt-expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.abt-exp-card {
    background: #dcdada;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.abt-exp-card:hover {
    transform: translateY(-10px);
}

/* Moving Icon Logic */
.abt-exp-icon {
    font-size: 40px;
    color: #eb6753; /* Your brand accent color */
    margin-bottom: 20px;
    display: inline-block;
    animation: abtFloat 3s ease-in-out infinite;
}

/* Staggered animation for variety */
.abt-exp-card:nth-child(2) .abt-exp-icon { animation-delay: 0.5s; }
.abt-exp-card:nth-child(3) .abt-exp-icon { animation-delay: 1s; }
.abt-exp-card:nth-child(4) .abt-exp-icon { animation-delay: 1.5s; }

@keyframes abtFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.abt-exp-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #c3996c;
}

.abt-exp-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}
/*****************************************/
/* The main section background */
.abt-solid-section {
    padding: 80px 10%;
}

.abt-solid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px; /* This creates a thin line between the cards */
    background-color: rgba(255, 255, 255, 0.1); /* The line color */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.abt-solid-card {
    background: -webkit-linear-gradient(#fe9119, #ffbf7a);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: background 0.3s ease;
}

/* The Highlight: High-contrast color for the numbers */
.abt-counter-number {
    font-size: 4rem;
    font-weight: 900;
    color: #723e03;
    margin: 0;
    line-height: 1;
}

.abt-counter-number::after {
    content: '+';
    font-size: 2.5rem;
}

.abt-text-wrapper h3 {
        color: #904e04;
    font-size: 1.3rem;
    margin: 20px 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.abt-text-wrapper p {
    color: #773f00;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Hover Effect: Highlight the whole card */
.abt-solid-card:hover {
    background-color: #25282b; /* Slightly lighter on hover */
}

/* Responsive */
@media (max-width: 992px) {
    .abt-solid-container {
        grid-template-columns: 1fr;
    }
}
/**********************************************/
.abt-choose-section {
    padding-bottom: 80px;
    background-color: #ffffff; 
    position: relative;
}

/* The Background Image Area */
.abt-choose-header {
    background-image: url('../../assets/images/services-h-fig.jpg'); 
    background-size: cover;
    background-position: center;
    padding: 100px 10% 180px; 
    text-align: center;
}

.abt-choose-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.abt-choose-header p {
    font-size: 1.1rem;
    color: #555;
}

/* The Overlapping Grid */
.abt-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: -100px auto 0; 
    background-color: #fff;
    box-shadow: 0px 14px 20px 13px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
}

.abt-choose-card {
    padding: 50px 30px;
    text-align: center;
    background: #fff;
    border-right: 1px solid #d9d8d8;
    transition: background 0.3s ease;
}

.abt-choose-card:last-child {
    border-right: none;
}

.abt-choose-icon {
    /*margin-bottom: 25px;*/
}

.abt-choose-icon img {
    height: 95px;
    width: auto;
}

.abt-choose-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.abt-choose-card p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
}

/* Hover effect from the image: subtle shadow */
.abt-choose-card:hover {
    background-color: #fafafa;
}

/* Responsive: Stack cards on mobile */
@media (max-width: 1024px) {
    .abt-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: -50px 5% 0;
    }
    .abt-choose-card {
        border-bottom: 1px solid #f0f0f0;
    }
}

@media (max-width: 600px) {
    .abt-choose-grid {
        grid-template-columns: 1fr;
    }
}