/* --- GLOBAL/RESET FOR THIS EXAMPLE --- */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
    background-color: #000;
}

/* --- HERO SECTION CONTAINER --- */
.orc-hero-section {
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height: 550px;
    width: 100%;
}

/* --- 1. TOP HEADER BAR STYLING --- (No changes needed) */
.orc-top-header {
    background-color: #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.orc-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.orc-nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.orc-cta-header-btn {
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;
    transition: background-color 0.2s;
}
.orc-cta-header-btn:hover {
    background-color: #333;
}

/* --- 2. MAIN CONTENT AREA (Below the gray header) --- */
.orc-content-container {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}

/* --- Background Figure/Image Positioning ---
   CRITICAL CHANGE: Ensure the background/gradient exists on the container itself
   if the nested element is not working, or make sure the nested element is present.
   I am ensuring the gradient is strong enough to cover the whole space. 
*/
.orc-bg-figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* FALLBACK: Use a strong dark background if image fails */
    background-color: #141414; /* Dark gray/nearly black */
    
    /* Overlay Gradient for the dark/brown area (Adjusted for better coverage) */
    background-image: 
        linear-gradient(to right, rgba(20, 20, 20, 0.2) 20%, rgba(90, 60, 40, 0.2) 100%), 
        url('https://dbinti.com/wp-content/uploads/2025/12/WhatsApp-Image-2025-12-08-at-9.46.55-AM.jpeg'); /* Actual image in production */
    background-size: cover; 
    background-position: center right;
}

/* --- Text Content Positioning (Desktop Base) ---
   CRITICAL CHANGE: This block is primarily responsible for vertical centering.
   The margin: 0 auto; line was only centering horizontally.
*/
.orc-text-content {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* THIS IS THE KEY FOR VERTICAL CENTERING */
    max-width: 630px; 
    /* NEW: Setting left margin to push it fully to the left side 
       of the 1200px container, which helps on very wide screens. */
    margin-left: 0;
    margin-right: auto;
}

.orc-text-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    /* Adjusted margin-top to recenter the content vertically */
    margin-top: -40px; 
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
}
/* ... (rest of the CSS, including media queries, remains the same) ... */
/* --- CALL-TO-ACTION BUTTONS --- */

.orc-cta-group {
    display: flex;
    gap: 15px;
}

.orc-cta-group a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 30px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Primary Button (Book a Demo) */
.orc-cta-primary {
    background-color:#E5E0DC;
    color: #1a1a1a;
    border: none;
    transition: background-color 0.2s;
    border-radius: 50px !important;
}
.orc-cta-primary:hover {
    background-color: #f0f0f0;
}

/* Secondary Button (Contact Sales) */
.orc-cta-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: background 0.2s, border-color 0.2s;
    border-radius: 50px !important;
}
.orc-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.arrow-right {
    margin-left: 8px;
    font-size: 1.2rem;
}

/* =================================================== */
/* 💻 RESPONSIVENESS: TABLET & SMALL DESKTOP (<= 992px) */
/* =================================================== */
@media (max-width: 992px) {
    /* Adjust Header Padding */
    .orc-top-header {
        padding: 15px 25px;
    }
    
    /* Adjust Text Content */
    .orc-text-content {
        padding: 0 25px; /* Reduced side padding */
        max-width: 500px; 
        justify-content: flex-start; 
        padding-top: 10vh; 
        margin-left: 0; /* Keep left alignment */
        margin-right: auto;
    }

    .orc-text-content h1 {
        font-size: 3.5rem; 
        margin-top: 0; 
    }

    .orc-text-content p {
        font-size: 1rem; 
    }

    .orc-bg-figure {
        background-image: 
            linear-gradient(to right, rgba(20, 20, 20, 1) 50%, rgba(90, 60, 40, 0.9) 100%), 
            url('path-to-your-background-image.jpg'); 
    }
}


