/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f4f4;
}

/* Colors Variables */
:root {
    --primary-orange: linear-gradient(45deg, #FF6900, #FE9A00);
    /* Gradient Orange */
    --text-dark: #333;
   --overlay-color: rgba(0, 0, 0, 0.25);

}

/* Header Styling */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

/* Logo Placeholder */
.logo-box {
    background: var(--primary-orange);
    /* Gradient applied */
    color: white;
    padding: 8px 15px;
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    border: 2px solid white;
    text-align: center;
    display: inline-block;
}

.logo-box span {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 1px;
    display: block;
}

/* Navigation Menu */
.nav-menu {
    background: white;
    display: flex;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 15px 30px;
    font-size: 15px;
    border-right: 1px solid #eee;
    position: relative;
    transition: 0.3s;
}

.nav-menu a:last-child {
    border-right: none;
}

/* Active State */
.nav-menu a.active {
    background: var(--primary-orange);
    /* Gradient applied */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-orange);
    /* Gradient applied */
}

.nav-menu a:hover {
    background: var(--primary-orange);
    /* Gradient applied */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    text-decoration: none;
    padding: 12px 25px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-contact {
    background: var(--primary-orange);
    /* Gradient applied */
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-contact:hover {
    background: linear-gradient(45deg, #d1541b, #e08600);
    /* Darker gradient on hover */
}

.btn-quote {
    background-color: rgba(30, 30, 30, 0.85);
    color: white;
}

.btn-quote:hover {
    background-color: #000;
}

/* Hero Section */
.hero-section {
    /* filter: brightness(2.8); */
    position: relative;
    height: 76vh;
    background-image: url('assests/images/about.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-left: 80px;
    color: white;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    font-weight: 300;
    opacity: 0.9;
}

/* Breadcrumbs */
.breadcrumbs {
    position: absolute;
    bottom: 60px;
    left: 80px;
    z-index: 10;
    color: white;
    font-size: 16px;
}

.breadcrumbs a {
    color: white;
    text-decoration: none;
    margin-right: 5px;
}

.breadcrumbs span {
    background: var(--primary-orange);
    /* Gradient applied */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-left: 5px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 20px;
        background: rgba(0, 0, 0, 0.9);
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin: 20px 0;
    }

    .nav-menu a {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .hero-content {
        padding-left: 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .breadcrumbs {
        left: 20px;
        bottom: 20px;
    }

    .header-buttons {
        display: none;
    }
}

/* 2 screen */
/* --- Legacy Section Styling --- */
.legacy-section {
    background-color: #000;
    padding: 80px 0;
    color: white;
    margin-top: -30px;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0 50px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.legacy-content {
    flex: 1;
    text-align: left;
}

/* "Our Story" Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #F26522;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: -10px;
    background: rgba(242, 101, 34, 0.1);
}

.badge i {
    font-size: 12px;
}

/* Heading Styling */
.legacy-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}

.legacy-content h2 span {
    background: var(--primary-orange);
    /* Gradient applied */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Paragraph Styling */
.legacy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Bold Text Styling */
.legacy-content p strong {
    color: white;
    font-weight: 700;
}

/* Right Image Styling */
.legacy-image {
    flex: 1;
     margin-top: 80px; 
    
}
.legacy-image img {
    width: 700px;
    height: 500px;
    object-fit: cover;   /* image distort nahi hogi */
}


.legacy-image img:hover {
    filter: grayscale(0%);
}

/* --- Responsive Design (Mobile) --- */
@media (max-width: 900px) {
    .legacy-section {
        padding: 50px 20px;
    }

    .container {
        flex-direction: column;
        gap: 40px;
    }

    .legacy-content h2 {
        font-size: 36px;
    }
}

/* 3screen */
/* --- Global Styles for New Sections --- */

/* Philosophy Section */
.philosophy-section {
    background-color: #000;
    color: white;
    padding: 0px 50px 60px 50px;
    margin-top: -70px;
}

/* Defines Section */
.defines-section {
    background-color: #000;
    color: white;
    padding: 0px 50px 60px 50px;
    margin-top: -40px;
}

/* Container to keep things aligned left */
.section-container {
    width: 100%;
}

/* Headings */
.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 20px;
}

.section-title span {
    background: var(--primary-orange);
    /* Gradient applied */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    color: #bbb;
    margin-bottom: 40px;
    font-size: 16px;
    max-width: 1000px;
}

/* --- Philosophy Section Styling --- */
/* --- Philosophy Card Styling (Exact Match) --- */

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.phil-card {
    /* Background Gradient: Dark se thoda Light Orange ki taraf */
    background: linear-gradient(135deg, #2b140b 0%, #4a230f 50%, #632d0d 100%);

    padding: 35px 30px;
    /* Thoda zyada padding */
    border-radius: 16px;
    /* Rounded corners */
    position: relative;
    border: 0px solid rgba(255, 105, 0, 0.15);
    /* Subtle border */
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Shadow for depth */
}

.phil-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 105, 0, 0.5);
    /* Hover pe border bright */
}

/* Number Circle (01, 02, 03) */
.card-number {
    position: absolute;
    top: 25px;
    right: 25px;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;

    border-radius: 50%;
    /* Transparent Orange Background */
    background: rgba(255, 105, 0, 0.2);
    color: #FF8C42;
    /* Light Orange Text */
}

.phil-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.phil-card p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
}

.highlight-text {
    background: var(--primary-orange);
    /* Gradient applied */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    font-size: 18px;
    margin-top: 10px;
}

/* --- What Defines Us Styling --- */
.defines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.define-card {
    background-color: #111;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.3s;
    border: 1px solid #222;
}

.define-card:hover {
    background-color: #1a1a1a;
    border-color: #333;
}

.icon-box {
    background-color: #1e1e1e;
    /* Dark Grey/Black background */
    min-width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    /* Thoda rounded corners jaisa image mein hai */
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Bahut halki border */
}

.card-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: white;
    font-weight: 600;
}

.card-content p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.4;
}

/* --- Responsive (Mobile) --- */
@media (max-width: 768px) {
    .philosophy-section {
        padding: 40px 20px;
    }

    .defines-section {
        padding: 0px 20px 40px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .defines-grid {
        grid-template-columns: 1fr;
    }
}

/* 4screen */
/* --- Core Values Section Styling --- */
.values-section {
    background-color: #000;
    color: white;
    padding: 0px 50px 60px 50px;
    text-align: left;
}

.values-section .badge {
    display: inline-flex;
}


.values-grid {
    display: flex;
    /* justify-content center se hata kar space-between kiya taaki exact gap mile */
    justify-content: space-between;
    gap: 20px;
    /* Minimum gap maintain rakhne ke liye */
    margin-top: 50px;
    flex-wrap: nowrap;
    /* Laptop screen par icons ko ek line mein rakhne ke liye */
    max-width: 1200px;
    /* Container ki limit set karein taaki icons bahut door na ho jayein */
    margin-left: 110px;
}

/* Individual Value Card Alignment */
.value-card {
    text-align: center;
    flex: 1;
    /* Sabhi cards ko barabar jagah milegi */
    min-width: 150px;
    /* Mobile par stack hone se pehle ka size */
}

/* Icon Box with Gradient & Glow */
.value-icon-box {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF6900, #FE9A00);
    border-radius: 20px;
    /* Rounded Squares */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 35px;
    color: white;
    box-shadow: 0 10px 25px rgba(255, 105, 0, 0.4);
    /* Orange Glow */
    transition: 0.3s;
}

/* Specific Glow for Relationship-Driven (as per image) */
.red-glow .value-icon-box {
    background: linear-gradient(135deg, #FF3D00, #FF1744);
    box-shadow: 0 10px 25px rgba(255, 23, 68, 0.5);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: #aaa;
}

/* Bottom Quote Box Styling */
.quote-container {
    margin: 80px auto 0 auto;
    border: 1px solid #333;
    padding: 30px 50px;
    border-radius: 15px;
    max-width: 1000px;
    /* thoda width badha diya */
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.quote-container p {
    font-size: 20px;
    color: #ccc;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    word-break: break-word;
    /* overflow fix */
}


/* Responsive Fix */
@media (max-width: 768px) {
    .values-grid {
        gap: 20px;
    }

    .value-icon-box {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
}

/* --- Our Strengths UI Styling --- */
.strengths-section {
    background-color: #000;
    background-image: url('assests/images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    padding: 20px 50px 80px 50px;
    /* aur upar le aayega */
    margin-top: -0px;
    /* 👈 ye section ko thoda overlap karega */
    text-align: left;
    position: relative;
    z-index: 1;
}


.strengths-grid {
    display: grid;
    /* Two columns like the screenshot */
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 50px;
}

.strength-item {
    background: rgba(255, 255, 255, 0.04);
    /* Subtle dark card effect */
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.strength-item:hover {
    background: rgba(255, 105, 0, 0.08);
    /* Hover effect like other cards */
    border-color: rgba(255, 105, 0, 0.2);
}

.check-icon {
    width: 40px;
    /* Circle ka size */
    height: 40px;
    /* Circle ka size */
    min-width: 40px;
    /* Taki icon pichke nahi */

    /* Orange Gradient Background jaisa photos mein hai */
    background: linear-gradient(135deg, #FF6900, #FE9A00);

    border-radius: 50%;
    /* Ise perfect gol (Circle) banane ke liye */
    display: flex;
    justify-content: center;
    align-items: center;

    /* Subtle Glow effect jaisa image mein hai */
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.3);
}

.strength-item p {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.5;
    font-weight: 300;
}

/* Responsive Fix for Mobile */
@media (max-width: 992px) {
    .strengths-grid {
        grid-template-columns: 1fr;
        /* Single column on small screens */
    }

    .strengths-section {
        padding: 40px 20px;
    }
}

/* 6screen */
/* --- Industry Presence Section Styling --- */
.presence-section {
    background-color: #000;
    color: white;
    padding: 80px 50px;
    text-align: left;
}

/* Grid Layout: 2 Columns */
.presence-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

/* Buttons Grid Layout */
.industry-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.industry-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s ease;
}

.ind-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;     /* vertical center */
    justify-content: center; /* horizontal center */
    border-radius: 14px;
}

.industry-item span,
.industry-item h3 {
    font-size: 18px;
}

.industry-list {
    gap: 25px;
}


.orange-grad {
    background: linear-gradient(135deg, #FF6900, #FE9A00);
}

.red-grad {
    background: linear-gradient(135deg, #FF3D00, #FF1744);
}

/* Healthcare Red */

/* Monitor Image Styling */
.presence-display .monitor-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: block;

}

/* Bottom Large Card */
.presence-summary-card {
    margin-top: 100px;
    background: linear-gradient(180deg, #111 0%, #000 100%);
    border: 1px solid #222;
    padding: 60px 80px;
    border-radius: 30px;
    text-align: center;
}

.mini-badge {
    display: inline-block;
    border: 1px solid #FF6900;
    color: #FF6900;
    font-size: 12px;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.summary-title {
    font-size: 42px;
    margin-bottom: 30px;
}

.summary-title span {
    color: #FF6900;
}

.presence-summary-card p {
    font-size: 18px;
    color: #bbb;
    line-height: 1.8;
    max-width: 950px;
    margin: 0 auto;
}

/* Text Highlights */
.highlight {
    color: #FF6900;
    font-weight: 500;
}

/* Responsive Fix */
@media (max-width: 992px) {
    .presence-content-grid {
        grid-template-columns: 1fr;
    }

    .industry-list {
        grid-template-columns: 1fr 1fr;
    }
}

/* footer */
/* --- FOOTER SECTION STYLING --- */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 80px 20px;
    width: 100%;
    border-top: 1px solid #111;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 70px;
    align-items: flex-start;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.contact-col {
    flex: 1.4;
}

.links-col,
.services-col {
    flex: 0.7;
}

.map-col {
    flex: 1.5;
}

.footer-logo {
    margin-bottom: 35px;
}

.footer-logo img {
    height: 75px;
    object-fit: contain;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
}

.icon-box {
    width: 20px;
    display: flex;
    justify-content: center;
    margin-top: 4px;
    color: #fff;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff7a2f;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-link svg {
    width: 22px;
    height: 22px;
    color: #fff;
    transition: 0.3s;
}

.social-link:hover svg {
    stroke: #ff7a2f;
}

.map-container {
    width: 100%;
    height: 350px;
    background-color: #222;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-bottom {
    border-top: 1px solid #1f1f1f;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: #777;
}

.legal-links {
    display: flex;
    gap: 40px;
}

.legal-links a {
    color: #777;
    text-decoration: none;
    transition: 0.3s;
}

.legal-links a:hover {
    color: #fff;
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .site-footer {
        padding: 60px 30px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .map-container {
        height: 300px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .legal-links {
        gap: 20px;
        justify-content: center;
    }
}