:root {
    --primary-orange: #d9901c;
    --dark-blue: #0a1a2f;
    --text-gray: #555;
    --light-gray: #f9f9f9;
    --border-color: #eee;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

.whole-main h1, .whole-main h2, .whole-main h3,.whole-main h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

/* Hero Section */
.hero {
    padding: 120px 0 60px;
}

.hero-sub{
 margin:0 50px 0 140px;
}

.hero-flex {
    display: flex;
    align-items: start;
    /* gap: 40px; */
}

.hero-content {
    flex: 0.9;
}

.hero-image {
    flex: 1.2;
}

.hero-image img {
    width: 100%;
    height: auto;
}

.eyebrow {
    color:#941202;
    font-size:13px;
    font-weight:500;
    letter-spacing:4%;
    line-height: 100%;
    margin-bottom: 20px;
    display: block;
     font-family: 'Montserrat', sans-serif;
}

.hero h1 {
    font-size: 46px;
    font-weight: 700;
    line-height:50px;
    letter-spacing: 1%;
    margin-bottom: 25px;
    color: #000000;
}

.hero h1 span {
    color:#D48C14;
}

.hero p {
    font-size: 17px;
    color:#626262;
    margin-bottom: 25px;
    max-width: 500px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0%;
    font-family: 'Montserrat', sans-serif;
}

.btn-group {
    /* display: flex; */
    gap: 15px;
    /* margin-bottom: 40px; */
}

.btn {
    
    border-radius:6px !important;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    padding:12px 28px;
   
}

.btn-primary , .btn-primary:hover , .btn-primary:active{
    background-color: #D48C14 !important;
    border-color: transparent !important;
    color: white;
}

.btn-outline , .btn-outline:hover,.btn-outline:active {
    border: 1px solid #D48C14 !important;
    color: #D48C14 !important;
} 

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 26px;
    margin-bottom: 5px;
    font-weight: 700;
    line-height:100%;
    letter-spacing: 0%;
}

.stat-item p {
    font-size: 13px;
    margin-bottom: 0;
    color:#626262;
}

/* Section 2: AI Development */
.section-2 {
    padding: 80px 0;
    background-color: #F7F7F7;
}

.section-2-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.section-2-image {
    flex: 1;
}

.section-2-image img {
    width: 100%;
    border-radius: 15px;
   
}

.section-2-content {
    flex: 1;
}

.section-2-content .eyebrow {
    margin-bottom: 12px;
}

.section-2-content h2 {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 1%;
    margin-bottom: 5px;
    font-weight:700;
    color:#000000;
    font-family: 'Montserrat', sans-serif;
}

.section-2-content p {
    font-size: 15px;
    color: #626262;
    margin-bottom: 20px;
    line-height: 24px;
    font-weight: 400;
    font-family:'Montserrat', sans-serif;
}

.link-arrow,.link-arrow:hover,.link-arrow:after {
    color: #941202;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    
    


}

/* Case Studies Grid */
.ai-case-studies {
    padding: 80px 0;
    text-align: center;
    background-color: #ffffff;
}

.section-title {
    margin-bottom: 50px;
}

.section-title .eyebrow {
    text-align: center;
}

.section-title h2 {
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    color:#000000;



}

.eyebrow-1{
    font-family:'Montserrat', sans-serif;
    font-weight:500;
    font-size:13px;
    line-height: 100%;
    letter-spacing:4%;
    color:#D48C14;
    margin-bottom: 15px;

}

.section-title p {
    color: #626262;
    font-size: 16px;
    font-weight: 400;
    line-height:24px;
    letter-spacing:0%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 20px auto 0;
}

.card {
    background: #fff;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card .eyebrow {
    font-size: 10px;
    margin-bottom: 5px;
}

.card h4 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: none;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0%;
    color:#000000;
}

.card p {
    font-size: 15px;
    font-weight: 400;
    color:#626262;
    margin-bottom: 20px;
    line-height:24px;
    letter-spacing: 0%;
    
}

/* Industries Section */
.industries {
    padding: 80px 0;
    text-align: center;
    background-color:#F7F7F7;
}

.industry-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
   
}

.industry-item {
    width: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.industry-icon {
    font-size: 32px;
    color: #b0502a;
}

.industry-item p {
    font-size: 14px;
    font-weight: 500;
    
    color:#000000;
    margin: 0;
    line-height:20px;
    letter-spacing: 0%;
    font-family:'Montserrat', sans-serif;

}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}

.faq-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
     font-family:'Montserrat', sans-serif;
}

.faq-header h5 {
     font-family:'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color:#333333;
    margin: 0;
    line-height: 100%;
    letter-spacing: 0%;
}

.faq-content {
    padding: 0 20px 20px;
    font-size: 15px;
    font-weight: 400;
    color:#585858;
    line-height:24px;
    letter-spacing:0%;


    
    display: none;
}

.faq-item.active .faq-content {
    display: block;
}

.faq-item.active .faq-header {
    background-color: #fcfcfc;
}

/* Footer Banner */
.footer-banner {
   background: linear-gradient(90deg, #EBB61B 0%, #D48C14 100%);

    padding: 100px 0;
    text-align: center;
    color: white;
}

.footer-banner h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height:36px;
    letter-spacing: 0%;

}

.footer-banner p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 16px;
    opacity: 0.9;
    line-height: 24px;
    letter-spacing: 0%;
    font-weight:400
}

.footer-banner .btn-group {
    justify-content: center;
}

.footer-banner .btn-primary {
    background: white !important;
    border-color: transparent;
    color: #D48C14 !important;
}

.footer-banner .btn-outline {
    border: 0.2px solid #FFFFFF !important;
    color:#ffffff !important;
    
}
#site-footer{
    margin-top: 0px;
}

@media (max-width: 768px) {
    .hero-flex, .section-2-flex {
        flex-direction: column;
    }
    .grid, .grid-2 {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero-stats {
        flex-wrap: wrap;
    }
}
