 :root {
            --primary-teal: #00BDD3;
            --dark-teal: #00A8B8;
            --text-dark: #1A1A1A;
            --text-gray: #555555;
            --bg-light: #F8F9FA;
            --border-color: #E0E0E0;
            --tag-bg: #E0F7FA;
            --tag-text: #00838F;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: #fff;
        }

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

        /* Hero Section */
        .hero {
            position: relative;
            background: rgba(242, 245, 245, 1);

            overflow: hidden;
            display: flex;
            align-items: center;
            min-height: 500px;
             padding: 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 65%;
            height: 100%;
            background:#F2F5F5;
            border-bottom-right-radius: 500px 800px;
            
        }

        .hero-content {
            position: relative;
           
            width: 45%;
            padding: 80px 0;
        }

        .customer-stories {
            text-transform: uppercase;
            font-weight:500;
            letter-spacing:10%;
            color:#00B6B8;
            font-size:14px;
            margin-bottom: 20px;
            display: block;
            line-height:100%;
        }

        .hero-title {
            font-size:52px;
            font-weight:700;
            line-height:100%;
            letter-spacing:0%;
            margin-bottom: 20px;
        }

        .hero-title span {
            color:#00B6B8;
        }

        .hero-desc {
            color:#535353;
            font-size:16px;
            font-weight:300;
            line-height:26px;
            max-width: 500px;
        }

        .hero-image-container {
            position: absolute;
    right: -67px;
    top: 40px;
    width: 53%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
        }

        .hero-image {
            max-width: 100%;
            max-height: 90%;
            object-fit: cover;
        }

        /* Browse by Industry Section */
        .section-padding {
            
        }
 

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size:38px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 100%;
            letter-spacing: 0%;
        }

        .section-header p {
            color:#535353;
            font-size: 16px;
            font-weight: 400;

        }

        .industry-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .industry-card {
            /* border: 1px solid ( #F04D23 0%, #00B6B8 100%); */
            border: 1px solid transparent;
            border-image: none;
            background: linear-gradient(#fff, #fff) padding-box,
                        linear-gradient(90deg, #F04D23 0%, #00B6B8 100%) border-box;
            border-radius: 10px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

        /* .industry-card.event { 
            border: 1px solid #F04D23 0%, #00B6B8 100%);

         } */
        /* .industry-card.healthcare { border-left: 4px solid #FFB74D; }
        .industry-card.agency { border-left: 4px solid #4DB6AC; } */

        .industry-card h3 {
            font-size: 16px;
            font-weight:600;
            margin-bottom: 20px;
            letter-spacing: 0%;
            line-height: 100%;
            /* color:#000000; */
        }

        .industry-card p {
            color:#535353;
            font-size: 15px;
            font-weight: 400;
            line-height: 24px;
            margin-bottom: 30px;
            flex-grow: 1;
        }

        .arrow-link {
            text-decoration: none;
            color: #00B6B8;
            font-weight: 500;
            display: flex;
            align-items: center;
            font-size:15px;
            gap:8px;
        }

        .arrow-link i {
            margin-left: 8px;
            font-size: 0.8rem;
        }

        /* Real Deployments Section */
        .deployments-section {
            background-color: #fff;
        }

        .deployments-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .deployments-header h2 {
            font-size:38px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 100%;
            letter-spacing: 0%;
        }

        .deployments-header .subtitle {
            color:#535353;
            font-size: 16px;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto;
        }

        .deployments-header .bold-sub {
            font-weight:500;
             font-size: 18px;
            margin-top: 10px;
            color:#000000;
        }

        .case-studies-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .case-study-card {
            background: #fff;
           border: 1px solid rgba(233, 233, 233, 1);
            border-radius: 12px !important;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            padding: 24px;
        }

        .logo-placeholder {
           background: #01559E0F;

            height: 200px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .logo-placeholder-1{
            background: #E353040F;


            height: 200px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .logo-placeholder-2{
           background: #63B9E90F;
            height: 200px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px
        }

        .logo-placeholder img {
            max-width: 150px;
            max-height: 80px;
        }

        .case-tag {
            background-color:#E6F6F6;
            color: #00B6B8;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 16px;
            width: fit-content;
        }

        .case-study-card h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .case-metrics {
            color:#00B6B8;
            font-size:13px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .case-desc {
            color:#535353;
            font-size:15px;
            font-weight: 400;
            margin-bottom: 24px;
            line-height:24px;
        }

        /* CTA Section */
        .cta-section {
            background-color:#00B6B8;
            color: #fff;
            text-align: center;
            padding: 80px 0;
        }

        .cta-section h2 {
            font-size:38px;
            font-weight:700;
            margin-bottom: 20px;
            color:#fff
        }

        .cta-section p {
            font-size:16px;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
            line-height: 28px;
            font-weight: 400;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .btn-custom {
            padding: 14px 30px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .btn-white {
            background-color: #fff;
            color: #00B6B8;
        }

        .btn-outline {
            border: 2px solid #fff;
            color: #fff;
        }

        .btn:hover {
            opacity: 0.9;
            transform: scale(1.05);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-title { font-size: 2.5rem; }
            .industry-grid, .case-studies-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .hero::before { width: 100%; border-radius: 0; }
            .hero-content { width: 100%; padding: 40px 20px; }
            .hero-image-container { display: none; }
            .industry-grid, .case-studies-grid { grid-template-columns: 1fr; }
            .hero-title { font-size: 2.2rem; }
            .cta-buttons { flex-direction: column; align-items: center; }
        }