/* =================================================== */
/* 📱 RESPONSIVENESS: MOBILE PHONES (<= 576px) */
/* =================================================== */
@media (max-width: 576px) {
    /* Hide Navigation Links */
    .orc-nav-links {
        display: none;
    }

    /* Adjust Header and Text Padding */
    .orc-top-header {
        padding: 15px 20px;
    }

    .orc-text-content {
        padding: 0 20px; 
        padding-top: 10vh;
        max-width: 100%;
        margin-left: 0;
        margin-right: auto;
    }

    .orc-text-content h1 {
        font-size: 2.5rem; 
        margin-bottom: 15px;
    }

    .orc-text-content p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    /* Stack CTA Buttons vertically */
    .orc-cta-group {
        flex-direction: column;
        gap: 10px;
    }

    /* Make buttons full width */
    .orc-cta-group a {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    /* Make the entire screen dark on mobile */
    .orc-bg-figure {
        background-image: 
            linear-gradient(to bottom, rgba(20, 20, 20, 1) 100%, rgba(90, 60, 40, 1) 100%), 
            url('path-to-your-background-image.jpg');
        background-position: center;
    }
}

/* Section2 */

/* Base Styles - Keeping consistent */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f5f3; /* Light, off-white background */
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Section Header Styles - Adjusted spacing and font weight */
.solution-section {
    text-align: center;
}

.section-header {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 800; /* Bolder title */
    line-height: 1.15;
    margin-bottom: 10px;
}

.highlight {
    color: #000000;
}

.section-subtitle {
    font-size: 1rem; /* Slightly smaller and more subtle */
    color: #6a6a6a;
    font-weight: 400;
    padding: 0 50px; /* Horizontal padding for a narrower line of text */
}

/* Features Grid Styles - Key changes for alignment and size */
.features-grid {
    display: grid;
    /* Explicitly setting 3 columns with even space */
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    /* Ensure the grid doesn't stretch the container too wide */
    max-width: 1000px; 
    margin: 0 auto;
}

.feature-card {
    background-color: #ffffff;
    /* Very subtle border and shadow to match the image */
    border: 1px solid #e0e0e0;
    border-radius: 4px; /* More rectangular than rounded */
    padding: 30px;
    text-align: left;
    /* Explicit height to ensure all boxes are the same size */
    height: 170px; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Icon Styling - Exact match to the image's appearance */
.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Size of the bounding box around the icon */
    width: 35px;
    height: 35px;
    background-color: transparent; /* No background fill */
    border-radius: 4px;
    margin-bottom: 15px;
    /* Adding the subtle light border to the icon container */
    border: 1px solid #e0e0e0; 
}

.card-icon i {
    font-size: 1.1rem;
    color: #333; /* Darker icon color for better visibility */
}

.card-title {
    font-size: 1.05rem;
    font-weight: 600; /* Bolder title */
    color: #333;
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-weight: 400;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 1050px) {
    .features-grid {
        /* On medium screens, switch to 2 columns */
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    .feature-card {
        height: auto; /* Allow height to adjust in responsive view */
    }
}

@media (max-width: 650px) {
    .solution-section {
        padding: 50px 0;
    }
    .features-grid {
        /* On small screens, switch to 1 column */
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        padding: 0 10px;
    }
}


/* Section3 */

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* Light background color to match the image's overall tone */
    background-color: #f7f5f3; 
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header Styles */
.expert-approach-section {
    text-align: center;
    background-color: #f7f5f3; 
}

.section-header {
    max-width: 100%; /* Controls the width of the title and description */
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800; /* Extra bold for the main headline */
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Styling the first line to appear slightly darker/more pronounced */
/* .section-title:first-line {
    color: #5d3f28; 
} */

.section-description {
    font-size: 1rem;
    color: #6a6a6a;
    font-weight: 400;
}

/* Stats Grid Styles */
.stats-grid {
    display: grid;
    /* 4 even columns for the stats */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem; /* Large number */
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: #5d3f28;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600; /* Bolder label text */
    margin-bottom: 5px;
    color: #5d3f28; /* Matches the warm brown color of the title's first line */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-detail {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-weight: 400;
    /* Sets the max width for the detail text to prevent wrapping too wide */
    max-width: 180px; 
    margin: 0 auto;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .stats-grid {
        /* Switch to 2 columns on tablets */
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 500px) {
    .stats-grid {
        /* Switch to 1 column on mobile */
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    .section-title {
        font-size: 2rem;
    }
    .stat-number {
        font-size: 2.2rem;
    }
}

/* Section4 */

.dc-section {
  padding: 80px 0;
  background: #ffffff;
  font-family: "Inter", sans-serif;
}

.dc-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 30px;
}

/* HEADINGS */
.dc-title {
  font-size: 42px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 10px;
  line-height: 1.1;
}

.dc-subtitle {
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #797979;
}

/* --- FIXED GRID (3 equal columns) --- */
.dc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.dc-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 40px 35px;
  text-align: left;
  transition: 0.3s ease;
}

.dc-card:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

/* ICON */
.dc-card-icon {
  width: 95px;
  height: 95px;
  background: #f5ede2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.dc-card-icon img {
  width: 36px;
}

/* TEXT */
.dc-card-heading {
  font-size: 20px;
  font-weight: 600;
  color: #2a1a0d;
  margin-bottom: 12px;
}

.dc-card-description {
  font-size: 15px;
  line-height: 1.7;
  color: #6e6e6e;
  margin-bottom: 25px;
}

.dc-card-link {
  font-weight: 600;
  color: #2a1a0d;
  text-decoration: none;
}

.dc-card-link:hover {
  opacity: 0.7;
}

/* RESPONSIVE FOR MOBILE */
@media (max-width: 900px) {
  .dc-grid {
    grid-template-columns: 1fr;
  }
}



/* Section5 CTA */

.cta-section {
  background: #5a3f2d;  /* brown tone like screenshot */
  /* padding: 120px 20px; */
  text-align: center;
  font-family: "Inter", sans-serif;
}

/* TEXT CONTAINER */
/* .cta-container {
  max-width: 900px;
  margin: 0 auto;
} */


.cta-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-bottom: 40px;
}

/* HEADING */
.cta-heading {
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

/* SUBTITLE */
.cta-subtitle {
  font-size: 18px;
  color: #e6e6e6;
  max-width: 700px;
  margin: 0 auto 45px;
  line-height: 1.6;
}

/* BUTTON WRAPPER */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* PRIMARY BUTTON */
.cta-btn-primary {
  background: #ffffff;
  color: #3b2a1f;
  padding: 0 20px;
  font-weight: 500;
  border-radius: 50px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-btn-primary:hover {
  opacity: 0.85;
}

/* OUTLINE BUTTON */
.cta-btn-outline {
  padding: 5px 20px;
  color: #ffffff;
  font-weight: 600;
  border-radius: 40px;
  font-size: 16px;
  text-decoration: none;
  border: 1.5px solid #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.cta-btn-outline:hover {
  background: rgba(255,255,255,0.08);
}

/* ARROW */
.cta-arrow {
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .cta-heading {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
  }
}


/* Footer */

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f7f7f7; /* Light background to mimic the image */
}
/* End General Setup */

/* --- Footer Styling --- */

.site-footer {
    background-color: #ffffff;
    padding: 40px 20px 20px; /* Top/bottom padding and side padding */
    color: #333;
}

.footer-container {
    max-width: 1200px; /* Optional: Keep content centered and readable */
    margin: 0 auto;
    display: flex; /* Key for desktop layout */
    justify-content: space-between; /* Distribute space between columns */
    padding-bottom: 40px; /* Space above the divider */
}

/* --- Section Styling --- */

.footer-section {
    flex: 1; /* Give each section a starting flexible base */
    min-width: 180px; /* Ensure content doesn't get too squished before wrapping */
}

/* 1. Brand Info */
.brand-info {
    flex-grow: 1.5; /* Give the brand info a bit more space */
    max-width: 400px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
}

.brand-tagline {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* 2. Quick Links and 3. Contact Info Titles */
.section-title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 3rem; 
}

/* Quick Links List */
.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-list li {
    margin-bottom: 8px;
}

.link-list a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: color 0.2s;
}

.link-list a:hover {
    color: #000;
}

/* Contact Info */
.contact-detail {
    display: flex;
    align-items: center;
}

.contact-detail .icon {
    margin-right: 8px;
    font-size: 18px;
    color: #555;
}

.contact-detail a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: color 0.2s;
}

.contact-detail a:hover {
    color: #000;
}

/* --- Divider and Bottom Bar --- */

.footer-divider {
    border: none;
    border-top: 1px solid #eee; /* Light gray line */
    margin: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: left; /* Aligns the text as seen in the image */
}

.copyright-text {
    font-size: 14px;
    color: #777;
    margin: 0;
}


.quick-links{
    margin-left: 30px;
}

/* --- Responsive Design (Mobile) --- */

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack columns vertically on smaller screens */
    }

    .footer-section {
        margin-bottom: 30px; /* Add space between stacked sections */
        max-width: 100%; /* Take full width */
    }
    
    /* Remove bottom margin from the last stacked section */
    .footer-container .footer-section:last-of-type {
        margin-bottom: 0;
    }
}


/* Closing Customization */

.dif-color{
    color: #533D2D;
}

.text-al-d{
    width: 100%;
    display: inline-block;
}