.formsmain0 h3 {
      margin: 0px;
      padding: 10px 10px 10px 10px;
      text-align: center;
      display: block;
      color: #337AB7;
      margin-top: 60px;
    }
    
    .bodyacc {
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      /*height: 50vh;*/
      margin-top: 80px;
    }

    .accordion-container {
      width: 100%;
      max-width: 1000px;
      padding: 0 20px;
      margin-top: -40px;
      margin-bottom: 50px;
    }

    .accordion-item {
      background-color: #ffffff;
      /* White background for items */
      border: 1px solid #e0e0e0;
      /* Light border */
      border-radius: 8px;
      margin-bottom: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      /* Softer shadow */
    }

    .accordion-header {
      color: #000000;
      /* White text */
      padding: 15px;
      font-size: 18px;
      border: none;
      width: 100%;
      text-align: left;
      cursor: pointer;
      outline: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-radius: 8px 8px 0 0;
      transition: background-color 0.3s ease;
    }

    .accordion-header:hover {
      background-color: #e0e0e0;
      /* Darker shade of purple */
    }

    .accordion-content {
      background-color: #fafafa;
      /* Very light grey for content */
      overflow: hidden;
      padding: 0 15px;
      max-height: 0;
      transition: max-height 0.3s ease;
    }

    .accordion-content p {
      margin: 15px 0;
      line-height: 1.5;
    }    
            /* Reset for the new section */
        .ven-header *, .ven-hero * {
            box-sizing: border-box;
        }
        /* Hero Section Styles */
        /* Dark Overlay */
        .ven-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7); /* Darkens the image */
            z-index: 1;
        }

        .ven-hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Left Content */
        .ven-hero-text {
            flex: 1;
            max-width: 600px;
            color: #fff;
            padding-right: 40px;
        }

        .ven-hero-text h1 {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
            color: #fff;
            text-align: left; /* Ensure alignment */
        }

        .ven-hero-text p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #e0e0e0;
            text-align: left;
        }

        /* Right Content (Form) */
        .ven-form-card {
            background: #fff;
            padding: 30px;
            border-radius: 4px;
            width: 100%;
            max-width: 400px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }

        .ven-form-card h3 {
            color: #008CBA; /* Light Blue similar to image */
            text-align: center;
            font-size: 24px;
            margin-bottom: 5px;
            margin-top: 0;
            font-weight: 600;
        }

        .ven-form-card p.subtext {
            text-align: center;
            color: #777;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .ven-input-group {
            margin-bottom: 15px;
        }

        .ven-input {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 14px;
            color: #333;
            outline: none;
        }

        .ven-input:focus {
            border-color: #00629b;
        }

        .ven-submit-btn {
            width: 100%;
            background-color: #2f8dc4;
            color: #fff;
            border: none;
            padding: 12px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }

        .ven-submit-btn:hover {
            background-color: #075583;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .ven-hero-content {
                flex-direction: column;
                gap: 40px;
            }
            .ven-hero-text {
                max-width: 100%;
                text-align: center;
                padding-right: 0;
            }
            .ven-hero-text h1, .ven-hero-text p {
                text-align: center;
            }
            .ven-form-card {
                margin: 0 auto;
            }
        }
        
        /* =========================================
           NEW SERVICE SECTION STYLES
           ========================================= */
        .services-overlap-section {
            width: 100%;
            position: relative;
            background-color: #e6e6e6; /* Bottom Gray Color */
            padding-bottom: 80px;
        }

        .services-top-bg {
            background-color: #3395be; /* Purple Color from image */
            padding: 60px 0 120px 0; /* Extra padding bottom to create overlap space */
            text-align: center;
        }

        .services-title {
            color: #ffffff;
            font-size: 36px;
            font-weight: 700;
            text-transform: uppercase;
            margin: 0;
        }

        .services-cards-container {
            margin-top: -80px; /* Negative margin pulls cards up into purple area */
            position: relative;
            z-index: 10;
        }

        .service-card {
            background: #fff;
            padding: 40px 20px;
            text-align: center;
            border-top: 4px solid #3395be; /* Red Accent Border */
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            height: 100%;
            transition: all 0.3s ease;
            
            /* Initial State for Animation */
            opacity: 0;
            transform: translateY(50px); 
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        /* Staggered delay for child elements (optional, can be done with JS or CSS nth-child) */
        .col-md-3:nth-child(1) .service-card.visible { transition-delay: 0.1s; }
        .col-md-3:nth-child(2) .service-card.visible { transition-delay: 0.2s; }
        .col-md-3:nth-child(3) .service-card.visible { transition-delay: 0.3s; }
        .col-md-3:nth-child(4) .service-card.visible { transition-delay: 0.4s; }

        .service-card:hover {
            transform: translateY(-10px); /* Small hover lift */
        }

        .service-icon {
            font-size: 40px;
            color: #3395be;
            margin-bottom: 20px;
            display: inline-block;
        }

        .service-card h4 {
            color: #333;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .service-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-btn {
            color: #3395be;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            border-bottom: 1px solid #3395be;
            padding-bottom: 2px;
            transition: all 0.3s;
        }

        .service-btn:hover {
            color: #333;
            border-color: #333;
        }
         /* =========================================
           DAIKIN AUTHORIZED DEALER SECTION STYLES
           ========================================= */
        .daikin-dealer-wrapper {
            background-color: #f9f9f9;
            padding: 50px 0;
        }

        .daikin-dealer-section {
            background-color: #ffffff;
            max-width: 1200px;
            width: 95%;
            margin: 0 auto;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
        }

        /* Variables locally scoped */
        .daikin-dealer-section {
            --daikin-blue: #00A1E0;
            --text-dark: #333333;
            --text-grey: #555555;
        }

        /* Left Column */
        .daikin-visual-col {
            flex: 1 1 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .daikin-brand-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .daikin-logo-img {
            max-width: 250px;
            height: auto;
            display: block;
        }

        .daikin-badge-container {
            width: 280px;
            height: 280px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .daikin-badge-img {
            width: 100%;
            height: auto;
            object-fit: contain;
            animation: daikinFloat 6s ease-in-out infinite;
        }

        /* Right Column */
        .daikin-content-col {
            flex: 1 1 500px;
            padding-left: 20px;
        }

        .daikin-section-title {
            color: #00A1E0;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
            margin-top: 0;
            text-transform: none; /* Override potential global styles */
        }

        .daikin-text-block {
            color: #333333;
            font-size: 1.5rem;
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: justify;
            font-weight: 400;
        }

        .daikin-highlight-text {
            font-weight: 700;
            color: #000;
        }

        @keyframes daikinFloat {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        /* Responsive */
        @media (max-width: 900px) {
            .daikin-dealer-section {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
            }
            .daikin-content-col {
                padding-left: 0;
            }
            .daikin-text-block {
                text-align: center;
                font-size: 1.5rem;
            }
            .daikin-section-title {
                font-size: 4rem;
            }
        }
        @media (max-width: 480px) {
            .daikin-section-title {
                font-size: 2.8rem;
            }
            .daikin-badge-container {
                width: 220px;
                height: 220px;
            }
          }
        .commitment-section {
            /* Using an industrial/HVAC style background image from Unsplash */
            background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Parallax effect */
            position: relative;
        }

        .commitment-overlay {
            /* Dark overlay to make the white text readable, matching the screenshot */
            background-color: rgba(20, 24, 28, 0.85); 
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .content-container {
            /* Ensure content sits above the overlay */
            position: relative;
            z-index: 2;
        }

        .font-heading {
            font-family: 'Montserrat', sans-serif;
        }

        .font-body {
            font-family: 'Open Sans', sans-serif;
        }

        /* JavaScript Animation Classes */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in-up.is-visible {
            opacity: 1;
            transform: translateY(0);
        }          

       /* Vision and Mission Section Layout */
        .vision-mission-section {
            max-width: 1280px;
            margin: 0 auto;
            padding: 4rem 1.5rem;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        .text-container {
            display: flex;
            flex-direction: column;
        }

        .heading {
            font-size: 1.875rem;
            font-weight: 700;
            color: #14234b;
            margin-bottom: 0.75rem;
        }

        .decorative-line {
            width: 6rem;
            height: 2px;
            background-color: #92c5c5;
            margin-bottom: 2rem;
        }

        .description-text {
            color: #4b5563;
            font-size: 0.875rem;
            line-height: 1.8;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        /* Image Grid Layout */
        .image-grid {
            display: flex;
            gap: 1rem;
            height: 350px;
        }

        .image-column-left {
            width: 50%;
            height: 100%;
        }

        .image-column-right {
            width: 50%;
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .image-wrapper {
            height: calc(50% - 0.5rem);
            width: 100%;
        }

        .cover-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .rounded-image {
            border-radius: 1.5rem;
        }

        /* Responsive Styles */
        @media (min-width: 640px) {
            .image-grid {
                height: 450px;
            }
        }

        @media (min-width: 768px) {
            .vision-mission-section {
                padding-top: 6rem;
                padding-bottom: 6rem;
            }
            .heading {
                font-size: 2.25rem;
            }
            .description-text {
                font-size: 1rem;
            }
        }

        @media (min-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
            .image-grid {
                height: 500px;
            }
        }        