@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Display:ital,wght@0,100..900;1,100..900&display=swap');
h1, h2, h3, h4, h5, h6 {
      font-family: "Noto Sans Display", sans-serif !important;
}
body, p, li, span,a,span,button,input {
     font-family: "Noto Sans Display", sans-serif !important;
}


/* 1. Grid Layout for 3 Columns */
.video-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* 2. Reset Bootstrap columns to fit inside the Grid */
.video-testimonials .video-with-text,
.video-testimonials .row,
.video-testimonials .col-md-8 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 3. SHOW Headings (Previously Hidden) */
.video-testimonials .col-md-4 {
    display: block !important; 
    width: 100% !important;
    text-align: center;
    padding: 10px 0;
}

/* 4. Heading Text Style */
.video-testimonials .video-text h3 {
    display: block !important;
    font-size: 16px;
    color: #333; 
    margin: 5px 0;
    font-weight: bold;
}

/* 5. Video Player Styling */
.video-testimonials iframe {
    height: 250px !important;
    width: 100%;
    border-radius: 8px;
}

/* 6. Mobile Responsiveness */
@media (max-width: 992px) {
    .video-testimonials { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .video-testimonials { grid-template-columns: 1fr; }
}

.cta_no_bg {
    background: #ffffff !important;
    background-image: none !important; /* This removes any existing background image */
}


.agency_work__contents .agency_work__para {
    display: -webkit-box !important;      
    -webkit-line-clamp: 1 !important;    
    -webkit-box-orient: vertical !important; 
    overflow: hidden !important;        
    text-overflow: ellipsis !important; 
    white-space: normal !important;      
    max-height: 1.2em !important;      
}

.agency_work__title{
     display: -webkit-box !important;      
    -webkit-line-clamp: 1 !important;    
    -webkit-box-orient: vertical !important; 
    overflow: hidden !important;        
    text-overflow: ellipsis !important; 
    white-space: normal !important;      
    max-height: 1.2em !important;   
}

    .agency_work_area .first-bg{
        display: none !important;
    }
    
    .agency_work_area .last-bg{
        display: none !important;
    }
    
    .agency_section__title .title{
        margin-top: 20px !important;
        text-align: center !important;
    }
    
    .agency_work_area{
        background: #f1f1f1 !important;
    }
    
  
  
  
 /* 1. Main Container: Navy Background & Rounded Corners */
.agency_contact_single {
    background: #00467c !important; /* Deep Navy Blue */
    border-radius: 8px !important;
    padding: 15px 30px !important; /* Balanced padding */
    margin: 20px 0 !important;
}

/* 2. Layout: Forces Text and Button to opposite sides in one row */
.agency_contact_single__flex {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important; /* Prevents button from dropping to second line */
    gap: 20px !important;
}

/* 3. Text Styling: Forces "Save your time..." onto ONE line */
.agency_section__title.white .title {
    color: #ffffff !important;
    font-size: 22px !important; /* Adjusted slightly to fit better inline */
    font-weight: 700 !important;
    margin: 0 !important;
    white-space: nowrap !important; /* FORCES INLINE TEXT */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 4. Remove unwanted background shapes */
.agency_title_shape {
    display: none !important;
}

/* 5. Button Styling: Red Background per your latest color choice */
.cmn-agency-btn.cmn-agency-btn-bg-1 {
    background: #ef1721 !important; /* Bright Red */
    color: #ffffff !important;
    padding: 10px 25px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important; /* Ensures button text doesn't wrap */
    display: inline-block !important;
}

/* 6. Mobile Fix: Allows wrapping ONLY on small screens so it doesn't break */
@media (max-width: 768px) {
    .agency_contact_single__flex {
        flex-wrap: wrap !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .agency_section__title.white .title {
        white-space: normal !important;
        margin-bottom: 15px !important;
    }
}

.agency_contact_footer.agency_section_bg_3{
background:white !important;
}

.about-age-calc{
    background:#f1f1f1 !important;
}


.about-age-calc .about-contents h1{
    font-size: 36px !important;
    font-weight: 600 !important;
    margin: 0 0 16px !important;
    line-height: 1.4 !important;
    color: var(--heading-color) !important;
    position: relative !important;
}

.aboutCaption-global .pera{
    color:black !important;
}

.about-age-calc .about-contents p{
    color:black !important;
}

.about-age-calc .age-calculator label{
    color:black !important;
}

.agency_work_area .agency_work .agency_work__contents p{
    color:black !important;
}

.construction_blog__contents__title {
  font-size:18px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;  /* show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.construction_sectionTitle__two .title {
    text-align: center !important;
    width: 100%;
    margin: 20px 0 20px 0;
}




/* Container and Section Spacing */
.faq-agro {
    background-color: #f1f1f1; /* Light grey background for the section */
    padding: 60px 0;
}

/* Individual FAQ Card Styling */
.faq-agro .card-custom {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Soft shadow */
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Hover effect for the card */
.faq-agro .card-custom:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Question (Header) Styling */
.faq-agro .card-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 0; /* Remove padding to let the link fill the space */
}

.faq-agro .card-title a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Answer (Body) Styling */
.faq-agro .card-body {
    padding: 20px 25px;
    color: #666;
    line-height: 1.7;
    background-color: #ffffff;
}

/* Customizing the Arrow/Icon (if present in your theme) */
.card-arrow .icon {
    width: 12px;
    height: 12px;
    border-right: 2px solid #00467c; /* Primary color */
    border-bottom: 2px solid #00467c;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Rotate icon when expanded */
.card-title a[aria-expanded="true"] .icon {
    transform: rotate(-135deg);
}

.faq-agro h2.text-center{
    color:#00467c !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    margin: 20px 0 20px 0 !important;
}



@media (max-width: 576px) {
    .about-age-calc .about-contents h1 {
            font-size: 23px !important;
    }
    }
    
    
/* Targeting the section by its unique ID and class */
#service.agency_work_area {
    padding-bottom: 60px !important;
}

.video-testimonials {
    padding: 25px 0 0 0 !important;
}


.faqArea.section-padding.fix.sectionBg2{
    background-color: #f1f1f1 !important;
}

.heartbeat2, .sliderArea .heroCaption .tittle::after, .section-tittle .tittle::after {
    display: none !important;
}

.routedOne, .section-tittle .tittle::before {
    display: none !important;
}

.faqArea.section-padding.fix.sectionBg2{
    padding-top: 35px !important;
    padding-bottom: 30px !important;
}