
    /* -------------------- GLOBAL RESET & VARIABLES (ORANGE + BLACK) -------------------- */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: "Inter", system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.5;
        background-color: #0a0a0a;  /* deep black base */
        color: #e5e5e5;
        scroll-behavior: smooth;
    }

    :root {
        --primary-deep: #0a0a0a;
        --primary-orange: #f97316;
        --orange-dark: #ea580c;
        --orange-soft: #ffedd5;
        --orange-gradient: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
        --gray-charcoal: #1f1f1f;
        --gray-mid: #2a2a2a;
        --text-light: #f5f5f5;
        --text-muted: #a3a3a3;
        --shadow-sm: 0 10px 25px -5px rgba(249, 115, 22, 0.2);
        --shadow-hover: 0 20px 30px -10px rgba(249, 115, 22, 0.4);
        --border-radius-card: 1.5rem;
        --border-radius-btn: 3rem;
        --transition-default: all 0.2s ease;
    }

    h1, h2, h3, h4, h5 {
        font-weight: 600;
        letter-spacing: -0.02em;
        color: #ffffff;
    }

    h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }
    
    p {
        color: #c0c0c0;
    }

    .text-orange {
        color: var(--primary-orange) !important;
    }

    /* -------------------- TOP BAR (new, from image) -------------------- */
    .top-bar {
        background: #ac4c2e;
        border-bottom: 1px solid rgba(249, 115, 22, 0.25);
        padding: 0.4rem 0;
        font-size: 0.9rem;
        color: #ddd;
    }

    .top-bar .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.8rem 1.5rem;
    }

    .top-bar .contact-item {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        color: #e0e0e0;
        transition: 0.3s ease;
    }

    .top-bar .contact-item i {
        color: #f97316;
        font-size: 1rem;
        width: 1.2rem;
        text-align: center;
    }

    .top-bar .contact-item:hover {
        color: #ffffff;
    }

    /* -------------------- MEET BUTTON -------------------- */
    .top-bar .meet-text a {
        text-decoration: none; 
    }
    .top-bar .btn-meet {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        background: linear-gradient(90deg, #f97316, #ffb347);
        color: #fff;
        border: none;
        padding: 0.35rem 1.2rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.85rem;
        letter-spacing: 0.3px;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
        transition: all 0.3s ease;
    }

    .top-bar .btn-meet i {
        font-size: 1rem;
    }

    /* Hover effect */
    .top-bar .btn-meet:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(249, 115, 22, 0.45);
        background: linear-gradient(90deg, #ffb347, #f97316);
    }

    /* Mobile responsiveness */
    @media (max-width: 576px) {
        .top-bar .container {
            padding: 0px;
            justify-content: center;
            text-align: center;
        }
        .top-bar .btn-meet {
            width: 100%;
            justify-content: center;
        }
        
    }
    /* make this service like image design common syle in maiin css  only  write this section css */
    /* servie list show left side when show any service active like this image   */
    /* make it base image proffessional and look like beautifull  */

    /* -------------------- NAVBAR (black/orange, sticky, blurred) -------------------- */
    .navbar-modern {
        backdrop-filter: blur(12px);
        background: rgba(11, 11, 11, 0.95) !important;
        box-shadow: 0 4px 30px rgba(249, 115, 22, 0.1);
        border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    }
    .navbar-brand {
        font-weight: 700;
        font-size: 1.6rem;
        color: var(--text-light);
    }
    .navbar-brand img {
        max-height: 45px;
        width: auto;
        height: auto;
        filter: brightness(0) invert(1) contrast(1.2);
    }
    .navbar .nav-link {
        font-weight: 600;
        color: #f0f0f0;
        margin: 0.2rem 0.2rem;
        padding: 0.5rem 0.6rem !important;
        border-radius: 2rem;
        transition: var(--transition-default);
    }
    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        background: rgba(249, 115, 22, 0.15);
        color: var(--primary-orange);
    }

    /* modern orange toggler */
    .navbar-toggler {
        border: 1px solid rgba(249,115,22,0.5);
        background: transparent;
        padding: 0.5rem 0.7rem;
        border-radius: 0.7rem;
        transition: all 0.2s;
    }
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(249,115,22,0.3);
        outline: none;
    }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(249,115,22,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 1.6em;
        height: 1.6em;
    }

    /* dropdown hover show */
    .navbar .dropdown:hover .dropdown-menu{
        display: block;
        margin-top: 0;
    }

    /* smooth animation */
    .dropdown-menu{
        border-radius: 10px;
        border: 1px solid rgba(249,115,22,0.2);
        transition: all 0.3s ease;
    }

    /* dropdown item style */
    .dropdown-menu .dropdown-item{
        color: #f0f0f0;
        font-weight: 500;
        padding: 10px 18px;
    }

    .dropdown-menu .dropdown-item:hover{
        background: rgba(249,115,22,0.15);
        color: #f97316;
    }
    .dropdown-menu{
        box-shadow:0 10px 30px rgba(0,0,0,0.4);
        border-radius:10px;
        }

    /* -------------------- HERO CAROUSEL -------------------- */
    .hero-carousel {
        /* height: 85vh; */
        /* min-height: 600px; */
        background-color: #0a0a0a;
    }
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
        height: 100%;
    }
    .hero-carousel .carousel-item img {
        object-fit: cover;
        height: 100%;
        width: 100%;
        filter: brightness(0.9);
    }
    .hero-carousel .carousel-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: rgba(10, 10, 10, 0.5); */
        z-index: 1;
    }
    .carousel-caption-modern {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 900px;
        z-index: 10;
        text-align: center;
        color: white;
        text-shadow: 0 4px 20px rgba(0,0,0,0.5);
        padding: 2rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 3rem;
        border: 1px solid rgba(249, 115, 22, 0.3);
    }
    .carousel-caption-modern h1 {
        font-size: clamp(1.8rem, 8vw, 4rem);
        font-weight: 700;
        background: linear-gradient(145deg, #ffffff, #ffedd5);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    .btn-primary-custom {
        background: var(--orange-gradient);
        border: none;
        color: white;
        border-radius: 3rem;
        padding: 0.9rem 2.5rem;
        font-weight: 600;
        box-shadow: 0 15px 25px -8px rgba(249, 115, 22, 0.5);
        transition: all 0.2s ease;
        border: 1px solid rgba(255, 165, 0, 0.3);
    }
    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 25px 30px -8px #f97316;
        background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    }

    /* -------------------- SERVICES, FEATURES, etc. (unchanged from previous) -------------------- */
    .service-card {
        border: none;
        background: #1f1f1f;
        border-radius: var(--border-radius-card);
        padding: 2rem 1.5rem;
        box-shadow: 0 10px 20px -5px rgba(0,0,0,0.5);
        transition: var(--transition-default);
        height: 100%;
        border: 1px solid #333;
    }
    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-hover);
        border-color: var(--primary-orange);
    }
    .feature-icon {
        font-size: 2.8rem;
        background: var(--orange-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 1.5rem;
    }
    .service-card h5 {
        font-weight: 600;
        margin-bottom: 1rem;
        color: #f97316;
    }
    .service-card p {
        color: #a3a3a3;
        font-size: 0.95rem;
    }

    .feature-mini-card {
        background: #1f1f1f;
        border-radius: 2rem;
        padding: 2rem 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        transition: 0.2s;
        border: 1px solid #333;
        height: 100%;
    }
    .feature-mini-card .feature-icon {
        font-size: 2.2rem;
    }
    .feature-mini-card:hover {
        background: #2a2a2a;
        border-color: #f97316;
    }
    .feature-mini-card h5 {
        color: #f97316;
    }

    /* mission/vision pillars */
    .pillar-card {
        background: #1a1a1a;
        border-radius: 1.5rem;
        padding: 1.5rem 1rem;
        border: 1px solid #2a2a2a;
        transition: 0.2s;
        height: 100%;
    }
    .pillar-card:hover {
        border-color: #f97316;
        transform: translateY(-5px);
        box-shadow: 0 15px 25px -10px rgba(249,115,22,0.3);
    }
    .pillar-icon {
        font-size: 2rem;
        color: #f97316;
        margin-bottom: 0.75rem;
    }
    .pillar-card h5 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: #ffffff;
    }
    .pillar-card p {
        font-size: 0.9rem;
        color: #b0b0b0;
        margin-bottom: 0;
    }
    .mission-statement, .vision-statement, .founded-card {
        background: #1f1f1f;
        border-left: 6px solid #f97316;
        border-radius: 1.2rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    }
    .section-title-orange {
        color: #f97316;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin-bottom: 1.5rem;
        font-size: 2rem;
    }

    /* FAQ & news section */
    .insight-card {
        background: #1a1a1a;
        border-radius: 2rem;
        padding: 2rem 1.8rem;
        border: 1px solid #2a2a2a;
        transition: 0.2s;
        height: 100%;
    }
    .insight-card:hover {
        border-color: #f97316;
        box-shadow: 0 15px 30px -12px rgba(249,115,22,0.3);
    }
    .world-class-tagline {
        background: var(--orange-gradient);
        border-radius: 4rem;
        padding: 1.2rem 2rem;
        color: white;
        font-weight: 600;
        font-size: 1.3rem;
        line-height: 1.4;
        text-align: center;
        box-shadow: var(--shadow-sm);
        margin-bottom: 2.5rem;
        border: 1px solid rgba(255,255,255,0.1);
    }
    .faq-item {
        padding: 1.2rem 0;
        border-bottom: 1px solid #2a2a2a;
    }
    .faq-item:last-child {
        border-bottom: none;
    }
    .faq-question {
        font-weight: 600;
        color: #f97316;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }
    .faq-answer {
        color: #b0b0b0;
        font-size: 0.95rem;
    }
    .news-item {
        display: flex;
        flex-direction: column;
        padding: 1rem 0;
        border-bottom: 1px dashed #333;
    }
    .news-item:last-child {
        border-bottom: none;
    }
    .news-title {
        font-weight: 600;
        color: white;
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
        transition: 0.2s;
    }
    .news-title:hover {
        color: #f97316;
        cursor: pointer;
    }
    .news-meta {
        font-size: 0.8rem;
        color: #a3a3a3;
    }
    .news-meta i {
        color: #f97316;
        margin-right: 0.3rem;
    }
    .news-excerpt {
        color: #a3a3a3;
        font-size: 0.9rem;
        margin: 0.5rem 0 0.2rem;
    }
    .news-link {
        color: #f97316;
        font-weight: 500;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .news-link:hover {
        text-decoration: underline;
    }

    /* contact section */
    .contact-section {
        background: #111;
        border-top: 1px solid #f97316;
        border-bottom: 1px solid #f97316;
    }
    .contact-form input, .contact-form textarea {
        background: #fffbfb;
        border: 1px solid #333;
        border-radius: 1.2rem;
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
        transition: all 0.2s;
        color: #080808;
    }
    .contact-form input:focus, .contact-form textarea:focus {
        border-color: #f97316;
        box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2);
        outline: none;
        background: #f5f5f5;
    }
    .contact-form button {
        background: var(--orange-gradient);
        border: none;
        border-radius: 3rem;
        padding: 0.9rem 3rem;
        font-weight: 600;
        box-shadow: 0 15px 25px -8px rgba(249, 115, 22, 0.3);
        transition: 0.2s;
        color: white;
    }
    .contact-form button:hover {
        transform: scale(1.02);
        box-shadow: 0 20px 30px -8px #f97316;
    }

        /* Partners Section */
    .partners-section{
        background:#070707;
        padding:0px 0;
        overflow:hidden;
    }

    .logo-slider{
    overflow:hidden;
    position:relative;
    }

    .logo-track{
    display:flex;
    width:calc(200px * 10);
    animation:scroll 20s linear infinite;
    }

    .logo-item{
        /* border: 1px solid orange; */
    width:200px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:15px;
    }

    .logo-item img{
        border: 1px solid orange;
        max-height:70px;
        opacity:.8;
        transition:.3s;
    }

    .logo-item img:hover{
    opacity:1;
    transform:scale(1.05);
    }

    /* animation */

    @keyframes scroll{

    0%{
    transform:translateX(0);
    }

    100%{
    transform:translateX(-50%);
    }

    }
    .logo-slider:hover .logo-track{
    animation-play-state:paused;
    }

    /* Footer   Section */
    .footer-modern {
        background: #0a0a0a;
        color: #a3a3a3;
        padding: 3rem 0;
        border-top: 1px solid #f97316;
    }
    .footer-modern a {
        color: #f97316;
        transition: 0.2s;
        margin: 0 0.7rem;
    }
    .footer-modern a:hover {
        color: #ea580c;
    }

    .section-padding {
        padding: 4rem 0;
    }
    .bg-soft-gradient {
        background: #151515;
    }
    img.rounded-5 {
        border-radius: 2rem !important;
    }
        @media (max-width: 576px) {
            .section-padding {
            padding: 1rem 0;
        }
    } 
    
    /* common style */
    .section-title{
        font-size: 35px;
        font-weight: 700;
    }
    @media (max-width: 576px) {
        .section-title{
            font-size: 30px;
            font-weight: 700;
        }
    } 